fyodorov-llm-agents 0.4.21__py3-none-any.whl → 0.4.23__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/models/llm_model.py +1 -7
- {fyodorov_llm_agents-0.4.21.dist-info → fyodorov_llm_agents-0.4.23.dist-info}/METADATA +1 -1
- {fyodorov_llm_agents-0.4.21.dist-info → fyodorov_llm_agents-0.4.23.dist-info}/RECORD +5 -5
- {fyodorov_llm_agents-0.4.21.dist-info → fyodorov_llm_agents-0.4.23.dist-info}/WHEEL +0 -0
- {fyodorov_llm_agents-0.4.21.dist-info → fyodorov_llm_agents-0.4.23.dist-info}/top_level.txt +0 -0
@@ -4,7 +4,7 @@ from fyodorov_llm_agents.providers.provider_model import Provider as ProviderTyp
|
|
4
4
|
class LLMModel(BaseModel):
|
5
5
|
id: int | None = None
|
6
6
|
name: str
|
7
|
-
provider:
|
7
|
+
provider: int | None = None
|
8
8
|
params: dict | None = None
|
9
9
|
mode: str = 'chat'
|
10
10
|
base_model: str
|
@@ -12,12 +12,6 @@ class LLMModel(BaseModel):
|
|
12
12
|
output_cost_per_token: float | None = None
|
13
13
|
max_tokens: int | None = None
|
14
14
|
|
15
|
-
@validator('provider')
|
16
|
-
def validate_provider(cls, v):
|
17
|
-
if v not in ProviderTypes:
|
18
|
-
raise ValueError('Invalid provider')
|
19
|
-
return str(v)
|
20
|
-
|
21
15
|
def to_dict(self):
|
22
16
|
return {
|
23
17
|
'name': self.name,
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: fyodorov_llm_agents
|
3
|
-
Version: 0.4.
|
3
|
+
Version: 0.4.23
|
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
|
@@ -4,14 +4,14 @@ fyodorov_llm_agents/agents/agent_service.py,sha256=qm3oGtgrbTV3LfmVYTIrZDs4Gwmgh
|
|
4
4
|
fyodorov_llm_agents/agents/openai.py,sha256=FA5RS7yn3JwvFA8PXju60XSYC_2oUZFNgBUzeIYtGv0,1154
|
5
5
|
fyodorov_llm_agents/instances/instance_model.py,sha256=Kdte858w9AtjgJHtYtuHO2D0pNg186JZZLCWZQPG4D0,1206
|
6
6
|
fyodorov_llm_agents/instances/instance_service.py,sha256=ssCBa2NqDw8sbreKozKMKsrIO4ZC9M_MEbFoSFyr9jY,8968
|
7
|
-
fyodorov_llm_agents/models/llm_model.py,sha256=
|
7
|
+
fyodorov_llm_agents/models/llm_model.py,sha256=MEn1L9-COo_8uQujtYXr5ZUsWtBj2kNAOK5J8s3ZKM4,1717
|
8
8
|
fyodorov_llm_agents/models/llm_service.py,sha256=L_YxZIotlPea0ymUfYXY24rdnCuZdOZEMTDrh8J_BAM,4562
|
9
9
|
fyodorov_llm_agents/providers/provider_model.py,sha256=i9aqtuMUERng54hOYTArt4aq0uU4b2wyCZCfJ39RbEI,957
|
10
10
|
fyodorov_llm_agents/providers/provider_service.py,sha256=pvb43ZdF8zFzgP2GELCSE8rDxjjsYe-s0RlcTa8vWIE,6588
|
11
11
|
fyodorov_llm_agents/tools/mcp_tool_model.py,sha256=JM4XItd9TEprDd7Xuz4hCYcPMRL2LVdJ3Fh7CoMug3A,5110
|
12
12
|
fyodorov_llm_agents/tools/mcp_tool_service.py,sha256=nOWeCXFP8t7pbFL4Co70c7ukEEl-TQbb1pnPHlG5Tac,7677
|
13
13
|
fyodorov_llm_agents/tools/tool.py,sha256=HyOk0X_3XE23sa8J-8UZx657tJ0sxwZWMbA4OPxXU6E,7940
|
14
|
-
fyodorov_llm_agents-0.4.
|
15
|
-
fyodorov_llm_agents-0.4.
|
16
|
-
fyodorov_llm_agents-0.4.
|
17
|
-
fyodorov_llm_agents-0.4.
|
14
|
+
fyodorov_llm_agents-0.4.23.dist-info/METADATA,sha256=dgzV7u7tVSHL1dI5RtCXbp4S5HpbvDC_Wcy75A4ksy8,551
|
15
|
+
fyodorov_llm_agents-0.4.23.dist-info/WHEEL,sha256=SmOxYU7pzNKBqASvQJ7DjX3XGUF92lrGhMb3R6_iiqI,91
|
16
|
+
fyodorov_llm_agents-0.4.23.dist-info/top_level.txt,sha256=4QOslsBp8Gh7ng25DceA7fHp4KguTIdAxwURz97gH-g,20
|
17
|
+
fyodorov_llm_agents-0.4.23.dist-info/RECORD,,
|
File without changes
|
File without changes
|