vectara-agentic 0.4.1__py3-none-any.whl → 0.4.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.
Potentially problematic release.
This version of vectara-agentic might be problematic. Click here for more details.
- tests/benchmark_models.py +945 -0
- tests/conftest.py +4 -4
- tests/run_tests.py +2 -0
- tests/test_agent.py +31 -0
- tests/test_agent_fallback_memory.py +4 -4
- tests/test_agent_memory_consistency.py +4 -4
- tests/test_fallback.py +1 -1
- tests/test_private_llm.py +1 -1
- tests/test_session_memory.py +11 -11
- vectara_agentic/_observability.py +19 -0
- vectara_agentic/_version.py +1 -1
- vectara_agentic/agent.py +36 -6
- vectara_agentic/agent_core/factory.py +5 -6
- vectara_agentic/agent_core/prompts.py +3 -4
- vectara_agentic/agent_core/serialization.py +17 -11
- vectara_agentic/agent_core/streaming.py +5 -9
- vectara_agentic/llm_utils.py +3 -1
- vectara_agentic/sub_query_workflow.py +3 -2
- vectara_agentic/tools.py +0 -19
- {vectara_agentic-0.4.1.dist-info → vectara_agentic-0.4.2.dist-info}/METADATA +33 -34
- {vectara_agentic-0.4.1.dist-info → vectara_agentic-0.4.2.dist-info}/RECORD +24 -23
- {vectara_agentic-0.4.1.dist-info → vectara_agentic-0.4.2.dist-info}/WHEEL +0 -0
- {vectara_agentic-0.4.1.dist-info → vectara_agentic-0.4.2.dist-info}/licenses/LICENSE +0 -0
- {vectara_agentic-0.4.1.dist-info → vectara_agentic-0.4.2.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: vectara_agentic
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.2
|
|
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
|
|
@@ -16,44 +16,43 @@ Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
|
16
16
|
Requires-Python: >=3.10
|
|
17
17
|
Description-Content-Type: text/markdown
|
|
18
18
|
License-File: LICENSE
|
|
19
|
-
Requires-Dist: llama-index==0.
|
|
20
|
-
Requires-Dist: llama-index-core==0.
|
|
19
|
+
Requires-Dist: llama-index==0.13.1
|
|
20
|
+
Requires-Dist: llama-index-core==0.13.1
|
|
21
21
|
Requires-Dist: llama-index-workflow==1.0.1
|
|
22
|
-
Requires-Dist: llama-index-cli==0.
|
|
23
|
-
Requires-Dist: llama-index-indices-managed-vectara==0.
|
|
24
|
-
Requires-Dist: llama-index-
|
|
25
|
-
Requires-Dist: llama-index-llms-openai==0.
|
|
26
|
-
Requires-Dist: llama-index-llms-
|
|
27
|
-
Requires-Dist: llama-index-llms-
|
|
28
|
-
Requires-Dist: llama-index-llms-
|
|
29
|
-
Requires-Dist: llama-index-llms-
|
|
30
|
-
Requires-Dist: llama-index-llms-
|
|
31
|
-
Requires-Dist: llama-index-llms-
|
|
32
|
-
Requires-Dist: llama-index-
|
|
33
|
-
Requires-Dist: llama-index-tools-
|
|
34
|
-
Requires-Dist: llama-index-tools-
|
|
35
|
-
Requires-Dist: llama-index-tools-
|
|
36
|
-
Requires-Dist: llama-index-tools-
|
|
37
|
-
Requires-Dist:
|
|
38
|
-
Requires-Dist:
|
|
39
|
-
Requires-Dist: llama-index-tools-
|
|
40
|
-
Requires-Dist: llama-index-
|
|
41
|
-
Requires-Dist: llama-index-
|
|
42
|
-
Requires-Dist: llama-index-tools-
|
|
43
|
-
Requires-Dist: llama-index-tools-
|
|
44
|
-
Requires-Dist: llama-index-tools-
|
|
45
|
-
Requires-Dist: llama-index-tools-
|
|
46
|
-
Requires-Dist:
|
|
47
|
-
Requires-Dist:
|
|
48
|
-
Requires-Dist:
|
|
49
|
-
Requires-Dist:
|
|
50
|
-
Requires-Dist: openinference-instrumentation-llama-index==4.3.1
|
|
22
|
+
Requires-Dist: llama-index-cli==0.5.0
|
|
23
|
+
Requires-Dist: llama-index-indices-managed-vectara==0.5.0
|
|
24
|
+
Requires-Dist: llama-index-llms-openai==0.5.2
|
|
25
|
+
Requires-Dist: llama-index-llms-openai-like==0.5.0
|
|
26
|
+
Requires-Dist: llama-index-llms-anthropic==0.8.2
|
|
27
|
+
Requires-Dist: llama-index-llms-together==0.4.0
|
|
28
|
+
Requires-Dist: llama-index-llms-groq==0.4.0
|
|
29
|
+
Requires-Dist: llama-index-llms-cohere==0.6.0
|
|
30
|
+
Requires-Dist: llama-index-llms-google-genai==0.3.0
|
|
31
|
+
Requires-Dist: llama-index-llms-bedrock-converse==0.8.0
|
|
32
|
+
Requires-Dist: llama-index-tools-yahoo-finance==0.4.0
|
|
33
|
+
Requires-Dist: llama-index-tools-arxiv==0.4.0
|
|
34
|
+
Requires-Dist: llama-index-tools-database==0.4.0
|
|
35
|
+
Requires-Dist: llama-index-tools-google==0.6.0
|
|
36
|
+
Requires-Dist: llama-index-tools-tavily_research==0.4.0
|
|
37
|
+
Requires-Dist: llama_index.tools.brave_search==0.4.0
|
|
38
|
+
Requires-Dist: llama-index-tools-neo4j==0.4.0
|
|
39
|
+
Requires-Dist: llama-index-tools-waii==0.4.0
|
|
40
|
+
Requires-Dist: llama-index-graph-stores-kuzu==0.9.0
|
|
41
|
+
Requires-Dist: llama-index-tools-salesforce==0.4.0
|
|
42
|
+
Requires-Dist: llama-index-tools-slack==0.4.0
|
|
43
|
+
Requires-Dist: llama-index-tools-exa==0.4.0
|
|
44
|
+
Requires-Dist: llama-index-tools-wikipedia==0.4.0
|
|
45
|
+
Requires-Dist: llama-index-tools-bing-search==0.4.0
|
|
46
|
+
Requires-Dist: openai>=1.99.3
|
|
47
|
+
Requires-Dist: tavily-python>=0.7.10
|
|
48
|
+
Requires-Dist: exa-py>=1.14.20
|
|
49
|
+
Requires-Dist: openinference-instrumentation-llama-index==4.3.4
|
|
51
50
|
Requires-Dist: opentelemetry-proto>=1.31.0
|
|
52
51
|
Requires-Dist: arize-phoenix==10.9.1
|
|
53
52
|
Requires-Dist: arize-phoenix-otel==0.10.3
|
|
54
53
|
Requires-Dist: protobuf==5.29.5
|
|
55
54
|
Requires-Dist: tokenizers>=0.20
|
|
56
|
-
Requires-Dist: pydantic
|
|
55
|
+
Requires-Dist: pydantic>=2.11.5
|
|
57
56
|
Requires-Dist: pandas==2.2.3
|
|
58
57
|
Requires-Dist: retrying==1.3.4
|
|
59
58
|
Requires-Dist: python-dotenv==1.0.1
|
|
@@ -790,7 +789,7 @@ The `AgentConfig` object may include the following items:
|
|
|
790
789
|
- `main_llm_provider` and `tool_llm_provider`: the LLM provider for main agent and for the tools. Valid values are `OPENAI`, `ANTHROPIC`, `TOGETHER`, `GROQ`, `COHERE`, `BEDROCK`, `GEMINI` (default: `OPENAI`).
|
|
791
790
|
|
|
792
791
|
> **Note:** Fireworks AI support has been removed. If you were using Fireworks, please migrate to one of the supported providers listed above.
|
|
793
|
-
- `main_llm_model_name` and `tool_llm_model_name`: agent model name for agent and tools (default depends on provider: OpenAI uses gpt-4.1, Gemini uses gemini-2.5-flash).
|
|
792
|
+
- `main_llm_model_name` and `tool_llm_model_name`: agent model name for agent and tools (default depends on provider: OpenAI uses gpt-4.1-mini, Gemini uses gemini-2.5-flash).
|
|
794
793
|
- `observer`: the observer type; should be `ARIZE_PHOENIX` or if undefined no observation framework will be used.
|
|
795
794
|
- `endpoint_api_key`: a secret key if using the API endpoint option (defaults to `dev-api-key`)
|
|
796
795
|
|
|
@@ -1,20 +1,21 @@
|
|
|
1
1
|
tests/__init__.py,sha256=vXhQJCyD1Uhx2NP8b8vIUG3RUhkXyvn7oOir2bmctQU,175
|
|
2
|
-
tests/
|
|
2
|
+
tests/benchmark_models.py,sha256=RSdgnGFA7s2mOIRvi50ChZXwk677QMLbJ1glsv1lcDg,38454
|
|
3
|
+
tests/conftest.py,sha256=KjX0iDJIjbj7tsCUXLojZg5lA0PXWLTiuo0ij1Ckew8,9308
|
|
3
4
|
tests/endpoint.py,sha256=0URgtz8uydhP_rtpGn_59P1LiWkd3idNlI85LzXnlUE,2744
|
|
4
|
-
tests/run_tests.py,sha256=
|
|
5
|
-
tests/test_agent.py,sha256=
|
|
6
|
-
tests/test_agent_fallback_memory.py,sha256=
|
|
7
|
-
tests/test_agent_memory_consistency.py,sha256=
|
|
5
|
+
tests/run_tests.py,sha256=HL7JfRtQHBWj44tbs-WL7vEiehIaAynHO1KmhjqLmpw,3337
|
|
6
|
+
tests/test_agent.py,sha256=ntnVDATF3b6mRE9edWeLTexAndW09Kje2SYCo1fn56Q,6775
|
|
7
|
+
tests/test_agent_fallback_memory.py,sha256=dWk_lFLEwDUE4moeoJB5ecPUKZSiFt4RryCcKgq1XtQ,10878
|
|
8
|
+
tests/test_agent_memory_consistency.py,sha256=bnBEpoT1XIVOfd45PVRtRe5ts2kBYKc0Jk0XSjhNMMo,8982
|
|
8
9
|
tests/test_agent_type.py,sha256=d5Zs0iM12DxregfwkJ6UxERWcR5eLgy2ona1znwvK3I,5153
|
|
9
10
|
tests/test_api_endpoint.py,sha256=I2UDamPMSLLkgw0pZ5QMM0o_8vVga9-F6ql-S3zlMBs,5136
|
|
10
11
|
tests/test_bedrock.py,sha256=74M4k4MWFfZV-mD75R_27HQGTfWcPQ40ijLanT54y-E,1979
|
|
11
|
-
tests/test_fallback.py,sha256=
|
|
12
|
+
tests/test_fallback.py,sha256=SA1d8VymYl3d_tJlq-CSezf43PpBEKwnMTBMFFSe1HU,2969
|
|
12
13
|
tests/test_gemini.py,sha256=pvCcfTf79-R49H_WVZou1xx-vVmZEY-19zRtxZeUdD4,2581
|
|
13
14
|
tests/test_groq.py,sha256=OmO-VBrKfZYUc11QfZH25jT3FySQrSpv_FS488IqSik,1970
|
|
14
|
-
tests/test_private_llm.py,sha256=
|
|
15
|
+
tests/test_private_llm.py,sha256=kVwRUR9gHCiQcTNg01zf50GVvGHuniL6D1xvYWGr0eg,2625
|
|
15
16
|
tests/test_return_direct.py,sha256=QsCw-ZGp06cutLkyrLh1U1rggoH7iBiFz4SQ9MIx-Xk,1521
|
|
16
17
|
tests/test_serialization.py,sha256=wdVRoy6hoPqCF7SGpYbC2TM7iR2o_IKIRKOBZFAChp0,4824
|
|
17
|
-
tests/test_session_memory.py,sha256=
|
|
18
|
+
tests/test_session_memory.py,sha256=lw9SNuLSXDG6MNOBu_4kTPP0XgfZH6E8XCOT-Vrs78I,9786
|
|
18
19
|
tests/test_streaming.py,sha256=EBihBb_ZQiGCCvv7Us7YqHN4CxDIQy-XsUSDVO1n5wU,3302
|
|
19
20
|
tests/test_together.py,sha256=s0ywOxL-XT_iq970ucamVAPR_CIS9OT72vJB7degNdc,1983
|
|
20
21
|
tests/test_tools.py,sha256=869Fl54kmLc44ijykO2QpfcXyAWLDqJ9Niq3XNzhzv8,13621
|
|
@@ -23,31 +24,31 @@ tests/test_vhc.py,sha256=MXyFxckQzfdXcULqwoao4taoQ93qLDvkcf-h2LwUQnE,1974
|
|
|
23
24
|
tests/test_workflow.py,sha256=dwQnHSxvRMVqUtFV8O2KvuyaSKJXFDkVhcffn8mSuJs,3555
|
|
24
25
|
vectara_agentic/__init__.py,sha256=CfS3QR4drKygcTcyH5zUUDuXXQ3WZtTCytz8W4-loeE,1077
|
|
25
26
|
vectara_agentic/_callback.py,sha256=ueckIfLNa9ykmmEyLqrrZwfDNWrEfyZzJeWktpnkwJQ,12970
|
|
26
|
-
vectara_agentic/_observability.py,sha256=
|
|
27
|
-
vectara_agentic/_version.py,sha256=
|
|
28
|
-
vectara_agentic/agent.py,sha256=
|
|
27
|
+
vectara_agentic/_observability.py,sha256=rApfdndB2R021iM0xG4MumTSDX1Ba6qbNM0N_AOTbR0,4884
|
|
28
|
+
vectara_agentic/_version.py,sha256=AO7HR7HGdC4KVBKvdlO8C1VoiedQvDhEZLC7dDHiuJg,65
|
|
29
|
+
vectara_agentic/agent.py,sha256=7tXqdrUGZ0bGIpxoiM7K847o0ktiuwMZ-FmCb6N_4n0,47839
|
|
29
30
|
vectara_agentic/agent_config.py,sha256=njqEX2qHJjAp2KpNuJglgZhyWXPK74wjIjBPACD6w7w,4074
|
|
30
31
|
vectara_agentic/agent_endpoint.py,sha256=E_AF-YwxaKqd1-p43X62e1e4ugwOWKIyNq4RWOfsO7A,7402
|
|
31
32
|
vectara_agentic/db_tools.py,sha256=nVZkpGdG63ooGngjX9g7YWyBZRtYMDpvzNasbO696nM,11498
|
|
32
|
-
vectara_agentic/llm_utils.py,sha256=
|
|
33
|
-
vectara_agentic/sub_query_workflow.py,sha256=
|
|
33
|
+
vectara_agentic/llm_utils.py,sha256=Ac14_lHGvog-hYGGX4e7yZMRnp2ZXcPrpOnnUy7oBZE,7604
|
|
34
|
+
vectara_agentic/sub_query_workflow.py,sha256=1y0fBoUem4i-R34QYlSzcMwM8YhmYgj6S_bWynUtL6w,13001
|
|
34
35
|
vectara_agentic/tool_utils.py,sha256=whnQlk9coeIt01sqUnKnzUorefgn96yWqhtRfHxNL84,25921
|
|
35
|
-
vectara_agentic/tools.py,sha256=
|
|
36
|
+
vectara_agentic/tools.py,sha256=pb828u-tDps98N_R3U3_bCcnD9L3w5jdmhScduai74I,34852
|
|
36
37
|
vectara_agentic/tools_catalog.py,sha256=p6eRram-diJyMz5dZI703auSAm97FfW5wLAMyz_2sB0,4634
|
|
37
38
|
vectara_agentic/types.py,sha256=qKkK8vRNiLvEcMInMyOClK2bD7iFlrWGTkl3fGC6Xic,6117
|
|
38
39
|
vectara_agentic/utils.py,sha256=R9HitEG5K3Q_p2M_teosT181OUxkhs1-hnj98qDYGbE,2545
|
|
39
40
|
vectara_agentic/agent_core/__init__.py,sha256=R3KGbSOiY21FOjbeQ_GyIi6uR9Rz7PTfudO9RjSuEZQ,722
|
|
40
|
-
vectara_agentic/agent_core/factory.py,sha256=
|
|
41
|
-
vectara_agentic/agent_core/prompts.py,sha256=
|
|
42
|
-
vectara_agentic/agent_core/serialization.py,sha256=
|
|
43
|
-
vectara_agentic/agent_core/streaming.py,sha256=
|
|
41
|
+
vectara_agentic/agent_core/factory.py,sha256=Nmmhl98r2Op4qJwq9cgfy7DfrWI62JUfxFXHoBxKHBo,14158
|
|
42
|
+
vectara_agentic/agent_core/prompts.py,sha256=al7SF5pNzOG-KK0lCtTS-HCwVStB6yvE34dgHWJQ_bA,9989
|
|
43
|
+
vectara_agentic/agent_core/serialization.py,sha256=WwV40KGdN_cC6kACjdHuRCmyDBGhV5YOJ5KoHLXpSlg,12053
|
|
44
|
+
vectara_agentic/agent_core/streaming.py,sha256=ViCYos_08o-TQZtNORFs8gr5PNkN4X0hBTNVH32tNAw,17665
|
|
44
45
|
vectara_agentic/agent_core/utils/__init__.py,sha256=y5Xf0IH-5TRxMBRA9IyhmWnGZOVIyqV45P6lX4c2Qsc,762
|
|
45
46
|
vectara_agentic/agent_core/utils/hallucination.py,sha256=XmV7tW-MBN9BrzM79zu0T7zaWil7fIkNQjLfDZE43v4,5312
|
|
46
47
|
vectara_agentic/agent_core/utils/logging.py,sha256=-Ll8iUelml92WuhNWScuY6H-RheyZOTBHNxXQ1UGy0M,1701
|
|
47
48
|
vectara_agentic/agent_core/utils/schemas.py,sha256=e7xhJBevgK7IM8cRT5hoO67T-Ep_FhNGp72Zo0OC_Jo,2853
|
|
48
49
|
vectara_agentic/agent_core/utils/tools.py,sha256=k9Gm-UUQ3ZeGxrkjyrjmjcGxOkvnpylcm_Krnr-0fsY,4748
|
|
49
|
-
vectara_agentic-0.4.
|
|
50
|
-
vectara_agentic-0.4.
|
|
51
|
-
vectara_agentic-0.4.
|
|
52
|
-
vectara_agentic-0.4.
|
|
53
|
-
vectara_agentic-0.4.
|
|
50
|
+
vectara_agentic-0.4.2.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
51
|
+
vectara_agentic-0.4.2.dist-info/METADATA,sha256=QeXPh5PCHd76YKrrs7rI6hCYFGEWtJCYhZtPneWM5Gg,35010
|
|
52
|
+
vectara_agentic-0.4.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
53
|
+
vectara_agentic-0.4.2.dist-info/top_level.txt,sha256=Y7TQTFdOYGYodQRltUGRieZKIYuzeZj2kHqAUpfCUfg,22
|
|
54
|
+
vectara_agentic-0.4.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|