Spaces:
Sleeping
Sleeping
harisyammnv
commited on
Commit
·
40a1af9
1
Parent(s):
36e6a66
Revert "feat: new files"
Browse filesThis reverts commit 36e6a6631e82476cdb9ff167dbeaf0d8553d264f.
- .env +0 -1
- app.py +0 -9
- icon/avatar.png +0 -0
- icon/chainlit.png +0 -0
- poetry.lock +37 -79
- pyproject.toml +1 -1
.env
DELETED
@@ -1 +0,0 @@
|
|
1 |
-
OPENAI_API_KEY=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
|
|
|
|
app.py
CHANGED
@@ -36,15 +36,6 @@ def setup_runnable():
|
|
36 |
|
37 |
@cl.on_chat_start
|
38 |
async def on_chat_start():
|
39 |
-
await cl.Avatar(
|
40 |
-
name="Chatbot",
|
41 |
-
path="icon/chainlit.png"
|
42 |
-
).send()
|
43 |
-
|
44 |
-
await cl.Avatar(
|
45 |
-
name="User",
|
46 |
-
path="icon/avatar.png",
|
47 |
-
).send()
|
48 |
cl.user_session.set("memory", ConversationBufferMemory(return_messages=True))
|
49 |
setup_runnable()
|
50 |
|
|
|
36 |
|
37 |
@cl.on_chat_start
|
38 |
async def on_chat_start():
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
39 |
cl.user_session.set("memory", ConversationBufferMemory(return_messages=True))
|
40 |
setup_runnable()
|
41 |
|
icon/avatar.png
DELETED
Binary file (21.3 kB)
|
|
icon/chainlit.png
DELETED
Binary file (60.8 kB)
|
|
poetry.lock
CHANGED
@@ -98,7 +98,6 @@ files = [
|
|
98 |
|
99 |
[package.dependencies]
|
100 |
aiosignal = ">=1.1.2"
|
101 |
-
async-timeout = {version = ">=4.0,<5.0", markers = "python_version < \"3.11\""}
|
102 |
attrs = ">=17.3.0"
|
103 |
frozenlist = ">=1.1.1"
|
104 |
multidict = ">=4.5,<7.0"
|
@@ -144,7 +143,6 @@ files = [
|
|
144 |
]
|
145 |
|
146 |
[package.dependencies]
|
147 |
-
exceptiongroup = {version = "*", markers = "python_version < \"3.11\""}
|
148 |
idna = ">=2.8"
|
149 |
sniffio = ">=1.1"
|
150 |
|
@@ -153,17 +151,6 @@ doc = ["Sphinx", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-
|
|
153 |
test = ["anyio[trio]", "coverage[toml] (>=4.5)", "hypothesis (>=4.0)", "mock (>=4)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "uvloop (>=0.17)"]
|
154 |
trio = ["trio (<0.22)"]
|
155 |
|
156 |
-
[[package]]
|
157 |
-
name = "async-timeout"
|
158 |
-
version = "4.0.3"
|
159 |
-
description = "Timeout context manager for asyncio programs"
|
160 |
-
optional = false
|
161 |
-
python-versions = ">=3.7"
|
162 |
-
files = [
|
163 |
-
{file = "async-timeout-4.0.3.tar.gz", hash = "sha256:4640d96be84d82d02ed59ea2b7105a0f7b33abe8703703cd0ab0bf87c427522f"},
|
164 |
-
{file = "async_timeout-4.0.3-py3-none-any.whl", hash = "sha256:7405140ff1230c310e51dc27b3145b9092d659ce68ff733fb0cefe3ee42be028"},
|
165 |
-
]
|
166 |
-
|
167 |
[[package]]
|
168 |
name = "asyncer"
|
169 |
version = "0.0.2"
|
@@ -256,8 +243,6 @@ mypy-extensions = ">=0.4.3"
|
|
256 |
packaging = ">=22.0"
|
257 |
pathspec = ">=0.9.0"
|
258 |
platformdirs = ">=2"
|
259 |
-
tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""}
|
260 |
-
typing-extensions = {version = ">=4.0.1", markers = "python_version < \"3.11\""}
|
261 |
|
262 |
[package.extras]
|
263 |
colorama = ["colorama (>=0.4.3)"]
|
@@ -477,20 +462,6 @@ files = [
|
|
477 |
{file = "distro-1.8.0.tar.gz", hash = "sha256:02e111d1dc6a50abb8eed6bf31c3e48ed8b0830d1ea2a1b78c61765c2513fdd8"},
|
478 |
]
|
479 |
|
480 |
-
[[package]]
|
481 |
-
name = "exceptiongroup"
|
482 |
-
version = "1.2.0"
|
483 |
-
description = "Backport of PEP 654 (exception groups)"
|
484 |
-
optional = false
|
485 |
-
python-versions = ">=3.7"
|
486 |
-
files = [
|
487 |
-
{file = "exceptiongroup-1.2.0-py3-none-any.whl", hash = "sha256:4bfd3996ac73b41e9b9628b04e079f193850720ea5945fc96a08633c66912f14"},
|
488 |
-
{file = "exceptiongroup-1.2.0.tar.gz", hash = "sha256:91f5c769735f051a4290d52edd0858999b57e5876e9f85937691bd4c9fa3ed68"},
|
489 |
-
]
|
490 |
-
|
491 |
-
[package.extras]
|
492 |
-
test = ["pytest (>=6)"]
|
493 |
-
|
494 |
[[package]]
|
495 |
name = "fastapi"
|
496 |
version = "0.100.1"
|
@@ -830,20 +801,20 @@ files = [
|
|
830 |
|
831 |
[[package]]
|
832 |
name = "importlib-metadata"
|
833 |
-
version = "6.
|
834 |
description = "Read metadata from Python packages"
|
835 |
optional = false
|
836 |
python-versions = ">=3.8"
|
837 |
files = [
|
838 |
-
{file = "importlib_metadata-6.
|
839 |
-
{file = "importlib_metadata-6.
|
840 |
]
|
841 |
|
842 |
[package.dependencies]
|
843 |
zipp = ">=0.5"
|
844 |
|
845 |
[package.extras]
|
846 |
-
docs = ["furo", "jaraco.packaging (>=9
|
847 |
perf = ["ipython"]
|
848 |
testing = ["flufl.flake8", "importlib-resources (>=1.3)", "packaging", "pyfakefs", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-mypy (>=0.9.1)", "pytest-perf (>=0.9.2)", "pytest-ruff"]
|
849 |
|
@@ -886,7 +857,6 @@ files = [
|
|
886 |
[package.dependencies]
|
887 |
aiohttp = ">=3.8.3,<4.0.0"
|
888 |
anyio = "<4.0"
|
889 |
-
async-timeout = {version = ">=4.0.0,<5.0.0", markers = "python_version < \"3.11\""}
|
890 |
dataclasses-json = ">=0.5.7,<0.7"
|
891 |
jsonpatch = ">=1.33,<2.0"
|
892 |
langchain-core = ">=0.0.7,<0.1"
|
@@ -915,13 +885,13 @@ text-helpers = ["chardet (>=5.1.0,<6.0.0)"]
|
|
915 |
|
916 |
[[package]]
|
917 |
name = "langchain-core"
|
918 |
-
version = "0.0.
|
919 |
description = "Building applications with LLMs through composability"
|
920 |
optional = false
|
921 |
python-versions = ">=3.8.1,<4.0"
|
922 |
files = [
|
923 |
-
{file = "langchain_core-0.0.
|
924 |
-
{file = "langchain_core-0.0.
|
925 |
]
|
926 |
|
927 |
[package.dependencies]
|
@@ -932,13 +902,13 @@ tenacity = ">=8.1.0,<9.0.0"
|
|
932 |
|
933 |
[[package]]
|
934 |
name = "langsmith"
|
935 |
-
version = "0.0.
|
936 |
description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform."
|
937 |
optional = false
|
938 |
python-versions = ">=3.8.1,<4.0"
|
939 |
files = [
|
940 |
-
{file = "langsmith-0.0.
|
941 |
-
{file = "langsmith-0.0.
|
942 |
]
|
943 |
|
944 |
[package.dependencies]
|
@@ -1128,13 +1098,13 @@ files = [
|
|
1128 |
|
1129 |
[[package]]
|
1130 |
name = "openai"
|
1131 |
-
version = "1.3.
|
1132 |
description = "The official Python library for the openai API"
|
1133 |
optional = false
|
1134 |
python-versions = ">=3.7.1"
|
1135 |
files = [
|
1136 |
-
{file = "openai-1.3.
|
1137 |
-
{file = "openai-1.3.
|
1138 |
]
|
1139 |
|
1140 |
[package.dependencies]
|
@@ -1323,13 +1293,13 @@ files = [
|
|
1323 |
|
1324 |
[[package]]
|
1325 |
name = "platformdirs"
|
1326 |
-
version = "4.
|
1327 |
description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"."
|
1328 |
optional = false
|
1329 |
-
python-versions = ">=3.
|
1330 |
files = [
|
1331 |
-
{file = "platformdirs-4.
|
1332 |
-
{file = "platformdirs-4.
|
1333 |
]
|
1334 |
|
1335 |
[package.extras]
|
@@ -1607,7 +1577,6 @@ files = [
|
|
1607 |
{file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"},
|
1608 |
{file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"},
|
1609 |
{file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"},
|
1610 |
-
{file = "PyYAML-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290"},
|
1611 |
{file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"},
|
1612 |
{file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"},
|
1613 |
{file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"},
|
@@ -1615,15 +1584,8 @@ files = [
|
|
1615 |
{file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"},
|
1616 |
{file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"},
|
1617 |
{file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"},
|
1618 |
-
{file = "PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b"},
|
1619 |
{file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"},
|
1620 |
{file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"},
|
1621 |
-
{file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"},
|
1622 |
-
{file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"},
|
1623 |
-
{file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"},
|
1624 |
-
{file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"},
|
1625 |
-
{file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"},
|
1626 |
-
{file = "PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df"},
|
1627 |
{file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"},
|
1628 |
{file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"},
|
1629 |
{file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"},
|
@@ -1640,7 +1602,6 @@ files = [
|
|
1640 |
{file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"},
|
1641 |
{file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"},
|
1642 |
{file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"},
|
1643 |
-
{file = "PyYAML-6.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6"},
|
1644 |
{file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"},
|
1645 |
{file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"},
|
1646 |
{file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"},
|
@@ -1648,7 +1609,6 @@ files = [
|
|
1648 |
{file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"},
|
1649 |
{file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"},
|
1650 |
{file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"},
|
1651 |
-
{file = "PyYAML-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5"},
|
1652 |
{file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"},
|
1653 |
{file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"},
|
1654 |
{file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"},
|
@@ -1677,28 +1637,28 @@ use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"]
|
|
1677 |
|
1678 |
[[package]]
|
1679 |
name = "ruff"
|
1680 |
-
version = "0.1.
|
1681 |
description = "An extremely fast Python linter and code formatter, written in Rust."
|
1682 |
optional = false
|
1683 |
python-versions = ">=3.7"
|
1684 |
files = [
|
1685 |
-
{file = "ruff-0.1.
|
1686 |
-
{file = "ruff-0.1.
|
1687 |
-
{file = "ruff-0.1.
|
1688 |
-
{file = "ruff-0.1.
|
1689 |
-
{file = "ruff-0.1.
|
1690 |
-
{file = "ruff-0.1.
|
1691 |
-
{file = "ruff-0.1.
|
1692 |
-
{file = "ruff-0.1.
|
1693 |
-
{file = "ruff-0.1.
|
1694 |
-
{file = "ruff-0.1.
|
1695 |
-
{file = "ruff-0.1.
|
1696 |
-
{file = "ruff-0.1.
|
1697 |
-
{file = "ruff-0.1.
|
1698 |
-
{file = "ruff-0.1.
|
1699 |
-
{file = "ruff-0.1.
|
1700 |
-
{file = "ruff-0.1.
|
1701 |
-
{file = "ruff-0.1.
|
1702 |
]
|
1703 |
|
1704 |
[[package]]
|
@@ -1845,7 +1805,6 @@ files = [
|
|
1845 |
|
1846 |
[package.dependencies]
|
1847 |
anyio = ">=3.4.0,<5"
|
1848 |
-
typing-extensions = {version = ">=3.10.0", markers = "python_version < \"3.10\""}
|
1849 |
|
1850 |
[package.extras]
|
1851 |
full = ["httpx (>=0.22.0)", "itsdangerous", "jinja2", "python-multipart", "pyyaml"]
|
@@ -1978,7 +1937,6 @@ files = [
|
|
1978 |
[package.dependencies]
|
1979 |
click = ">=7.0"
|
1980 |
h11 = ">=0.8"
|
1981 |
-
typing-extensions = {version = ">=4.0", markers = "python_version < \"3.11\""}
|
1982 |
|
1983 |
[package.extras]
|
1984 |
standard = ["colorama (>=0.4)", "httptools (>=0.5.0)", "python-dotenv (>=0.13)", "pyyaml (>=5.1)", "uvloop (>=0.14.0,!=0.15.0,!=0.15.1)", "watchfiles (>=0.13)", "websockets (>=10.4)"]
|
@@ -2311,5 +2269,5 @@ testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "p
|
|
2311 |
|
2312 |
[metadata]
|
2313 |
lock-version = "2.0"
|
2314 |
-
python-versions = ">=3.
|
2315 |
-
content-hash = "
|
|
|
98 |
|
99 |
[package.dependencies]
|
100 |
aiosignal = ">=1.1.2"
|
|
|
101 |
attrs = ">=17.3.0"
|
102 |
frozenlist = ">=1.1.1"
|
103 |
multidict = ">=4.5,<7.0"
|
|
|
143 |
]
|
144 |
|
145 |
[package.dependencies]
|
|
|
146 |
idna = ">=2.8"
|
147 |
sniffio = ">=1.1"
|
148 |
|
|
|
151 |
test = ["anyio[trio]", "coverage[toml] (>=4.5)", "hypothesis (>=4.0)", "mock (>=4)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "uvloop (>=0.17)"]
|
152 |
trio = ["trio (<0.22)"]
|
153 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
154 |
[[package]]
|
155 |
name = "asyncer"
|
156 |
version = "0.0.2"
|
|
|
243 |
packaging = ">=22.0"
|
244 |
pathspec = ">=0.9.0"
|
245 |
platformdirs = ">=2"
|
|
|
|
|
246 |
|
247 |
[package.extras]
|
248 |
colorama = ["colorama (>=0.4.3)"]
|
|
|
462 |
{file = "distro-1.8.0.tar.gz", hash = "sha256:02e111d1dc6a50abb8eed6bf31c3e48ed8b0830d1ea2a1b78c61765c2513fdd8"},
|
463 |
]
|
464 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
465 |
[[package]]
|
466 |
name = "fastapi"
|
467 |
version = "0.100.1"
|
|
|
801 |
|
802 |
[[package]]
|
803 |
name = "importlib-metadata"
|
804 |
+
version = "6.8.0"
|
805 |
description = "Read metadata from Python packages"
|
806 |
optional = false
|
807 |
python-versions = ">=3.8"
|
808 |
files = [
|
809 |
+
{file = "importlib_metadata-6.8.0-py3-none-any.whl", hash = "sha256:3ebb78df84a805d7698245025b975d9d67053cd94c79245ba4b3eb694abe68bb"},
|
810 |
+
{file = "importlib_metadata-6.8.0.tar.gz", hash = "sha256:dbace7892d8c0c4ac1ad096662232f831d4e64f4c4545bd53016a3e9d4654743"},
|
811 |
]
|
812 |
|
813 |
[package.dependencies]
|
814 |
zipp = ">=0.5"
|
815 |
|
816 |
[package.extras]
|
817 |
+
docs = ["furo", "jaraco.packaging (>=9)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"]
|
818 |
perf = ["ipython"]
|
819 |
testing = ["flufl.flake8", "importlib-resources (>=1.3)", "packaging", "pyfakefs", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-mypy (>=0.9.1)", "pytest-perf (>=0.9.2)", "pytest-ruff"]
|
820 |
|
|
|
857 |
[package.dependencies]
|
858 |
aiohttp = ">=3.8.3,<4.0.0"
|
859 |
anyio = "<4.0"
|
|
|
860 |
dataclasses-json = ">=0.5.7,<0.7"
|
861 |
jsonpatch = ">=1.33,<2.0"
|
862 |
langchain-core = ">=0.0.7,<0.1"
|
|
|
885 |
|
886 |
[[package]]
|
887 |
name = "langchain-core"
|
888 |
+
version = "0.0.7"
|
889 |
description = "Building applications with LLMs through composability"
|
890 |
optional = false
|
891 |
python-versions = ">=3.8.1,<4.0"
|
892 |
files = [
|
893 |
+
{file = "langchain_core-0.0.7-py3-none-any.whl", hash = "sha256:368ae70a1da56971642df0a9ede5f480d762224238ba84d0f9b2cd7c776150de"},
|
894 |
+
{file = "langchain_core-0.0.7.tar.gz", hash = "sha256:2310df8b783194ec2dfe01c2864bd8b3ccb4adecb02b17cf1d63cc773c252b4a"},
|
895 |
]
|
896 |
|
897 |
[package.dependencies]
|
|
|
902 |
|
903 |
[[package]]
|
904 |
name = "langsmith"
|
905 |
+
version = "0.0.67"
|
906 |
description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform."
|
907 |
optional = false
|
908 |
python-versions = ">=3.8.1,<4.0"
|
909 |
files = [
|
910 |
+
{file = "langsmith-0.0.67-py3-none-any.whl", hash = "sha256:66a257b97dabd43a7e62af271b2ddb7566167ce4e446fd7b7760e97d6ce84a5e"},
|
911 |
+
{file = "langsmith-0.0.67.tar.gz", hash = "sha256:cef00bac2e7455a5943f3afaea91c032db1a1f2adb83003159a71e884fb5a9a2"},
|
912 |
]
|
913 |
|
914 |
[package.dependencies]
|
|
|
1098 |
|
1099 |
[[package]]
|
1100 |
name = "openai"
|
1101 |
+
version = "1.3.6"
|
1102 |
description = "The official Python library for the openai API"
|
1103 |
optional = false
|
1104 |
python-versions = ">=3.7.1"
|
1105 |
files = [
|
1106 |
+
{file = "openai-1.3.6-py3-none-any.whl", hash = "sha256:a88063de50706e7a25d9d3dcc0aa4b7e1f59ad40a3b8901af28fec097abeb230"},
|
1107 |
+
{file = "openai-1.3.6.tar.gz", hash = "sha256:5f1f00658474668d8ecb7e87ceed101632c66e1e57d29aa9e0b1cb21f65a72be"},
|
1108 |
]
|
1109 |
|
1110 |
[package.dependencies]
|
|
|
1293 |
|
1294 |
[[package]]
|
1295 |
name = "platformdirs"
|
1296 |
+
version = "4.0.0"
|
1297 |
description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"."
|
1298 |
optional = false
|
1299 |
+
python-versions = ">=3.7"
|
1300 |
files = [
|
1301 |
+
{file = "platformdirs-4.0.0-py3-none-any.whl", hash = "sha256:118c954d7e949b35437270383a3f2531e99dd93cf7ce4dc8340d3356d30f173b"},
|
1302 |
+
{file = "platformdirs-4.0.0.tar.gz", hash = "sha256:cb633b2bcf10c51af60beb0ab06d2f1d69064b43abf4c185ca6b28865f3f9731"},
|
1303 |
]
|
1304 |
|
1305 |
[package.extras]
|
|
|
1577 |
{file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"},
|
1578 |
{file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"},
|
1579 |
{file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"},
|
|
|
1580 |
{file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"},
|
1581 |
{file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"},
|
1582 |
{file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"},
|
|
|
1584 |
{file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"},
|
1585 |
{file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"},
|
1586 |
{file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"},
|
|
|
1587 |
{file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"},
|
1588 |
{file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"},
|
|
|
|
|
|
|
|
|
|
|
|
|
1589 |
{file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"},
|
1590 |
{file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"},
|
1591 |
{file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"},
|
|
|
1602 |
{file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"},
|
1603 |
{file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"},
|
1604 |
{file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"},
|
|
|
1605 |
{file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"},
|
1606 |
{file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"},
|
1607 |
{file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"},
|
|
|
1609 |
{file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"},
|
1610 |
{file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"},
|
1611 |
{file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"},
|
|
|
1612 |
{file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"},
|
1613 |
{file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"},
|
1614 |
{file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"},
|
|
|
1637 |
|
1638 |
[[package]]
|
1639 |
name = "ruff"
|
1640 |
+
version = "0.1.6"
|
1641 |
description = "An extremely fast Python linter and code formatter, written in Rust."
|
1642 |
optional = false
|
1643 |
python-versions = ">=3.7"
|
1644 |
files = [
|
1645 |
+
{file = "ruff-0.1.6-py3-none-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl", hash = "sha256:88b8cdf6abf98130991cbc9f6438f35f6e8d41a02622cc5ee130a02a0ed28703"},
|
1646 |
+
{file = "ruff-0.1.6-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:5c549ed437680b6105a1299d2cd30e4964211606eeb48a0ff7a93ef70b902248"},
|
1647 |
+
{file = "ruff-0.1.6-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1cf5f701062e294f2167e66d11b092bba7af6a057668ed618a9253e1e90cfd76"},
|
1648 |
+
{file = "ruff-0.1.6-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:05991ee20d4ac4bb78385360c684e4b417edd971030ab12a4fbd075ff535050e"},
|
1649 |
+
{file = "ruff-0.1.6-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:87455a0c1f739b3c069e2f4c43b66479a54dea0276dd5d4d67b091265f6fd1dc"},
|
1650 |
+
{file = "ruff-0.1.6-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:683aa5bdda5a48cb8266fcde8eea2a6af4e5700a392c56ea5fb5f0d4bfdc0240"},
|
1651 |
+
{file = "ruff-0.1.6-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:137852105586dcbf80c1717facb6781555c4e99f520c9c827bd414fac67ddfb6"},
|
1652 |
+
{file = "ruff-0.1.6-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:bd98138a98d48a1c36c394fd6b84cd943ac92a08278aa8ac8c0fdefcf7138f35"},
|
1653 |
+
{file = "ruff-0.1.6-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3a0cd909d25f227ac5c36d4e7e681577275fb74ba3b11d288aff7ec47e3ae745"},
|
1654 |
+
{file = "ruff-0.1.6-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:e8fd1c62a47aa88a02707b5dd20c5ff20d035d634aa74826b42a1da77861b5ff"},
|
1655 |
+
{file = "ruff-0.1.6-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:fd89b45d374935829134a082617954120d7a1470a9f0ec0e7f3ead983edc48cc"},
|
1656 |
+
{file = "ruff-0.1.6-py3-none-musllinux_1_2_i686.whl", hash = "sha256:491262006e92f825b145cd1e52948073c56560243b55fb3b4ecb142f6f0e9543"},
|
1657 |
+
{file = "ruff-0.1.6-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:ea284789861b8b5ca9d5443591a92a397ac183d4351882ab52f6296b4fdd5462"},
|
1658 |
+
{file = "ruff-0.1.6-py3-none-win32.whl", hash = "sha256:1610e14750826dfc207ccbcdd7331b6bd285607d4181df9c1c6ae26646d6848a"},
|
1659 |
+
{file = "ruff-0.1.6-py3-none-win_amd64.whl", hash = "sha256:4558b3e178145491e9bc3b2ee3c4b42f19d19384eaa5c59d10acf6e8f8b57e33"},
|
1660 |
+
{file = "ruff-0.1.6-py3-none-win_arm64.whl", hash = "sha256:03910e81df0d8db0e30050725a5802441c2022ea3ae4fe0609b76081731accbc"},
|
1661 |
+
{file = "ruff-0.1.6.tar.gz", hash = "sha256:1b09f29b16c6ead5ea6b097ef2764b42372aebe363722f1605ecbcd2b9207184"},
|
1662 |
]
|
1663 |
|
1664 |
[[package]]
|
|
|
1805 |
|
1806 |
[package.dependencies]
|
1807 |
anyio = ">=3.4.0,<5"
|
|
|
1808 |
|
1809 |
[package.extras]
|
1810 |
full = ["httpx (>=0.22.0)", "itsdangerous", "jinja2", "python-multipart", "pyyaml"]
|
|
|
1937 |
[package.dependencies]
|
1938 |
click = ">=7.0"
|
1939 |
h11 = ">=0.8"
|
|
|
1940 |
|
1941 |
[package.extras]
|
1942 |
standard = ["colorama (>=0.4)", "httptools (>=0.5.0)", "python-dotenv (>=0.13)", "pyyaml (>=5.1)", "uvloop (>=0.14.0,!=0.15.0,!=0.15.1)", "watchfiles (>=0.13)", "websockets (>=10.4)"]
|
|
|
2269 |
|
2270 |
[metadata]
|
2271 |
lock-version = "2.0"
|
2272 |
+
python-versions = ">=3.11,<3.12"
|
2273 |
+
content-hash = "422480605aff997dacebbc010cda6ef41d176ec173b7b4b9340b9c0c90b8fae3"
|
pyproject.toml
CHANGED
@@ -6,7 +6,7 @@ authors = ["Harisyam Manda <[email protected]>"]
|
|
6 |
readme = "README.md"
|
7 |
|
8 |
[tool.poetry.dependencies]
|
9 |
-
python = ">=3.
|
10 |
chainlit = "^0.7.700"
|
11 |
openai = "^1.3.6"
|
12 |
langchain = "^0.0.342"
|
|
|
6 |
readme = "README.md"
|
7 |
|
8 |
[tool.poetry.dependencies]
|
9 |
+
python = ">=3.11,<3.12"
|
10 |
chainlit = "^0.7.700"
|
11 |
openai = "^1.3.6"
|
12 |
langchain = "^0.0.342"
|