Skip to content

Commit

Permalink
Release 1.0.5 (#1989)
Browse files Browse the repository at this point in the history
# Changelog

## New Features:

- **Gmail Tools →** Add tools for Gmail, including mail search, sending
mails, etc.

## Improvements:

- **Exa Toolkit Upgrade →** Added `find_similar` to `ExaTools`
- **Claude Async** → Claude models can now be used with `await
agent.aprint_response()` and `await agent.arun()`.
- **Mistral Vision** → Mistral vision models are now supported. Various
examples were added to illustrate.
  • Loading branch information
dirkbrnd authored Feb 3, 2025
1 parent a6c3782 commit 5876d00
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion libs/agno/agno/models/openai/chat.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,8 @@ def get_client(self) -> OpenAIClient:
client_params: Dict[str, Any] = self._get_client_params()
if self.http_client is not None:
client_params["http_client"] = self.http_client
return OpenAIClient(**client_params)
self.client = OpenAIClient(**client_params)
return self.client

def get_async_client(self) -> AsyncOpenAIClient:
"""
Expand Down
2 changes: 1 addition & 1 deletion libs/agno/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "agno"
version = "1.0.4"
version = "1.0.5"
description = "Agno: a lightweight framework for building multi-modal Agents"
requires-python = ">=3.7,<4"
readme = "README.md"
Expand Down

0 comments on commit 5876d00

Please sign in to comment.