vectara-agentic 0.1.0__py3-none-any.whl → 0.1.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.
- vectara_agentic/_callback.py +4 -2
- vectara_agentic/agent.py +26 -16
- vectara_agentic/tools.py +54 -37
- vectara_agentic/tools_catalog.py +41 -10
- {vectara_agentic-0.1.0.dist-info → vectara_agentic-0.1.2.dist-info}/METADATA +25 -25
- vectara_agentic-0.1.2.dist-info/RECORD +13 -0
- {vectara_agentic-0.1.0.dist-info → vectara_agentic-0.1.2.dist-info}/WHEEL +1 -1
- vectara_agentic-0.1.0.dist-info/RECORD +0 -13
- {vectara_agentic-0.1.0.dist-info → vectara_agentic-0.1.2.dist-info}/LICENSE +0 -0
- {vectara_agentic-0.1.0.dist-info → vectara_agentic-0.1.2.dist-info}/top_level.txt +0 -0
vectara_agentic/_callback.py
CHANGED
|
@@ -11,13 +11,15 @@ from .types import AgentStatusType
|
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
class AgentCallbackHandler(BaseCallbackHandler):
|
|
14
|
-
"""
|
|
14
|
+
"""
|
|
15
|
+
Callback handler to track agent status
|
|
15
16
|
|
|
16
17
|
This handler simply keeps track of event starts/ends, separated by event types.
|
|
17
18
|
You can use this callback handler to keep track of agent progress.
|
|
18
19
|
|
|
19
20
|
Args:
|
|
20
|
-
|
|
21
|
+
|
|
22
|
+
fn: callable function agent will call back to report on agent progress
|
|
21
23
|
"""
|
|
22
24
|
|
|
23
25
|
def __init__(self, fn: Callable = None) -> None:
|
vectara_agentic/agent.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
"""
|
|
1
|
+
"""
|
|
2
2
|
This module contains the Agent class for handling different types of agents and their interactions.
|
|
3
3
|
"""
|
|
4
4
|
|
|
@@ -26,9 +26,11 @@ load_dotenv(override=True)
|
|
|
26
26
|
|
|
27
27
|
|
|
28
28
|
def get_prompt(prompt_template: str, topic: str, custom_instructions: str):
|
|
29
|
-
"""
|
|
29
|
+
"""
|
|
30
|
+
Generate a prompt by replacing placeholders with topic and date.
|
|
30
31
|
|
|
31
32
|
Args:
|
|
33
|
+
|
|
32
34
|
prompt_template (str): The template for the prompt.
|
|
33
35
|
topic (str): The topic to be included in the prompt.
|
|
34
36
|
|
|
@@ -50,7 +52,9 @@ def retry_if_exception(exception):
|
|
|
50
52
|
|
|
51
53
|
|
|
52
54
|
class Agent:
|
|
53
|
-
"""
|
|
55
|
+
"""
|
|
56
|
+
Agent class for handling different types of agents and their interactions.
|
|
57
|
+
"""
|
|
54
58
|
|
|
55
59
|
def __init__(
|
|
56
60
|
self,
|
|
@@ -59,13 +63,15 @@ class Agent:
|
|
|
59
63
|
custom_instructions: str = "",
|
|
60
64
|
update_func: Optional[Callable[[AgentStatusType, str], None]] = None,
|
|
61
65
|
):
|
|
62
|
-
"""
|
|
66
|
+
"""
|
|
67
|
+
Initialize the agent with the specified type, tools, topic, and system message.
|
|
63
68
|
|
|
64
69
|
Args:
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
70
|
+
|
|
71
|
+
tools (list[FunctionTool]): A list of tools to be used by the agent.
|
|
72
|
+
topic (str, optional): The topic for the agent. Defaults to 'general'.
|
|
73
|
+
custom_instructions (str, optional): custom instructions for the agent. Defaults to ''.
|
|
74
|
+
update_func (Callable): a callback function the code calls on any agent updates.
|
|
69
75
|
"""
|
|
70
76
|
self.agent_type = AgentType(os.getenv("VECTARA_AGENTIC_AGENT_TYPE", "OPENAI"))
|
|
71
77
|
self.tools = tools
|
|
@@ -110,21 +116,24 @@ class Agent:
|
|
|
110
116
|
custom_instructions: str = "",
|
|
111
117
|
update_func: Optional[Callable[[AgentStatusType, str], None]] = None,
|
|
112
118
|
) -> "Agent":
|
|
113
|
-
"""
|
|
119
|
+
"""
|
|
120
|
+
Create an agent from tools, agent type, and language model.
|
|
114
121
|
|
|
115
122
|
Args:
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
123
|
+
|
|
124
|
+
tools (list[FunctionTool]): A list of tools to be used by the agent.
|
|
125
|
+
topic (str, optional): The topic for the agent. Defaults to 'general'.
|
|
126
|
+
custom_instructions (str, optional): custom instructions for the agent. Defaults to ''.
|
|
127
|
+
llm (LLM): The language model to be used by the agent.
|
|
120
128
|
|
|
121
129
|
Returns:
|
|
122
|
-
|
|
130
|
+
Agent: An instance of the Agent class.
|
|
123
131
|
"""
|
|
124
132
|
return cls(tools, topic, custom_instructions, update_func)
|
|
125
133
|
|
|
126
134
|
def report(self) -> str:
|
|
127
|
-
"""
|
|
135
|
+
"""
|
|
136
|
+
Get a report from the agent.
|
|
128
137
|
|
|
129
138
|
Returns:
|
|
130
139
|
str: The report from the agent.
|
|
@@ -144,7 +153,8 @@ class Agent:
|
|
|
144
153
|
wait_fixed=2000,
|
|
145
154
|
)
|
|
146
155
|
def chat(self, prompt: str) -> str:
|
|
147
|
-
"""
|
|
156
|
+
"""
|
|
157
|
+
Interact with the agent using a chat prompt.
|
|
148
158
|
|
|
149
159
|
Args:
|
|
150
160
|
prompt (str): The chat prompt.
|
vectara_agentic/tools.py
CHANGED
|
@@ -51,7 +51,7 @@ LI_packages = {
|
|
|
51
51
|
|
|
52
52
|
class VectaraTool:
|
|
53
53
|
"""
|
|
54
|
-
A wrapper of
|
|
54
|
+
A wrapper of FunctionTool class for Vectara tools, adding the tool_type attribute.
|
|
55
55
|
"""
|
|
56
56
|
|
|
57
57
|
def __init__(self, function_tool: FunctionTool, tool_type: ToolType) -> None:
|
|
@@ -99,21 +99,25 @@ class VectaraToolFactory:
|
|
|
99
99
|
"""
|
|
100
100
|
Creates a RAG (Retrieve and Generate) tool.
|
|
101
101
|
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
102
|
+
Args:
|
|
103
|
+
|
|
104
|
+
tool_name (str): The name of the tool.
|
|
105
|
+
tool_description (str): The description of the tool.
|
|
106
|
+
tool_args_schema (BaseModel): The schema for the tool arguments.
|
|
107
|
+
vectara_summarizer (str): The Vectara summarizer to use.
|
|
108
|
+
summary_num_results (int): The number of summary results.
|
|
109
|
+
summary_response_lang (str): The response language for the summary.
|
|
110
|
+
n_sentences_before (int): Number of sentences before the summary.
|
|
111
|
+
n_sentences_after (int): Number of sentences after the summary.
|
|
112
|
+
lambda_val (float): Lambda value for the Vectara query.
|
|
113
|
+
reranker (str): The reranker mode.
|
|
114
|
+
rerank_k (int): Number of top-k documents for reranking.
|
|
115
|
+
mmr_diversity_bias (float): MMR diversity bias.
|
|
116
|
+
include_citations (bool): Whether to include citations in the response.
|
|
117
|
+
If True, uses MARKDOWN vectara citations that requires the Vectara scale plan.
|
|
118
|
+
|
|
119
|
+
Returns:
|
|
120
|
+
VectaraTool: A VectaraTool object.
|
|
117
121
|
"""
|
|
118
122
|
vectara = VectaraIndex(
|
|
119
123
|
vectara_api_key=self.vectara_api_key,
|
|
@@ -133,7 +137,9 @@ class VectaraToolFactory:
|
|
|
133
137
|
|
|
134
138
|
# Dynamically generate the RAG function
|
|
135
139
|
def rag_function(*args, **kwargs) -> dict[str, Any]:
|
|
136
|
-
"""
|
|
140
|
+
"""
|
|
141
|
+
Dynamically generated function for RAG query with Vectara.
|
|
142
|
+
"""
|
|
137
143
|
# Convert args to kwargs using the function signature
|
|
138
144
|
sig = inspect.signature(rag_function)
|
|
139
145
|
bound_args = sig.bind_partial(*args, **kwargs)
|
|
@@ -249,7 +255,7 @@ class VectaraToolFactory:
|
|
|
249
255
|
|
|
250
256
|
class ToolsFactory:
|
|
251
257
|
"""
|
|
252
|
-
A factory class for creating agent tools
|
|
258
|
+
A factory class for creating agent tools.
|
|
253
259
|
"""
|
|
254
260
|
|
|
255
261
|
def create_tool(
|
|
@@ -258,9 +264,12 @@ class ToolsFactory:
|
|
|
258
264
|
"""
|
|
259
265
|
Create a tool from a function.
|
|
260
266
|
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
267
|
+
Args:
|
|
268
|
+
function (Callable): a function to convert into a tool.
|
|
269
|
+
tool_type (ToolType): the type of tool.
|
|
270
|
+
|
|
271
|
+
Returns:
|
|
272
|
+
List[FunctionTool]: A list of FunctionTool objects.
|
|
264
273
|
"""
|
|
265
274
|
return VectaraTool(FunctionTool.from_defaults(function), tool_type)
|
|
266
275
|
|
|
@@ -275,10 +284,13 @@ class ToolsFactory:
|
|
|
275
284
|
Get a tool from the llama_index hub.
|
|
276
285
|
|
|
277
286
|
Parameters:
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
287
|
+
tool_package_name (str): The name of the tool package.
|
|
288
|
+
tool_spec_name (str): The name of the tool spec.
|
|
289
|
+
tool_name_prefix (str): The prefix to add to the tool names (added to every tool in the spec).
|
|
290
|
+
kwargs (dict): The keyword arguments to pass to the tool constructor (see Hub for tool specific details).
|
|
291
|
+
|
|
292
|
+
Returns:
|
|
293
|
+
list[FunctionTool]: A list of FunctionTool objects.
|
|
282
294
|
"""
|
|
283
295
|
# Dynamically install and import the module
|
|
284
296
|
if tool_package_name not in LI_packages.keys():
|
|
@@ -341,7 +353,7 @@ class ToolsFactory:
|
|
|
341
353
|
text: str = Field(description="the original text."),
|
|
342
354
|
) -> str:
|
|
343
355
|
"""
|
|
344
|
-
|
|
356
|
+
Critique the legal document.
|
|
345
357
|
"""
|
|
346
358
|
return critique_text(
|
|
347
359
|
text,
|
|
@@ -369,18 +381,23 @@ class ToolsFactory:
|
|
|
369
381
|
dbname: str = "postgres",
|
|
370
382
|
) -> List[FunctionTool]:
|
|
371
383
|
"""
|
|
372
|
-
|
|
384
|
+
Returns a list of database tools.
|
|
385
|
+
|
|
373
386
|
Args:
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
387
|
+
|
|
388
|
+
tool_name_prefix (str, optional): The prefix to add to the tool names. Defaults to "".
|
|
389
|
+
content_description (str, optional): The content description for the database. Defaults to None.
|
|
390
|
+
sql_database (SQLDatabase, optional): The SQLDatabase object. Defaults to None.
|
|
391
|
+
scheme (str, optional): The database scheme. Defaults to None.
|
|
392
|
+
host (str, optional): The database host. Defaults to "localhost".
|
|
393
|
+
port (str, optional): The database port. Defaults to "5432".
|
|
394
|
+
user (str, optional): The database user. Defaults to "postgres".
|
|
395
|
+
password (str, optional): The database password. Defaults to "Password".
|
|
396
|
+
dbname (str, optional): The database name. Defaults to "postgres".
|
|
397
|
+
You must specify either the sql_database object or the scheme, host, port, user, password, and dbname.
|
|
398
|
+
|
|
399
|
+
Returns:
|
|
400
|
+
List[FunctionTool]: A list of FunctionTool objects.
|
|
384
401
|
"""
|
|
385
402
|
if sql_database:
|
|
386
403
|
tools = self.get_llama_index_tools(
|
vectara_agentic/tools_catalog.py
CHANGED
|
@@ -22,7 +22,6 @@ get_headers = {
|
|
|
22
22
|
#
|
|
23
23
|
# Standard Tools
|
|
24
24
|
#
|
|
25
|
-
|
|
26
25
|
def summarize_text(
|
|
27
26
|
text: str = Field(description="the original text."),
|
|
28
27
|
expertise: str = Field(
|
|
@@ -30,9 +29,16 @@ def summarize_text(
|
|
|
30
29
|
),
|
|
31
30
|
) -> str:
|
|
32
31
|
"""
|
|
33
|
-
This is a helper tool.
|
|
34
|
-
Use this tool to summarize text
|
|
35
|
-
characters.
|
|
32
|
+
This is a helper tool.
|
|
33
|
+
Use this tool to summarize text using a given expertise
|
|
34
|
+
with no more than summary_max_length characters.
|
|
35
|
+
|
|
36
|
+
Args:
|
|
37
|
+
text (str): The original text.
|
|
38
|
+
expertise (str): The expertise to apply to the summarization.
|
|
39
|
+
|
|
40
|
+
Returns:
|
|
41
|
+
str: The summarized text.
|
|
36
42
|
"""
|
|
37
43
|
expertise = "general" if len(expertise) < 3 else expertise.lower()
|
|
38
44
|
prompt = f"As an expert in {expertise}, summarize the provided text"
|
|
@@ -50,9 +56,16 @@ def rephrase_text(
|
|
|
50
56
|
),
|
|
51
57
|
) -> str:
|
|
52
58
|
"""
|
|
53
|
-
This is a helper tool.
|
|
59
|
+
This is a helper tool.
|
|
54
60
|
Use this tool to rephrase the text according to the provided instructions.
|
|
55
61
|
For example, instructions could be "as a 5 year old would say it."
|
|
62
|
+
|
|
63
|
+
Args:
|
|
64
|
+
text (str): The original text.
|
|
65
|
+
instructions (str): The specific instructions for how to rephrase the text.
|
|
66
|
+
|
|
67
|
+
Returns:
|
|
68
|
+
str: The rephrased text.
|
|
56
69
|
"""
|
|
57
70
|
prompt = f"""
|
|
58
71
|
Rephrase the provided text according to the following instructions: {instructions}.
|
|
@@ -75,8 +88,16 @@ def critique_text(
|
|
|
75
88
|
),
|
|
76
89
|
) -> str:
|
|
77
90
|
"""
|
|
78
|
-
This is a helper tool.
|
|
91
|
+
This is a helper tool.
|
|
79
92
|
Critique the text from the specified point of view.
|
|
93
|
+
|
|
94
|
+
Args:
|
|
95
|
+
text (str): The original text.
|
|
96
|
+
role (str): The role of the person providing critique.
|
|
97
|
+
point_of_view (str): The point of view with which to provide critique.
|
|
98
|
+
|
|
99
|
+
Returns:
|
|
100
|
+
str: The critique of the text.
|
|
80
101
|
"""
|
|
81
102
|
if role:
|
|
82
103
|
prompt = f"As a {role}, critique the provided text from the point of view of {point_of_view}."
|
|
@@ -94,12 +115,16 @@ def critique_text(
|
|
|
94
115
|
#
|
|
95
116
|
# Guardrails tools
|
|
96
117
|
#
|
|
97
|
-
|
|
98
|
-
|
|
99
118
|
def guardrails_no_politics(text: str = Field(description="the original text.")) -> str:
|
|
100
119
|
"""
|
|
101
120
|
A guardrails tool.
|
|
102
|
-
|
|
121
|
+
Given the input text, rephrases the text to ensure that the response avoids any specific political content.
|
|
122
|
+
|
|
123
|
+
Args:
|
|
124
|
+
text (str): The original text.
|
|
125
|
+
|
|
126
|
+
Returns:
|
|
127
|
+
str: The rephrased text.
|
|
103
128
|
"""
|
|
104
129
|
return rephrase_text(text, "avoid any specific political content.")
|
|
105
130
|
|
|
@@ -107,6 +132,12 @@ def guardrails_no_politics(text: str = Field(description="the original text."))
|
|
|
107
132
|
def guardrails_be_polite(text: str = Field(description="the original text.")) -> str:
|
|
108
133
|
"""
|
|
109
134
|
A guardrails tool.
|
|
110
|
-
|
|
135
|
+
Given the input text, rephrases the text to ensure that the response is polite.
|
|
136
|
+
|
|
137
|
+
Args:
|
|
138
|
+
text (str): The original text.
|
|
139
|
+
|
|
140
|
+
Returns:
|
|
141
|
+
str: The rephrased text.
|
|
111
142
|
"""
|
|
112
143
|
return rephrase_text(text, "Ensure the response is super polite.")
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
|
-
Name:
|
|
3
|
-
Version: 0.1.
|
|
2
|
+
Name: vectara_agentic
|
|
3
|
+
Version: 0.1.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
|
|
@@ -11,26 +11,27 @@ Classifier: Operating System :: OS Independent
|
|
|
11
11
|
Requires-Python: >=3.10
|
|
12
12
|
Description-Content-Type: text/markdown
|
|
13
13
|
License-File: LICENSE
|
|
14
|
-
Requires-Dist: llama-index
|
|
15
|
-
Requires-Dist: llama-index-indices-managed-vectara
|
|
16
|
-
Requires-Dist: llama-index-agent-llm-compiler
|
|
17
|
-
Requires-Dist: llama-index-agent-openai
|
|
18
|
-
Requires-Dist: llama-index-llms-openai
|
|
19
|
-
Requires-Dist: llama-index-llms-anthropic
|
|
20
|
-
Requires-Dist: llama-index-llms-together
|
|
21
|
-
Requires-Dist: llama-index-llms-groq
|
|
22
|
-
Requires-Dist: llama-index-tools-yahoo-finance
|
|
23
|
-
Requires-Dist: llama-index-tools-arxiv
|
|
24
|
-
Requires-Dist: llama-index-tools-database
|
|
25
|
-
Requires-Dist: llama-index-tools-google
|
|
26
|
-
Requires-Dist: llama-index-tools-tavily-research
|
|
27
|
-
Requires-Dist: llama-index-llms-fireworks
|
|
28
|
-
Requires-Dist: pydantic
|
|
29
|
-
Requires-Dist: retrying
|
|
30
|
-
Requires-Dist: mypy
|
|
31
|
-
Requires-Dist: pylint
|
|
32
|
-
Requires-Dist: flake8
|
|
33
|
-
Requires-Dist: pymongo
|
|
14
|
+
Requires-Dist: llama-index ==0.10.64
|
|
15
|
+
Requires-Dist: llama-index-indices-managed-vectara ==0.1.7
|
|
16
|
+
Requires-Dist: llama-index-agent-llm-compiler ==0.1.0
|
|
17
|
+
Requires-Dist: llama-index-agent-openai ==0.2.9
|
|
18
|
+
Requires-Dist: llama-index-llms-openai ==0.1.29
|
|
19
|
+
Requires-Dist: llama-index-llms-anthropic ==0.1.17
|
|
20
|
+
Requires-Dist: llama-index-llms-together ==0.1.3
|
|
21
|
+
Requires-Dist: llama-index-llms-groq ==0.1.4
|
|
22
|
+
Requires-Dist: llama-index-tools-yahoo-finance ==0.1.1
|
|
23
|
+
Requires-Dist: llama-index-tools-arxiv ==0.1.3
|
|
24
|
+
Requires-Dist: llama-index-tools-database ==0.1.3
|
|
25
|
+
Requires-Dist: llama-index-tools-google ==0.1.6
|
|
26
|
+
Requires-Dist: llama-index-tools-tavily-research ==0.1.3
|
|
27
|
+
Requires-Dist: llama-index-llms-fireworks ==0.1.8
|
|
28
|
+
Requires-Dist: pydantic ==1.10.17
|
|
29
|
+
Requires-Dist: retrying ==1.3.4
|
|
30
|
+
Requires-Dist: mypy ==1.11.0
|
|
31
|
+
Requires-Dist: pylint ==3.2.6
|
|
32
|
+
Requires-Dist: flake8 ==7.1.0
|
|
33
|
+
Requires-Dist: pymongo ==4.6.1
|
|
34
|
+
Requires-Dist: python-dotenv ==1.0.1
|
|
34
35
|
|
|
35
36
|
# vectara-agentic
|
|
36
37
|
|
|
@@ -138,15 +139,12 @@ mult_tool = ToolsFactory().create_tool(mult_func)
|
|
|
138
139
|
|
|
139
140
|
```python
|
|
140
141
|
agent = Agent(
|
|
141
|
-
agent_type = agent_type,
|
|
142
142
|
tools = tools,
|
|
143
143
|
topic = topic_of_expertise
|
|
144
144
|
custom_instructions = financial_bot_instructions,
|
|
145
145
|
update_func = update_func
|
|
146
146
|
)
|
|
147
147
|
```
|
|
148
|
-
|
|
149
|
-
- `agent_type` is one of `AgentType.REACT` or `AgentTypeOpenAI`
|
|
150
148
|
- `tools` is the list of tools you want to provide to the agent
|
|
151
149
|
- `topic` is a string that defines the expertise you want the agent to specialize in.
|
|
152
150
|
- `custom_instructions` is an optional string that defines special instructions to the agent
|
|
@@ -154,6 +152,8 @@ agent = Agent(
|
|
|
154
152
|
The inputs to this function you provide are `status_type` of type AgentStatusType and
|
|
155
153
|
`msg` which is a string.
|
|
156
154
|
|
|
155
|
+
Note that the Agent type (`OPENAI` or `REACT`) is defined as an environment variables `VECTARA_AGENTIC_AGENT_TYPE`.
|
|
156
|
+
|
|
157
157
|
For example, for a financial agent we can use:
|
|
158
158
|
|
|
159
159
|
```python
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
vectara_agentic/__init__.py,sha256=CRKtLZdGj_s9ynKBOVkT_Qqhm7WwxGpZGzyeHZG-1aI,432
|
|
2
|
+
vectara_agentic/_callback.py,sha256=3phD394HQICg5BWpMTE3a7DUUVl5NWVIkdgCDytS0gc,3564
|
|
3
|
+
vectara_agentic/_prompts.py,sha256=u8HqpfV42fdBUf3ZNjDm5kPJXNncLSTWU-4Js7-ipEA,4152
|
|
4
|
+
vectara_agentic/agent.py,sha256=PXKsFe3IKHkypkErzQZclxgRVI_d_kRwy1KsBTjIhKc,5846
|
|
5
|
+
vectara_agentic/tools.py,sha256=79dZX2BBJeML9KglFlXiGxzfyUaoyX63DLwuexAQ8NE,16250
|
|
6
|
+
vectara_agentic/tools_catalog.py,sha256=Wc-j7p6LG4420KmM8SUKFtgI2b1IwryXqbALGDEvmAI,4266
|
|
7
|
+
vectara_agentic/types.py,sha256=CFjjxaYhflsFDsE2ZNrZgWqman_r2HJQ-nOvuUiX3IY,804
|
|
8
|
+
vectara_agentic/utils.py,sha256=8YqxRqgm6qbjoH-LotpeHRjKWRejn9VJoqM5BbsD0NU,2408
|
|
9
|
+
vectara_agentic-0.1.2.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
10
|
+
vectara_agentic-0.1.2.dist-info/METADATA,sha256=asCd6Xyvvro5QwLslt9rk-2i6DlXXnnliFH1oY33LOk,10183
|
|
11
|
+
vectara_agentic-0.1.2.dist-info/WHEEL,sha256=R0nc6qTxuoLk7ShA2_Y-UWkN8ZdfDBG2B6Eqpz2WXbs,91
|
|
12
|
+
vectara_agentic-0.1.2.dist-info/top_level.txt,sha256=qT7JB9Xz7byehzlPd_rY4WWEAvPMhs63WMWgPsFthxU,16
|
|
13
|
+
vectara_agentic-0.1.2.dist-info/RECORD,,
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
vectara_agentic/__init__.py,sha256=CRKtLZdGj_s9ynKBOVkT_Qqhm7WwxGpZGzyeHZG-1aI,432
|
|
2
|
-
vectara_agentic/_callback.py,sha256=JQbkAnbhLOreTNkWXXhqr6aery-HxjXhlYUy9EotIC8,3552
|
|
3
|
-
vectara_agentic/_prompts.py,sha256=u8HqpfV42fdBUf3ZNjDm5kPJXNncLSTWU-4Js7-ipEA,4152
|
|
4
|
-
vectara_agentic/agent.py,sha256=CQNvRa9KmBfBMDIjB7NrXfvKuW0bqXEI01JXEZnjvAs,5774
|
|
5
|
-
vectara_agentic/tools.py,sha256=22zFbW6MQd5M92AjD40raFY0266Ytc1BchXNhDjzcVw,15849
|
|
6
|
-
vectara_agentic/tools_catalog.py,sha256=b5EYKs65v9ykZAPiSDzY3o6t5FMyt088Li0_FSCdx0Y,3518
|
|
7
|
-
vectara_agentic/types.py,sha256=CFjjxaYhflsFDsE2ZNrZgWqman_r2HJQ-nOvuUiX3IY,804
|
|
8
|
-
vectara_agentic/utils.py,sha256=8YqxRqgm6qbjoH-LotpeHRjKWRejn9VJoqM5BbsD0NU,2408
|
|
9
|
-
vectara_agentic-0.1.0.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
10
|
-
vectara_agentic-0.1.0.dist-info/METADATA,sha256=4WiXFug8-GeNBjIX_OdifrlPg1Tasfh4xEzRIG2X7jA,10163
|
|
11
|
-
vectara_agentic-0.1.0.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
|
|
12
|
-
vectara_agentic-0.1.0.dist-info/top_level.txt,sha256=qT7JB9Xz7byehzlPd_rY4WWEAvPMhs63WMWgPsFthxU,16
|
|
13
|
-
vectara_agentic-0.1.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|