langroid 0.28.1__py3-none-any.whl → 0.28.2__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: langroid
3
- Version: 0.28.1
3
+ Version: 0.28.2
4
4
  Summary: Harness LLMs with Multi-Agent Programming
5
5
  License: MIT
6
6
  Author: Prasad Chalasani
@@ -142,8 +142,8 @@ 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=YO18NE-r-Ark_n-cjgvflJWmA3uqXXo2Ee5dQzT_Qw8,7532
146
- langroid-0.28.1.dist-info/LICENSE,sha256=EgVbvA6VSYgUlvC3RvPKehSg7MFaxWDsFuzLOsPPfJg,1065
147
- langroid-0.28.1.dist-info/METADATA,sha256=IExM86cC-ymkK90BCMiULmuodg9E7amGcyi0g3aN_j0,57569
148
- langroid-0.28.1.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
149
- langroid-0.28.1.dist-info/RECORD,,
145
+ pyproject.toml,sha256=dExOb_TNepHJ9ar18cXmLNGWuVE9xp4dePb-XMzTeDU,7741
146
+ langroid-0.28.2.dist-info/LICENSE,sha256=EgVbvA6VSYgUlvC3RvPKehSg7MFaxWDsFuzLOsPPfJg,1065
147
+ langroid-0.28.2.dist-info/METADATA,sha256=813AGZ3nFUF-FZGq2bBPv5pCFZfs438v9HuPI-e4lYY,57569
148
+ langroid-0.28.2.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
149
+ langroid-0.28.2.dist-info/RECORD,,
pyproject.toml CHANGED
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "langroid"
3
- version = "0.28.1"
3
+ version = "0.28.2"
4
4
  description = "Harness LLMs with Multi-Agent Programming"
5
5
  authors = ["Prasad Chalasani <pchalasani@gmail.com>"]
6
6
  readme = "README.md"
@@ -248,3 +248,9 @@ lint.extend-ignore = ["F821", "F401"]
248
248
  [tool.pytest.ini_options]
249
249
  filterwarnings = ["ignore::DeprecationWarning"]
250
250
 
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"