livellm 1.5.3__tar.gz → 1.5.5__tar.gz
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.
- {livellm-1.5.3 → livellm-1.5.5}/PKG-INFO +1 -1
- {livellm-1.5.3 → livellm-1.5.5}/livellm/livellm.py +1 -1
- {livellm-1.5.3 → livellm-1.5.5}/livellm/models/agent/agent.py +1 -1
- {livellm-1.5.3 → livellm-1.5.5}/pyproject.toml +1 -1
- {livellm-1.5.3 → livellm-1.5.5}/.gitignore +0 -0
- {livellm-1.5.3 → livellm-1.5.5}/LICENSE +0 -0
- {livellm-1.5.3 → livellm-1.5.5}/README.md +0 -0
- {livellm-1.5.3 → livellm-1.5.5}/livellm/__init__.py +0 -0
- {livellm-1.5.3 → livellm-1.5.5}/livellm/models/__init__.py +0 -0
- {livellm-1.5.3 → livellm-1.5.5}/livellm/models/agent/__init__.py +0 -0
- {livellm-1.5.3 → livellm-1.5.5}/livellm/models/agent/chat.py +0 -0
- {livellm-1.5.3 → livellm-1.5.5}/livellm/models/agent/tools.py +0 -0
- {livellm-1.5.3 → livellm-1.5.5}/livellm/models/audio/__init__.py +0 -0
- {livellm-1.5.3 → livellm-1.5.5}/livellm/models/audio/speak.py +0 -0
- {livellm-1.5.3 → livellm-1.5.5}/livellm/models/audio/transcribe.py +0 -0
- {livellm-1.5.3 → livellm-1.5.5}/livellm/models/common.py +0 -0
- {livellm-1.5.3 → livellm-1.5.5}/livellm/models/fallback.py +0 -0
- {livellm-1.5.3 → livellm-1.5.5}/livellm/models/transcription.py +0 -0
- {livellm-1.5.3 → livellm-1.5.5}/livellm/models/ws.py +0 -0
- {livellm-1.5.3 → livellm-1.5.5}/livellm/py.typed +0 -0
- {livellm-1.5.3 → livellm-1.5.5}/livellm/transcripton.py +0 -0
|
@@ -880,7 +880,7 @@ class LivellmClient(BaseLivellmClient):
|
|
|
880
880
|
with httpx.Client(base_url=self.base_url) as client:
|
|
881
881
|
for config in self.settings:
|
|
882
882
|
config: Settings = config
|
|
883
|
-
client.delete("providers/config/{config.uid}", headers=self.headers)
|
|
883
|
+
client.delete(f"providers/config/{config.uid}", headers=self.headers)
|
|
884
884
|
except Exception:
|
|
885
885
|
# Silently fail - we're in a destructor
|
|
886
886
|
pass
|
|
@@ -9,7 +9,7 @@ from ..common import BaseRequest
|
|
|
9
9
|
|
|
10
10
|
class AgentRequest(BaseRequest):
|
|
11
11
|
model: str = Field(..., description="The model to use")
|
|
12
|
-
messages: List[Union[TextMessage, BinaryMessage]] = Field(..., description="The messages to use")
|
|
12
|
+
messages: List[Union[TextMessage, BinaryMessage, ToolCallMessage, ToolReturnMessage]] = Field(..., description="The messages to use")
|
|
13
13
|
tools: List[Union[WebSearchInput, MCPStreamableServerInput]] = Field(default_factory=list, description="The tools to use")
|
|
14
14
|
gen_config: Optional[dict] = Field(default=None, description="The configuration for the generation")
|
|
15
15
|
include_history: bool = Field(default=False, description="Whether to include full conversation history in the response")
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|