olca 0.2.1__tar.gz → 0.2.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {olca-0.2.1 → olca-0.2.2}/PKG-INFO +2 -1
- {olca-0.2.1 → olca-0.2.2}/olca.egg-info/PKG-INFO +2 -1
- {olca-0.2.1 → olca-0.2.2}/olca.egg-info/requires.txt +1 -0
- {olca-0.2.1 → olca-0.2.2}/pyproject.toml +3 -2
- {olca-0.2.1 → olca-0.2.2}/setup.py +1 -1
- {olca-0.2.1 → olca-0.2.2}/LICENSE +0 -0
- {olca-0.2.1 → olca-0.2.2}/README.md +0 -0
- {olca-0.2.1 → olca-0.2.2}/olca/__init__.py +0 -0
- {olca-0.2.1 → olca-0.2.2}/olca/olcacli.py +0 -0
- {olca-0.2.1 → olca-0.2.2}/olca.egg-info/SOURCES.txt +0 -0
- {olca-0.2.1 → olca-0.2.2}/olca.egg-info/dependency_links.txt +0 -0
- {olca-0.2.1 → olca-0.2.2}/olca.egg-info/entry_points.txt +0 -0
- {olca-0.2.1 → olca-0.2.2}/olca.egg-info/top_level.txt +0 -0
- {olca-0.2.1 → olca-0.2.2}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: olca
|
3
|
-
Version: 0.2.
|
3
|
+
Version: 0.2.2
|
4
4
|
Summary: A Python package for experimental usage of Langchain and Human-in-the-Loop
|
5
5
|
Home-page: https://github.com/jgwill/olca
|
6
6
|
Author: Jean GUillaume ISabelle
|
@@ -362,6 +362,7 @@ Requires-Dist: markdown
|
|
362
362
|
Requires-Dist: langchain
|
363
363
|
Requires-Dist: langchain-openai
|
364
364
|
Requires-Dist: langchain-experimental
|
365
|
+
Requires-Dist: click
|
365
366
|
|
366
367
|
# oLCa
|
367
368
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: olca
|
3
|
-
Version: 0.2.
|
3
|
+
Version: 0.2.2
|
4
4
|
Summary: A Python package for experimental usage of Langchain and Human-in-the-Loop
|
5
5
|
Home-page: https://github.com/jgwill/olca
|
6
6
|
Author: Jean GUillaume ISabelle
|
@@ -362,6 +362,7 @@ Requires-Dist: markdown
|
|
362
362
|
Requires-Dist: langchain
|
363
363
|
Requires-Dist: langchain-openai
|
364
364
|
Requires-Dist: langchain-experimental
|
365
|
+
Requires-Dist: click
|
365
366
|
|
366
367
|
# oLCa
|
367
368
|
|
@@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta"
|
|
7
7
|
|
8
8
|
[project]
|
9
9
|
name = "olca"
|
10
|
-
version = "0.2.
|
10
|
+
version = "0.2.2"
|
11
11
|
description = "A Python package for experimental usage of Langchain and Human-in-the-Loop"
|
12
12
|
readme = "README.md"
|
13
13
|
requires-python = ">=3.6"
|
@@ -26,7 +26,8 @@ dependencies = [
|
|
26
26
|
"markdown",
|
27
27
|
"langchain",
|
28
28
|
"langchain-openai",
|
29
|
-
"langchain-experimental"
|
29
|
+
"langchain-experimental",
|
30
|
+
"click",
|
30
31
|
]
|
31
32
|
classifiers = [
|
32
33
|
"Programming Language :: Python :: 3",
|
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
|
|
2
2
|
|
3
3
|
setup(
|
4
4
|
name='olca',
|
5
|
-
version = "0.2.
|
5
|
+
version = "0.2.2",
|
6
6
|
author='Jean GUillaume ISabelle',
|
7
7
|
author_email='jgi@jgwill.com',
|
8
8
|
description='A Python package for experimenting with Langchain agent and interactivity in Terminal modalities.',
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|