fyodorov-llm-agents 0.2.136__py3-none-any.whl → 0.2.138__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.
- fyodorov_llm_agents/tools/mcp_tool.py +4 -4
- {fyodorov_llm_agents-0.2.136.dist-info → fyodorov_llm_agents-0.2.138.dist-info}/METADATA +1 -1
- fyodorov_llm_agents-0.2.138.dist-info/RECORD +8 -0
- fyodorov_llm_agents-0.2.136.dist-info/RECORD +0 -8
- {fyodorov_llm_agents-0.2.136.dist-info → fyodorov_llm_agents-0.2.138.dist-info}/WHEEL +0 -0
- {fyodorov_llm_agents-0.2.136.dist-info → fyodorov_llm_agents-0.2.138.dist-info}/top_level.txt +0 -0
@@ -1,5 +1,5 @@
|
|
1
|
-
from pydantic import BaseModel,
|
2
|
-
from typing import
|
1
|
+
from pydantic import BaseModel, HttpUrl, Field
|
2
|
+
from typing import Optional, Dict, Any, Literal
|
3
3
|
import re
|
4
4
|
from datetime import datetime
|
5
5
|
|
@@ -19,13 +19,13 @@ class MCPTool(BaseModel):
|
|
19
19
|
created_at: Optional[datetime] = None # timestamptz
|
20
20
|
updated_at: Optional[datetime] = None # timestamptz
|
21
21
|
|
22
|
-
display_name: str = Field(..., max_length=MAX_DISPLAY_NAME_LENGTH)
|
22
|
+
display_name: Optional[str] = Field(..., max_length=MAX_DISPLAY_NAME_LENGTH)
|
23
23
|
handle: Optional[str] = None
|
24
24
|
description: Optional[str] = Field(None, max_length=MAX_DESCRIPTION_LENGTH)
|
25
25
|
logo_url: Optional[str] = None # stored as text; could be a URL
|
26
26
|
user_id: Optional[str] = None # uuid
|
27
27
|
|
28
|
-
public: bool = False
|
28
|
+
public: Optional[bool] = False
|
29
29
|
api_type: Optional[str] = None
|
30
30
|
api_url: Optional[str] = None # stored as text; could also be HttpUrl
|
31
31
|
auth_method: Optional[str] = None
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: fyodorov_llm_agents
|
3
|
-
Version: 0.2.
|
3
|
+
Version: 0.2.138
|
4
4
|
Summary: LLM agents for the Fyodorov AI suite
|
5
5
|
Author-email: Daniel Ransom <02masseur.alibis@icloud.com>
|
6
6
|
Project-URL: Homepage, https://github.com/FyodorovAI/fyodorov-llm-agents
|
@@ -0,0 +1,8 @@
|
|
1
|
+
fyodorov_llm_agents/agents/agent.py,sha256=W1VkCeKAN7PYabUFlrchmad91P4NFcuqr1rRquwH1hI,6564
|
2
|
+
fyodorov_llm_agents/agents/openai.py,sha256=FA5RS7yn3JwvFA8PXju60XSYC_2oUZFNgBUzeIYtGv0,1154
|
3
|
+
fyodorov_llm_agents/tools/mcp_tool.py,sha256=UdOuK-tneDjZoRr5Dsv4sa99SQD-jGRqdC6jNS7asg0,2828
|
4
|
+
fyodorov_llm_agents/tools/tool.py,sha256=HyOk0X_3XE23sa8J-8UZx657tJ0sxwZWMbA4OPxXU6E,7940
|
5
|
+
fyodorov_llm_agents-0.2.138.dist-info/METADATA,sha256=3-aMX_cHZtctUpp7K4HUyD2nD-QyApzGcWHMUg2Cj-k,552
|
6
|
+
fyodorov_llm_agents-0.2.138.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
7
|
+
fyodorov_llm_agents-0.2.138.dist-info/top_level.txt,sha256=4QOslsBp8Gh7ng25DceA7fHp4KguTIdAxwURz97gH-g,20
|
8
|
+
fyodorov_llm_agents-0.2.138.dist-info/RECORD,,
|
@@ -1,8 +0,0 @@
|
|
1
|
-
fyodorov_llm_agents/agents/agent.py,sha256=W1VkCeKAN7PYabUFlrchmad91P4NFcuqr1rRquwH1hI,6564
|
2
|
-
fyodorov_llm_agents/agents/openai.py,sha256=FA5RS7yn3JwvFA8PXju60XSYC_2oUZFNgBUzeIYtGv0,1154
|
3
|
-
fyodorov_llm_agents/tools/mcp_tool.py,sha256=nyqAqVLZODJOPbcfnBr302llnmLxDMwGZ_XsyEzjT_E,2827
|
4
|
-
fyodorov_llm_agents/tools/tool.py,sha256=HyOk0X_3XE23sa8J-8UZx657tJ0sxwZWMbA4OPxXU6E,7940
|
5
|
-
fyodorov_llm_agents-0.2.136.dist-info/METADATA,sha256=FoLoC2aYdVsWecs3rjtYshe1gclIIWQHrqKowZhu3oQ,552
|
6
|
-
fyodorov_llm_agents-0.2.136.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
7
|
-
fyodorov_llm_agents-0.2.136.dist-info/top_level.txt,sha256=4QOslsBp8Gh7ng25DceA7fHp4KguTIdAxwURz97gH-g,20
|
8
|
-
fyodorov_llm_agents-0.2.136.dist-info/RECORD,,
|
File without changes
|
{fyodorov_llm_agents-0.2.136.dist-info → fyodorov_llm_agents-0.2.138.dist-info}/top_level.txt
RENAMED
File without changes
|