Skip to content

Commit b7f1f49

Browse files
authored
Release 1.1.10 (#2364)
# Changelog ## New Features: - **File Prompts**: Introduced a new `File` type that can be added to prompts and will be sent to the model providers. Only Gemini and Anthropic Claude supported for now. - **LMStudio:** Added support for [LMStudio](https://lmstudio.ai/) as a model provider. See the [docs](https://docs.agno.com/models/lmstudio). - **[AgentQL](https://www.agentql.com/) Tools**: Added tools to support [AgentQL](https://www.agentql.com/) for connecting agents to websites for scraping, etc. See the [docs](https://docs.agno.com/tools/toolkits/agentql). - **Browserbase Tool:** Added [browserbase](https://www.browserbase.com/) tool for connecting agents to headless browser and do things like- capturing screenshots, scrape page content, click on tabs and navigate to different sections etc. ## Improvements: - **Cohere Vision**: Added support for image understanding with Cohere models. See [this cookbook](https://github.com/agno-agi/agno/blob/main/cookbook/models/cohere/image_agent.py) to try it out. - **Embedder defaults logging**: Improved logging when using the default OpenAI embedder. ## Bug Fixes: - **Ollama Embedder**: Fix for getting embeddings from Ollama across different versions.
1 parent 3100c60 commit b7f1f49

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

libs/agno/pyproject.toml

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "agno"
3-
version = "1.1.9"
3+
version = "1.1.10"
44
description = "Agno: a lightweight framework for building multi-modal Agents"
55
requires-python = ">=3.7,<4"
66
readme = "README.md"
@@ -67,6 +67,7 @@ elevenlabs = ["elevenlabs"]
6767
fal = ["fal_client"]
6868
webex = ["webexpythonsdk"]
6969
mcp = ["mcp"]
70+
browserbase = ["browserbase", "playwright"]
7071

7172
# Dependencies for Storage
7273
sql = ["sqlalchemy"]
@@ -124,6 +125,7 @@ tools = [
124125
"agno[fal]",
125126
"agno[webex]",
126127
"agno[mcp]",
128+
"agno[browserbase]",
127129
]
128130

129131
# All storage

0 commit comments

Comments
 (0)