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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: livellm
3
- Version: 1.5.3
3
+ Version: 1.5.5
4
4
  Summary: Python client for the LiveLLM Server
5
5
  Project-URL: Homepage, https://github.com/qalby-tech/livellm-client-py
6
6
  Project-URL: Repository, https://github.com/qalby-tech/livellm-client-py
@@ -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")
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "livellm"
3
- version = "1.5.3"
3
+ version = "1.5.5"
4
4
  description = "Python client for the LiveLLM Server"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.10"
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes