vectara-agentic 0.1.2__tar.gz → 0.1.3__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.

Potentially problematic release.


This version of vectara-agentic might be problematic. Click here for more details.

Files changed (22) hide show
  1. {vectara_agentic-0.1.2/vectara_agentic.egg-info → vectara_agentic-0.1.3}/PKG-INFO +8 -2
  2. {vectara_agentic-0.1.2 → vectara_agentic-0.1.3}/setup.py +10 -2
  3. {vectara_agentic-0.1.2 → vectara_agentic-0.1.3/vectara_agentic.egg-info}/PKG-INFO +8 -2
  4. {vectara_agentic-0.1.2 → vectara_agentic-0.1.3}/LICENSE +0 -0
  5. {vectara_agentic-0.1.2 → vectara_agentic-0.1.3}/MANIFEST.in +0 -0
  6. {vectara_agentic-0.1.2 → vectara_agentic-0.1.3}/README.md +0 -0
  7. {vectara_agentic-0.1.2 → vectara_agentic-0.1.3}/requirements.txt +0 -0
  8. {vectara_agentic-0.1.2 → vectara_agentic-0.1.3}/setup.cfg +0 -0
  9. {vectara_agentic-0.1.2 → vectara_agentic-0.1.3}/tests/test_agent.py +0 -0
  10. {vectara_agentic-0.1.2 → vectara_agentic-0.1.3}/tests/test_tools.py +0 -0
  11. {vectara_agentic-0.1.2 → vectara_agentic-0.1.3}/vectara_agentic/__init__.py +0 -0
  12. {vectara_agentic-0.1.2 → vectara_agentic-0.1.3}/vectara_agentic/_callback.py +0 -0
  13. {vectara_agentic-0.1.2 → vectara_agentic-0.1.3}/vectara_agentic/_prompts.py +0 -0
  14. {vectara_agentic-0.1.2 → vectara_agentic-0.1.3}/vectara_agentic/agent.py +0 -0
  15. {vectara_agentic-0.1.2 → vectara_agentic-0.1.3}/vectara_agentic/tools.py +0 -0
  16. {vectara_agentic-0.1.2 → vectara_agentic-0.1.3}/vectara_agentic/tools_catalog.py +0 -0
  17. {vectara_agentic-0.1.2 → vectara_agentic-0.1.3}/vectara_agentic/types.py +0 -0
  18. {vectara_agentic-0.1.2 → vectara_agentic-0.1.3}/vectara_agentic/utils.py +0 -0
  19. {vectara_agentic-0.1.2 → vectara_agentic-0.1.3}/vectara_agentic.egg-info/SOURCES.txt +0 -0
  20. {vectara_agentic-0.1.2 → vectara_agentic-0.1.3}/vectara_agentic.egg-info/dependency_links.txt +0 -0
  21. {vectara_agentic-0.1.2 → vectara_agentic-0.1.3}/vectara_agentic.egg-info/requires.txt +0 -0
  22. {vectara_agentic-0.1.2 → vectara_agentic-0.1.3}/vectara_agentic.egg-info/top_level.txt +0 -0
@@ -1,13 +1,19 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: vectara_agentic
3
- Version: 0.1.2
3
+ Version: 0.1.3
4
4
  Summary: A Python package for creating AI Assistants and AI Agents with Vectara
5
5
  Home-page: https://github.com/vectara/py-vectara-agentic
6
6
  Author: Ofer Mendelevitch
7
7
  Author-email: ofer@vectara.com
8
+ License: Apache-2.0
9
+ Project-URL: Documentation, https://vectara.github.io/vectara-agentic-docs/
10
+ Keywords: LLM,NLP,RAG,Agentic-RAG
8
11
  Classifier: Programming Language :: Python :: 3
9
- Classifier: License :: OSI Approved :: MIT License
12
+ Classifier: License :: OSI Approved :: Apache Software License
10
13
  Classifier: Operating System :: OS Independent
14
+ Classifier: Development Status :: 4 - Beta
15
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
16
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
11
17
  Requires-Python: >=3.10
12
18
  Description-Content-Type: text/markdown
13
19
  License-File: LICENSE
@@ -8,7 +8,8 @@ def read_requirements():
8
8
 
9
9
  setup(
10
10
  name="vectara_agentic",
11
- version="0.1.2",
11
+ version="0.1.3",
12
+ license="Apache-2.0",
12
13
  author="Ofer Mendelevitch",
13
14
  author_email="ofer@vectara.com",
14
15
  description="A Python package for creating AI Assistants and AI Agents with Vectara",
@@ -19,8 +20,15 @@ setup(
19
20
  install_requires=read_requirements(),
20
21
  classifiers=[
21
22
  "Programming Language :: Python :: 3",
22
- "License :: OSI Approved :: MIT License",
23
+ "License :: OSI Approved :: Apache Software License",
23
24
  "Operating System :: OS Independent",
25
+ "Development Status :: 4 - Beta",
26
+ "Topic :: Scientific/Engineering :: Artificial Intelligence",
27
+ "Topic :: Software Development :: Libraries :: Python Modules",
24
28
  ],
29
+ keywords = ["LLM", "NLP", "RAG", "Agentic-RAG"],
30
+ project_urls={
31
+ "Documentation": "https://vectara.github.io/vectara-agentic-docs/",
32
+ },
25
33
  python_requires=">=3.10",
26
34
  )
@@ -1,13 +1,19 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: vectara_agentic
3
- Version: 0.1.2
3
+ Version: 0.1.3
4
4
  Summary: A Python package for creating AI Assistants and AI Agents with Vectara
5
5
  Home-page: https://github.com/vectara/py-vectara-agentic
6
6
  Author: Ofer Mendelevitch
7
7
  Author-email: ofer@vectara.com
8
+ License: Apache-2.0
9
+ Project-URL: Documentation, https://vectara.github.io/vectara-agentic-docs/
10
+ Keywords: LLM,NLP,RAG,Agentic-RAG
8
11
  Classifier: Programming Language :: Python :: 3
9
- Classifier: License :: OSI Approved :: MIT License
12
+ Classifier: License :: OSI Approved :: Apache Software License
10
13
  Classifier: Operating System :: OS Independent
14
+ Classifier: Development Status :: 4 - Beta
15
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
16
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
11
17
  Requires-Python: >=3.10
12
18
  Description-Content-Type: text/markdown
13
19
  License-File: LICENSE
File without changes