langroid 0.50.4__py3-none-any.whl → 0.50.5__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.
- langroid/agent/chat_document.py +8 -0
- {langroid-0.50.4.dist-info → langroid-0.50.5.dist-info}/METADATA +1 -1
- {langroid-0.50.4.dist-info → langroid-0.50.5.dist-info}/RECORD +5 -5
- {langroid-0.50.4.dist-info → langroid-0.50.5.dist-info}/WHEEL +0 -0
- {langroid-0.50.4.dist-info → langroid-0.50.5.dist-info}/licenses/LICENSE +0 -0
langroid/agent/chat_document.py
CHANGED
@@ -215,9 +215,17 @@ class ChatDocument(Document):
|
|
215
215
|
"""
|
216
216
|
tool_type = "" # FUNC or TOOL
|
217
217
|
tool = "" # tool name or function name
|
218
|
+
oai_tools = (
|
219
|
+
[]
|
220
|
+
if self.oai_tool_calls is None
|
221
|
+
else [t for t in self.oai_tool_calls if t.function is not None]
|
222
|
+
)
|
218
223
|
if self.function_call is not None:
|
219
224
|
tool_type = "FUNC"
|
220
225
|
tool = self.function_call.name
|
226
|
+
elif len(oai_tools) > 0:
|
227
|
+
tool_type = "OAI_TOOL"
|
228
|
+
tool = ",".join(t.function.name for t in oai_tools) # type: ignore
|
221
229
|
else:
|
222
230
|
try:
|
223
231
|
json_tools = self.get_tool_names()
|
@@ -6,7 +6,7 @@ langroid/agent/__init__.py,sha256=ll0Cubd2DZ-fsCMl7e10hf9ZjFGKzphfBco396IKITY,78
|
|
6
6
|
langroid/agent/base.py,sha256=bs5OLCf534mhsdR7Rgf27GqVNuSV2bOVbD46Y86mGFA,79829
|
7
7
|
langroid/agent/batch.py,sha256=vi1r5i1-vN80WfqHDSwjEym_KfGsqPGUtwktmiK1nuk,20635
|
8
8
|
langroid/agent/chat_agent.py,sha256=m1alf-KNJSU6PeFF6ocwTHSG0cmTE-iy1o7UYAvRGQE,85081
|
9
|
-
langroid/agent/chat_document.py,sha256=
|
9
|
+
langroid/agent/chat_document.py,sha256=T7ybVjpQezlMxTB0OylROI0XfrYVIF9NUKkepKeR_wU,18199
|
10
10
|
langroid/agent/openai_assistant.py,sha256=JkAcs02bIrgPNVvUWVR06VCthc5-ulla2QMBzux_q6o,34340
|
11
11
|
langroid/agent/task.py,sha256=HB6N-Jn80HFqCf0ZYOC1v3Bn3oO7NLjShHQJJFwW0q4,90557
|
12
12
|
langroid/agent/tool_message.py,sha256=BhjP-_TfQ2tgxuY4Yo_JHLOwwt0mJ4BwjPnREvEY4vk,14744
|
@@ -129,7 +129,7 @@ langroid/vector_store/pineconedb.py,sha256=otxXZNaBKb9f_H75HTaU3lMHiaR2NUp5MqwLZ
|
|
129
129
|
langroid/vector_store/postgres.py,sha256=wHPtIi2qM4fhO4pMQr95pz1ZCe7dTb2hxl4VYspGZoA,16104
|
130
130
|
langroid/vector_store/qdrantdb.py,sha256=O6dSBoDZ0jzfeVBd7LLvsXu083xs2fxXtPa9gGX3JX4,18443
|
131
131
|
langroid/vector_store/weaviatedb.py,sha256=Yn8pg139gOy3zkaPfoTbMXEEBCiLiYa1MU5d_3UA1K4,11847
|
132
|
-
langroid-0.50.
|
133
|
-
langroid-0.50.
|
134
|
-
langroid-0.50.
|
135
|
-
langroid-0.50.
|
132
|
+
langroid-0.50.5.dist-info/METADATA,sha256=-9cQads1gvMq_WSH3f9mcoe9agU5RkRHIg6yndUIhu0,63641
|
133
|
+
langroid-0.50.5.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
134
|
+
langroid-0.50.5.dist-info/licenses/LICENSE,sha256=EgVbvA6VSYgUlvC3RvPKehSg7MFaxWDsFuzLOsPPfJg,1065
|
135
|
+
langroid-0.50.5.dist-info/RECORD,,
|
File without changes
|
File without changes
|