vectara-agentic 0.1.11__tar.gz → 0.1.12__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 (23) hide show
  1. {vectara_agentic-0.1.11/vectara_agentic.egg-info → vectara_agentic-0.1.12}/PKG-INFO +2 -1
  2. {vectara_agentic-0.1.11 → vectara_agentic-0.1.12}/requirements.txt +1 -0
  3. {vectara_agentic-0.1.11 → vectara_agentic-0.1.12}/setup.py +1 -1
  4. {vectara_agentic-0.1.11 → vectara_agentic-0.1.12}/vectara_agentic/__init__.py +1 -1
  5. {vectara_agentic-0.1.11 → vectara_agentic-0.1.12}/vectara_agentic/_observability.py +2 -3
  6. {vectara_agentic-0.1.11 → vectara_agentic-0.1.12/vectara_agentic.egg-info}/PKG-INFO +2 -1
  7. {vectara_agentic-0.1.11 → vectara_agentic-0.1.12}/vectara_agentic.egg-info/requires.txt +1 -0
  8. {vectara_agentic-0.1.11 → vectara_agentic-0.1.12}/LICENSE +0 -0
  9. {vectara_agentic-0.1.11 → vectara_agentic-0.1.12}/MANIFEST.in +0 -0
  10. {vectara_agentic-0.1.11 → vectara_agentic-0.1.12}/README.md +0 -0
  11. {vectara_agentic-0.1.11 → vectara_agentic-0.1.12}/setup.cfg +0 -0
  12. {vectara_agentic-0.1.11 → vectara_agentic-0.1.12}/tests/test_agent.py +0 -0
  13. {vectara_agentic-0.1.11 → vectara_agentic-0.1.12}/tests/test_tools.py +0 -0
  14. {vectara_agentic-0.1.11 → vectara_agentic-0.1.12}/vectara_agentic/_callback.py +0 -0
  15. {vectara_agentic-0.1.11 → vectara_agentic-0.1.12}/vectara_agentic/_prompts.py +0 -0
  16. {vectara_agentic-0.1.11 → vectara_agentic-0.1.12}/vectara_agentic/agent.py +0 -0
  17. {vectara_agentic-0.1.11 → vectara_agentic-0.1.12}/vectara_agentic/tools.py +0 -0
  18. {vectara_agentic-0.1.11 → vectara_agentic-0.1.12}/vectara_agentic/tools_catalog.py +0 -0
  19. {vectara_agentic-0.1.11 → vectara_agentic-0.1.12}/vectara_agentic/types.py +0 -0
  20. {vectara_agentic-0.1.11 → vectara_agentic-0.1.12}/vectara_agentic/utils.py +0 -0
  21. {vectara_agentic-0.1.11 → vectara_agentic-0.1.12}/vectara_agentic.egg-info/SOURCES.txt +0 -0
  22. {vectara_agentic-0.1.11 → vectara_agentic-0.1.12}/vectara_agentic.egg-info/dependency_links.txt +0 -0
  23. {vectara_agentic-0.1.11 → vectara_agentic-0.1.12}/vectara_agentic.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: vectara_agentic
3
- Version: 0.1.11
3
+ Version: 0.1.12
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
@@ -35,6 +35,7 @@ Requires-Dist: llama-index-tools-tavily_research==0.2.0
35
35
  Requires-Dist: openinference-instrumentation-llama-index==3.0.2
36
36
  Requires-Dist: opentelemetry-proto==1.16.0
37
37
  Requires-Dist: arize-phoenix-otel==0.5.1
38
+ Requires-Dist: tokenizers>=0.20
38
39
  Requires-Dist: pydantic==2.9.2
39
40
  Requires-Dist: retrying==1.3.4
40
41
  Requires-Dist: pymongo==4.6.3
@@ -17,6 +17,7 @@ llama-index-tools-tavily_research==0.2.0
17
17
  openinference-instrumentation-llama-index==3.0.2
18
18
  opentelemetry-proto==1.16.0
19
19
  arize-phoenix-otel==0.5.1
20
+ tokenizers>=0.20
20
21
  pydantic==2.9.2
21
22
  retrying==1.3.4
22
23
  pymongo==4.6.3
@@ -8,7 +8,7 @@ def read_requirements():
8
8
 
9
9
  setup(
10
10
  name="vectara_agentic",
11
- version="0.1.11",
11
+ version="0.1.12",
12
12
  author="Ofer Mendelevitch",
13
13
  author_email="ofer@vectara.com",
14
14
  description="A Python package for creating AI Assistants and AI Agents with Vectara",
@@ -3,7 +3,7 @@ vectara_agentic package.
3
3
  """
4
4
 
5
5
  # Define the package version
6
- __version__ = "0.1.11"
6
+ __version__ = "0.1.12"
7
7
 
8
8
  # Import classes and functions from modules
9
9
  # from .module1 import Class1, function1
@@ -16,7 +16,7 @@ def setup_observer():
16
16
  phoenix_endpoint = os.getenv("PHOENIX_ENDPOINT", None)
17
17
  if not phoenix_endpoint:
18
18
  px.launch_app()
19
- tracer_provider = register(endpoint='http://localhost:6006', project_name="vectara-agentic")
19
+ tracer_provider = register(endpoint='http://localhost:6006/v1/traces', project_name="vectara-agentic")
20
20
  elif 'app.phoenix.arize.com' in phoenix_endpoint: # hosted on Arizze
21
21
  phoenix_api_key = os.getenv("PHOENIX_API_KEY", None)
22
22
  if not phoenix_api_key:
@@ -64,8 +64,7 @@ def eval_fcs():
64
64
  )
65
65
  client = px.Client()
66
66
  all_spans = client.query_spans(query, project_name="vectara-agentic")
67
-
68
- vectara_spans = all_spans[all_spans['name'] == 'VectaraQueryEngine._query']
67
+ vectara_spans = all_spans[all_spans['name'] == 'VectaraQueryEngine._query'].copy()
69
68
  vectara_spans['top_level_parent_id'] = vectara_spans.apply(lambda row: _find_top_level_parent_id(row, all_spans), axis=1)
70
69
  vectara_spans['score'] = vectara_spans['output.value'].apply(lambda x: _extract_fcs_value(x))
71
70
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: vectara_agentic
3
- Version: 0.1.11
3
+ Version: 0.1.12
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
@@ -35,6 +35,7 @@ Requires-Dist: llama-index-tools-tavily_research==0.2.0
35
35
  Requires-Dist: openinference-instrumentation-llama-index==3.0.2
36
36
  Requires-Dist: opentelemetry-proto==1.16.0
37
37
  Requires-Dist: arize-phoenix-otel==0.5.1
38
+ Requires-Dist: tokenizers>=0.20
38
39
  Requires-Dist: pydantic==2.9.2
39
40
  Requires-Dist: retrying==1.3.4
40
41
  Requires-Dist: pymongo==4.6.3
@@ -17,6 +17,7 @@ llama-index-tools-tavily_research==0.2.0
17
17
  openinference-instrumentation-llama-index==3.0.2
18
18
  opentelemetry-proto==1.16.0
19
19
  arize-phoenix-otel==0.5.1
20
+ tokenizers>=0.20
20
21
  pydantic==2.9.2
21
22
  retrying==1.3.4
22
23
  pymongo==4.6.3