langroid 0.28.5__py3-none-any.whl → 0.28.6__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.5
3
+ Version: 0.28.6
4
4
  Summary: Harness LLMs with Multi-Agent Programming
5
5
  License: MIT
6
6
  Author: Prasad Chalasani
@@ -142,9 +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=qTKZuhfKoLnMoJthesDcFWW9SLEbI5ll0ZaBpqEPDs8,7723
146
- langroid-0.28.5.dist-info/LICENSE,sha256=EgVbvA6VSYgUlvC3RvPKehSg7MFaxWDsFuzLOsPPfJg,1065
147
- langroid-0.28.5.dist-info/METADATA,sha256=pBOyi2Ia4zTA7PVzUrQtqELu6-90VIXUr7riiGKIR9o,57569
148
- langroid-0.28.5.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
149
- langroid-0.28.5.dist-info/entry_points.txt,sha256=EK2N5RyXtWYR4lxlryikyYvMj7YRm4bR-n75ATz-ExQ,171
150
- langroid-0.28.5.dist-info/RECORD,,
145
+ pyproject.toml,sha256=2KZhv7jZuXm2-pJOUZjns2H7SBINITCmbvEEPuTxT6k,7533
146
+ langroid-0.28.6.dist-info/LICENSE,sha256=EgVbvA6VSYgUlvC3RvPKehSg7MFaxWDsFuzLOsPPfJg,1065
147
+ langroid-0.28.6.dist-info/METADATA,sha256=HbGRh1pz_T1BmrH1SYlHu7ygMb6JzEl6AlYNfvcdZyU,57569
148
+ langroid-0.28.6.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
149
+ langroid-0.28.6.dist-info/RECORD,,
pyproject.toml CHANGED
@@ -1,17 +1,12 @@
1
1
  [tool.poetry]
2
2
  name = "langroid"
3
- version = "0.28.5"
3
+ version = "0.28.6"
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-local:main"
12
- completion = "examples.basic.completion:app"
13
- chatdoc = "examples.docqa.chat:app"
14
- chatsearch = "examples.docqa.chat-search:main"
15
10
 
16
11
  # =============== MAIN DEPS ==============
17
12
  [tool.poetry.dependencies]
@@ -1,6 +0,0 @@
1
- [console_scripts]
2
- chat=examples.basic.chat-local:main
3
- chatdoc=examples.docqa.chat:app
4
- chatsearch=examples.docqa.chat-search:main
5
- completion=examples.basic.completion:app
6
-