langroid 0.28.2__py3-none-any.whl → 0.28.3__py3-none-any.whl
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.
- {langroid-0.28.2.dist-info → langroid-0.28.3.dist-info}/METADATA +1 -1
- {langroid-0.28.2.dist-info → langroid-0.28.3.dist-info}/RECORD +6 -5
- langroid-0.28.3.dist-info/entry_points.txt +7 -0
- pyproject.toml +8 -7
- {langroid-0.28.2.dist-info → langroid-0.28.3.dist-info}/LICENSE +0 -0
- {langroid-0.28.2.dist-info → langroid-0.28.3.dist-info}/WHEEL +0 -0
@@ -142,8 +142,9 @@ langroid/vector_store/meilisearch.py,sha256=6frB7GFWeWmeKzRfLZIvzRjllniZ1cYj3Hmh
|
|
142
142
|
langroid/vector_store/momento.py,sha256=UNHGT6jXuQtqY9f6MdqGU14bVnS0zHgIJUa30ULpUJo,10474
|
143
143
|
langroid/vector_store/qdrant_cloud.py,sha256=3im4Mip0QXLkR6wiqVsjV1QvhSElfxdFSuDKddBDQ-4,188
|
144
144
|
langroid/vector_store/qdrantdb.py,sha256=v7mCsijc2GdRJyil-yFaUVAX4SX5D75mD3vzlpjCMuo,17393
|
145
|
-
pyproject.toml,sha256=
|
146
|
-
langroid-0.28.
|
147
|
-
langroid-0.28.
|
148
|
-
langroid-0.28.
|
149
|
-
langroid-0.28.
|
145
|
+
pyproject.toml,sha256=F9SGmGiFOzNgZXz1l6U8xqpRGmQqezjP3HLsvC5KBTk,7746
|
146
|
+
langroid-0.28.3.dist-info/LICENSE,sha256=EgVbvA6VSYgUlvC3RvPKehSg7MFaxWDsFuzLOsPPfJg,1065
|
147
|
+
langroid-0.28.3.dist-info/METADATA,sha256=H4vxlAzf3hD9YSg51fNxyaOjhwpzHjAo1LP8p6FVV2Q,57569
|
148
|
+
langroid-0.28.3.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
149
|
+
langroid-0.28.3.dist-info/entry_points.txt,sha256=xnn4Pcv_3PCksOYnYP2Y_qqekm-AXTeyzrfwX3Zb9kU,190
|
150
|
+
langroid-0.28.3.dist-info/RECORD,,
|
pyproject.toml
CHANGED
@@ -1,12 +1,19 @@
|
|
1
1
|
[tool.poetry]
|
2
2
|
name = "langroid"
|
3
|
-
version = "0.28.
|
3
|
+
version = "0.28.3"
|
4
4
|
description = "Harness LLMs with Multi-Agent Programming"
|
5
5
|
authors = ["Prasad Chalasani <pchalasani@gmail.com>"]
|
6
6
|
readme = "README.md"
|
7
7
|
license = "MIT"
|
8
8
|
include = ["pyproject.toml", "langroid/py.typed"]
|
9
9
|
|
10
|
+
[tool.poetry.scripts]
|
11
|
+
chat = "examples.basic.chat"
|
12
|
+
completion = "examples.basic.completion"
|
13
|
+
chatdoc = "examples.docqa.chat"
|
14
|
+
chatsearch = "examples.docqa.chat-search"
|
15
|
+
chatsql = "examples.data_qa.sql_chat.sql_chat"
|
16
|
+
|
10
17
|
# =============== MAIN DEPS ==============
|
11
18
|
[tool.poetry.dependencies]
|
12
19
|
python = ">=3.10,<3.13"
|
@@ -248,9 +255,3 @@ lint.extend-ignore = ["F821", "F401"]
|
|
248
255
|
[tool.pytest.ini_options]
|
249
256
|
filterwarnings = ["ignore::DeprecationWarning"]
|
250
257
|
|
251
|
-
[project.scripts]
|
252
|
-
chat = "examples.basic.chat"
|
253
|
-
completion = "examples.basic.completion"
|
254
|
-
chatdoc = "examples.docqa.chat"
|
255
|
-
chatsearch = "examples.docqa.chat-search"
|
256
|
-
chatsql = "examples.data_qa.sql_chat.sql_chat"
|
File without changes
|
File without changes
|