Releases: agno-agi/agno
v1.6.0
Changelog
Improvements:
- New Streaming Events: We have improved our streaming events system. See the details in “breaking changes” section at the bottom.
- Member Events in Teams: The above change includes streaming of events from team members with the top-level team events.
Bug Fixes:
- Apify Tools: Fixed the ApifyTools initialize to correctly register functions.
Breaking Changes:
- Updates to Run Without Streaming:
RunResponse
now does not have anevent
attribute. It still represents the responses of the entire run.- An additional attribute
RunResponse.status
now indicates whether the run response isRUNNING
,PAUSED
, orCANCELLED
.
- Updates to Run Streaming:
- In the case of streaming you now get reformulated run events. These events are streamed if you do
agent.run(..., stream=True)
oragent.arun(..., stream=True)
. - Agents have the following event types:
RunResponseContent
RunError
RunCancelled
ToolCallStarted
ToolCallCompleted
- with
stream_intermediate_steps=True
:RunStarted
RunCompleted
ReasoningStarted
ReasoningStep
ReasoningCompleted
MemoryUpdateStarted
MemoryUpdateCompleted
- See detailed documentation here.
- In the case of streaming you now get reformulated run events. These events are streamed if you do
- Updates to Teams:
- Teams have the following event types:
TeamRunResponseContent
TeamRunError
TeamRunCancelled
TeamToolCallStarted
TeamToolCallCompleted
- with
stream_intermediate_steps=True
:TeamRunStarted
TeamRunCompleted
TeamReasoningStarted
TeamReasoningStep
TeamReasoningCompleted
TeamMemoryUpdateStarted
TeamMemoryUpdateCompleted
- Teams will also yield events from team members as they are executed.
- See detailed documentation here.
- Teams have the following event types:
- Updates to Workflows:
- You should now yield
WorkflowRunResponseStartedEvent
andWorkflowRunResponseCompletedEvent
events.
- You should now yield
What's Changed
- chore: Refactor run response events by @dirkbrnd in #3375
- chore: add prefix to playground url by @pritipsingh in #3521
- revert error response for workflow sync router sessions by @Ayush0054 in #3524
- feat: Yield member events for teams by @dirkbrnd in #3467
- fix: Apify Bug by @dirkbrnd in #3519
- chore: Release 1.6.0 by @dirkbrnd in #3530
Full Changelog: v1.5.10...v1.6.0
v1.5.10
Changelog
New Features:
- Playground File Upload: We now support file upload via the Agno Playground. This will send PDF, CSV, Docx, etc files directly to the agents/teams for interpretation by the downstream LLMs. If you have a knowledge base attached to the agent/team, it will upload the file to the knowledge base instead.
- Async Evals: Support for async and evaluations. See examples here.
Improvements:
- Exa Research: Added
research
tool onExaTools
. See more on their docs about how their research works. - Whatsapp Type Indicator: Add type indicator to Whatsapp responses.
Bug Fixes:
- State in Messages Fixes: Fixed issues around nested json inside messages and adding state into messages.
- Anthropic Empty Responses: Fixed issue with Anthropic sometimes responding with empty message.
What's Changed
- feat: Add Exa Research tool by @Mustafa-Esoofally in #3487
- fix: Raise error from custom retriever by @dirkbrnd in #3492
- [docs] : broken link to example implementation of vector db by @nebulaanish in #3488
- feat: add async support for all evals by @manuhortet in #3445
- feat: add direct file upload support to model by @Ayush0054 in #3439
- feat: Typing Indicator by @VirusDumb in #3495
- fix: Issue empty anthropic responses by @dirkbrnd in #3491
- fix: State in message substitution by @dirkbrnd in #3490
- fix: Remove tool caching by @dirkbrnd in #3494
- chore: Release 1.5.10 by @dirkbrnd in #3498
New Contributors
- @nebulaanish made their first contribution in #3488
Full Changelog: v1.5.9...v1.5.10
v1.5.9
Changelog
New Features:
- AG-UI App: Expose your Agno Agents and Teams with an AG-UI compatible FastAPI APP.
- vLLM Support: Added support for running vLLM models via Agno.
- Serper Toolkit: Added
SerperTools
toolkit to search Google - LangDB Support: Added LangDB AI Gateway support into Agno.
- LightRAG server support: Added LightRAG support which provides a fast, graph-based RAG system that enhances document retrieval and knowledge querying capabilities.
- Parser Model: Added ability to use an external model to apply a structured output to a model response
- Pdf Bytes Knowledge: Introduced a new knowledge base class:
PDFBytesKnowledgeBase
, which allows the ingestion of in-memory PDF content via bytes or IO streams instead of file paths. - Qdrant Mcp Server: Added MCP support for Qdrant
- Daytona integration: Added
DaytonaTools
toolkit to let Agents execute code remotely on Daytona sandboxes - Expand URL addition in Crawl4ai: Introduced a new URL expansion feature directly into the Crawl4ai toolkit. Our agents frequently encounter shortened URLs that crawl4ai cannot scrape effectively, leading to incomplete data retrieval. With this update, shortened URLs are expanded to their final destinations before being processed by the crawler.
- AWS SES Tools: Added
AWSSESTools
to send emails via AWS SES. - Location Aware Agents: Added
add_location_to_instructions
to automatically detect the current location where the agent is running and add that to the system message.
Improvements:
- FastAPIApp Update: FastAPIApp was updated and
agent
was replaced withagents
,team
withteams
andworkflows
was added. This also now requires you to specify which agent/team/workflow to run.- E.g.
http://localhost:8001/runs?agent_id=my-agent
- E.g.
- ZepTools Updates: Updated
ZepTools
to remove deprecated features. - GmailTools Attachments:
GmailTools
now support attachments. - Improve code reusability by using fetch with retry and async_fetch_with_retry: updated
fetch_with_retry
andasync_fetc_with_retry
to be reused inurl_reader.py
- Add name to evaluation examples: Included name param in evaluation examples
- XTools Search: Added
search_posts
forXTools
.
Bug Fixes:
- Claude Prompt Tokens: Fixed a bug with prompt tokens not propagating in Claude model class
- Add type in base App class for registry: Can have different types of app like-
slack
,whatsapp
, etc - Accept empty array of pdf urls: Fixed an issue where empty PDF URL arrays were not accepted, preventing knowledge base queries without adding new documents
- Anthropic cache metrics propagation: Fixed a bug where Anthropic's prompt caching metrics were not propagating to Agent responses, despite the raw Anthropic API working correctly. This minimal fix ensures cache performance metrics are properly captured and reported.
- Handle non serializable objects on RunResponse dict parsing:
- Updated
RunResponse.to_dict()
to handle non-serializable fields, as Python enums
- Updated
What's Changed
- fix: add type in base App class for registry by @Ayush0054 in #3444
- feat: Zep toolkit update by @Mustafa-Esoofally in #3436
- feat: Competitor analysis agent by @Mustafa-Esoofally in #3456
- feat: Added serper.dev as new tool with agno toolkit by @CoderOMaster in #2673
- fix: add name to evaluation examples by @anuragts in #3453
- feat: AG-UI agno bridge by @Mustafa-Esoofally in #3405
- feat: vLLM support by @Mustafa-Esoofally in #3315
- chore: adjust AG-UI app url by @manuhortet in #3468
- [fix] anthropic cache metrics propagation by @NitsanCohen770 in #3460
- cookbook: Qdrant Mcp Server by @lucifertrj in #3346
- feat: LangDB AI Gateway Support for Agno by @MrunmayS in #2077
- [FIX] Accept empty array of pdf urls by @matthieu-vincke in #3372
- feat/expand URL addition in crawl4ai by @chiruu12 in #2409
- Feat/pdf bytes knowledge by @renanmoretto in #3024
- feat: parser model by @ysolanky in #3441
- feat: Change fastapi app to allow multiple agents/teams by @dirkbrnd in #3471
- Enable GmailTools to send emails with attachments by @hsubbaraj in #3378
- [feat] Improve code reusability by using fetch with retry and async_fe… by @memorylorry in #3368
- feat: LightRAG server support by @willemcdejongh in #3420
- feat: handle non serializable objects on RunResponse dict parsing by @manuhortet in #3477
- feat: Updates to Crawl4ai toolkit by @Mustafa-Esoofally in #3473
- feat: Infinity Reranker by @bet0x in #3380
- chore: ag-ui integration setup readme by @manuhortet in #3482
- fix: add storage mode in workflows and fixes by @Ayush0054 in #3475
- feat: Add new search posts tool to X toolkit by @Mustafa-Esoofally in #3474
- chore: simplify setup for the AG-UI app by @manuhortet in #3483
- feat: add Daytona toolkit by @manuhortet in #3479
- feat: tool to send email via SES also updated Cookbook example for th… by @aakashsengar in #1882
- [FIX] numpy<2 not required for Windows by @matthieu-vincke in #3388
- fix(media): Add Media IDs to Serialization and Correct Media Deserialization by @0xRichardH in #3227
- Feature/aws sso by @nikodyk in #2880
- [bugfix] use sentence_transformer_client by @mathematicalmichael in #2420
- feat: Add location to instructions to make agent location aware by @dirkbrnd in #3485
- chore: Release 1.5.9 by @kausmeows in #3478
New Contributors
- @CoderOMaster made their first contribution in #2673
- @NitsanCohen770 made their first contribution in #3460
- @MrunmayS made their first contribution in #2077
- @matthieu-vincke made their first contribution in #3372
- @chiruu12 made their first contribution in #2409
- @renanmoretto made their first contribution in #3024
- @hsubbaraj made their first contribution in #3378
- @memorylorry made their first contribution in #3368
- @bet0x made their first contribution in #3380
- @nikodyk made their first contribution in #2880
Full Changelog: v1.5.8...v1.5.9
v1.5.8
Changelog
New Features:
- Slack App: Introducing the
SlackApp
to allow you to create agents for Slack! The app allows agents to respond to individual messages or on group chats, and it creates threads to respond to messages. - Visualization Tools: Added
VisualizationTools
that usesmatplotlib
to give agents the ability to make graphs. - Brave Search Tools: Introduced a new toolkit for integrating
BraveSearch
that allows agent to search the web using brave search api.
Improvements:
- Pass filters for traditional RAG: Properly pass down
knowledge_filters
even ifself.add_references=True
which is a case for traditional RAG (diff from Agentic RAG) - Add infer param to Mem0: Added infer as a param to
Mem0Tools
Bug Fixes:
-
Searxng tool initialization: Fixed Searxng tool initialization error
AttributeError: 'Searxng' object has no attribute 'include_tools'
and added comprehensive unit tests.
-
Fix for enum as a response model for Gemini: With 1.5.6, a bug was introduced now allowing enum as a data type for Gemini response model.
-
OpenAI parsing structured output: With the changes in the OpenAI library we don't need to parse the structured output separately.
-
Fix accuracy evals monitoring: Added logic to handle monitoring when evaluating Teams in the run function of AccuracyEval
Updates
- Updates to Apps:
FastAPIApp
does not have a defaultprefix
anymore and/run
→/runs
(i.e. the created run endpoint is now<your_domain>/runs
)serve_fastapi_app
is now replaced with.serve()
on the instance ofFastAPIApp
.serve_whatsapp_app
is now replaced with.serve()
on the instance ofWhatsappAPI
.
v1.5.6
Changelog
New Features
- Team Evals: Evaluations are now supported for teams!
Improvements:
- Async Workflows: Added
arun
support for Workflows, so they can now be used withasync
Python. - Parallel Memory Updates: Made speed improvements when user memories and session summaries are generated.
- Reimplement
tool_call_limit
: Revamp oftool_call_limit
to make it work across a whole agent run.
Bug Fixes:
- Mistral Structured Outputs with Tools: Fixed an issue preventing Mistral model use with structured output and tools
- Images In Run Without Prompt: Fixed issues related to images being ignored if there wasn’t a prompt provided on
run
. - Pgvector Upsert Fix: Fixed Pgvector upsert not copying metadata properly
- Handle AgnoInstrumentor failing with OpenAIResponses: PR merged in Arize’s openinference repo- Arize-ai/openinference#1701
- Pinecone Filters: Enabled filters for pinecone vector db
- Combined KB Async: Add missing async method to Combined KB
- Team Session State Fix:
team_session_state
is now correctly propagated and shared between all members and sub-teams of a team. - Gemini type fix for integers:
- Pydantic models with
Dict[str, int]
fields (and other Dict types) were failing when used asresponse_schema
for both OpenAI and Gemini models due to schema format incompatibilities.
- Pydantic models with
- Session Name:
session_name
is now available after a run. - Handle UUIDs while serialization in RedisStorage: Fixed error object of type UUID is not JSON serializable
Updates:
- For managing
team_session_state
, you now have to setteam_session_state
on theTeam
instead ofsession_state
.
What's Changed
- fix: Add mistral structured output and tool use parsing by @dirkbrnd in #3369
- chore: add cookbooks for hybrid search by @kausmeows in #3379
- fix: User confirmation flows with run ID by @dirkbrnd in #3385
- fix: type mismatch with streamable http timeouts by @manuhortet in #3398
- feat: add pipedream auth example by @manuhortet in #3397
- feat: anthropic mcp connector tool by @ysolanky in #3377
- fix: pgvector upsert not copying metadata properly by @kausmeows in #3401
- feat: add arun in workflows by @kausmeows in #3396
- fix: Handle None prompt with media by @dirkbrnd in #3410
- fix: enable filters for pinecone by @kausmeows in #3411
- fix: add missing async method to Combined KB by @kausmeows in #3412
- feat: add team_session_state state management in teams by @pritipsingh in #3404
- fix: Gemini type fix for integers by @willemcdejongh in #3395
- fix: handle uuids while serialization in RedisStorage by @kausmeows in #3415
- fix: session name persistance by @dirkbrnd in #3407
- feat: support teams for all evals by @manuhortet in #3327
- perf: Improve performance of agent memory updates by @dirkbrnd in #3409
- fix: Tool call limit response by @dirkbrnd in #3408
- chore: Release 1.5.6 by @kausmeows in #3414
Full Changelog: v1.5.5...v1.5.6
v1.5.5
Changelog
New Features:
- Claude File Upload: We can now upload a file to Anthropic directly and then use it as an input to an agent.
- Claude 4 Code Execution Tool: Updated Claude to execute Python code in a secure, sandboxed environment.
- Prompt caching with Anthropic Models: Allowed resuming from specific prefixes in your prompts. This approach significantly reduces processing time and costs for repetitive tasks or prompts with consistent elements.
- Vercel v0 Model: Added support for new Vercel v0 models and cookbook examples.
- Qdrant Hybrid Search support
- Markdown Knowledge Base: Added native support for Markdown-based knowledge bases.
- AI/ML API platform integration: Introduced integration with
AI/ML API
, a platform providing AI/ML models. AI/ML API provides 300+ AI models including Deepseek, Gemini, ChatGPT. The models run at enterprise-grade rate limits and uptimes. - Update Pydantic and dataclass in function handling: Added support for
Pydantic
anddataclass
objects as input to a function. See here for an example.
Improvements:
- Timeout handling for API calls in ExaTools class:
- Timeout functionality to Exa API calls to prevent indefinite hanging of search operations. The implementation uses Python's
concurrent.futures
module to enforce timeouts on all Exa API operations (search, get contents, find similar, and answer generation). - This change addresses the issue where Exa search functions would hang indefinitely, causing potential service disruptions and resource leaks.
- Timeout functionality to Exa API calls to prevent indefinite hanging of search operations. The implementation uses Python's
- Fetch messages from last N sessions:
- A tool for the agent, something like
get_previous_session_messages(number_of_sessions: int)
that returns a list of messages that the agent can analyse - Switch on with
search_previous_sessions_history
- A tool for the agent, something like
- Redis Expiration: Added
expire
key to set TTL on Redis keys. - Add Anthropic Cache Write to Agent Session Metrics: Added
cache_creation_input_tokens
to agent session metrics, to allow for tracking Anthropic cache write statistics
Bug Fixes:
- Huggingface Embedder Updates:
- Huggingface has changed some things on their API and they've deprecated
.post
on theirInferenceClient()
- https://discuss.huggingface.co/t/getting-error-attributeerror-inferenceclient-object-has-no-attribute-post/156682 - We can also no longer use
id: str = "jinaai/jina-embeddings-v2-base-code"
as default, because these models are no longer provided by theHF Inference API
. Changed the default toid: str = "intfloat/multilingual-e5-large"
- Huggingface has changed some things on their API and they've deprecated
- Add
role_map
forOpenAIChat
: This allows certain models that don’t adhere to OpenAI’s role mapping to be used virOpenAILike
. - Use Content Hash as ID in Upsert in Pgvector: Use reproducible
content_hash
in upsert as ID. - Insert in Vector DB passes only last chunk meta_data: Insert in vector db passes only last chunk meta_data. issue link- https://discord.com/channels/965734768803192842/1219054452221153463/1376631140047130649
- Remove Argument Sanitization: Replaced with a safer way to do this that won't break arguments that shouldn't be sanitized
- Handle async tools when running async agents on playground: Fixed a regression where using Agents with async tools (e.g. MCP tools) was breaking in the Playground.
What's Changed
- fix-llama-sys-message-ag-3049 by @ysolanky in #3088
- feat-claude-4-ag-3292 by @ysolanky in #3302
- feat: update claude file upload by @kausmeows in #3332
- fix: repeated class variables by @kausmeows in #3334
- feat: prompt caching with Anthropic models by @manuhortet in #3324
- [Enhancement] Implement timeout handling for API calls in ExaTools class by @siddythings in #3287
- fix: HF custom embedder by @kausmeows in #3357
- feat: allow custom role map for OpenAIChat by @manuhortet in #3355
- chore: Add tests for functions by @dirkbrnd in #3354
- fix user_input_schema by @lybtt in #3350
- feat: add vercel model by @anuragts in #3349
- feat: fetch messages from last n sessions by @kausmeows in #3279
- feat: Qdrant hybrid search by @kausmeows in #3339
- feat: handle empty responses from Gemini model by @ItsRoy69 in #3317
- feat: registry by @willemcdejongh in #2726
- feat: add mem0 mcp example by @manuhortet in #3301
- feat: pipedream mcp examples by @manuhortet in #3299
- Added expiration support for Redis by @nhathoang0110 in #3316
- chore: update qdrant to remove hybrid search breaking change by @kausmeows in #3360
- fix: pass async mode by @gsaada in #3295
- fix embedding dimensions key by @adroitvarun in #3337
- feat: add knowledge support for markdown files by @manuhortet in #3289
- [feat] Add AI/ML API platform integration by @D1m7asis in #3209
- fix-claude-tool-call-bug-ag-3287 by @ysolanky in #3285
- fix: insert in vector db passes only last chunk meta_data by @kausmeows in #3363
- fix: Remove argument sanitization by @dirkbrnd in #3364
- fix: use content hash as id in upsert by @kausmeows in #3367
- Feat: Add anthropic cache write to agent session metrics by @piotrpenar in #3344
- fix: handle async tools when running async agents on playground by @manuhortet in #3356
- chore: Release 1.5.5 by @kausmeows in #3359
New Contributors
- @lybtt made their first contribution in #3350
- @nhathoang0110 made their first contribution in #3316
- @adroitvarun made their first contribution in #3337
- @D1m7asis made their first contribution in #3209
Full Changelog: v1.5.4...v1.5.5
v1.5.4
Changelog
New Features:
- User Control Flows: This is the beta release of Agno’s Human-in-the-loop flows and tools.
- We now allow agent runs to be
paused
awaiting completion of certain user requirements before the agent can continue. - This also adds the
agent.continue_run
andagent.acontinue_run
functions. - The control flows that are available:
- User confirmation flow → Decorate a function with
@tool(requires_confirmation=True)
and the agent will expect user confirmation before executing the tool. - User input required → Decorate a function with
@tool(requires_user_input=True)
to have the agent stop and ask for user input before continuing. - External tool execution → Decorate a function with
@tool(external_execution=True)
to indicate that you will execute this function outside of the agent context. - Dynamic user input → Add
UserControlFlowTools()
to an agent to give the agent the ability to dynamically stop the flow and ask for user input where required.
- User confirmation flow → Decorate a function with
- See a host of examples here.
- We would appreciate any feedback from the community!
- We now allow agent runs to be
- Mem0 Toolkit: Added a toolkit for managing memories in Mem0.
- Firecrawl Search: Added support for Firecrawl web search in
FirecrawlTools
.
Bug Fixes:
- Firecrawl Tools and Reader: Fixed parameter parsing for the Firecrawl reader and tools.
- Include/Exclude on all Tools: Ensure all toolkits support
include_tools
andexclude_tools
.
What's Changed
- feat: Imagen-4 example by @Mustafa-Esoofally in #3281
- fix: Firecrawl params by @Mustafa-Esoofally in #3258
- feat: refactor apps structure by @Ayush0054 in #3260
- Added a parameter to configure auto_suggest in wikipedia.summary by @djoek in #3205
- feat: add mongodb hybrid search support by @kausmeows in #3262
- feat: Implementation for user approval pause flow by @dirkbrnd in #3243
- feat: add logic to track eval runs by @manuhortet in #3019
- feat: Create implementation for function paused for external execution by @dirkbrnd in #3272
- chore: update retriever cookbooks by @kausmeows in #3300
- chore: clarify eval cookbooks by @manuhortet in #3294
- feat: Create implementation for user input flow by @dirkbrnd in #3278
- feat: mem0 memory toolkit by @Mustafa-Esoofally in #3028
- chore: update cookbooks for teams observability by @kausmeows in #3308
- [test] Add test case for FirecrawlReader params handling by @siddythings in #3286
- feat: Add firecrawl search by @dirkbrnd in #3325
- Fix: Improve user confirmation flow by @dirkbrnd in #3297
- feat: User confirmation flow using run_id as reference only by @dirkbrnd in #3305
- chore: migrate tools to use include/exclude_tools by @kausmeows in #3323
- feat: Implement agentic user requirements flow by @dirkbrnd in #3322
- update streamlit apps folder structure by @Ayush0054 in #3329
- chore: Release 1.5.4 by @dirkbrnd in #3330
New Contributors
- @djoek made their first contribution in #3205
- @siddythings made their first contribution in #3286
Full Changelog: v1.5.3...v1.5.4
v1.5.3
Changelog
Improvements:
- Improved Accuracy Evals: Updated the way accuracy evals works for more accurate agent-based evaluation.
Bug Fixes:
- MCP Client Timeout: Client timeouts now work correctly and use the timeout set on parameters.
What's Changed
- Firecrawl web extraction agent by @Mustafa-Esoofally in #3263
- Update readme.md by @VirusDumb in #3265
- feat: better MCP timeout handling by @manuhortet in #3271
- Update Accuracy Eval by @ashpreetbedi in #3276
- chore: Release 1.5.3 by @ashpreetbedi in #3277
Full Changelog: v1.5.2...v1.5.3
v1.5.2
Changelog
New Features:
- Agno Apps (Beta): Introducing Agno Apps, convenience functions to assist with building production-ready applications. The first supported apps are:
FastAPIApp
→ A really simple FastAPI server that provides access to youragent
orteam
.WhatsappAPIApp
→ An app that implements the Whatsapp protocol allowing you to have an Agno agent running on Whatsapp. Supports image / audio / video input and can generate images as responses. Supports reasoning.
- Couchbase Vector DB Support: Added support for Couchbase as a vector DB for knowledge bases.
- Knowledge Filters Update for Teams: Filters (manual + agentic) can now be used with Teams.
- Azure Cosmos DB for MongoDB (vCore) vector db support: In the MongoDB vector db class add support for cosmosdb mongo vcore support by enabling
cosmos_compatibility=True
- Google Big Query Tools: Added Toolkit for Google BigQuery support.
- Async Support for s3 Readers: Add async support for
pdf
andtext
s3 readers. stop_after_tool_call
andshow_result
for Toolkits: Now the base Toolkit class hasstop_after_tool_call_tools
andshow_result_tools
similar to the@tool
decorator.
What's Changed
- feat: add-succes_criteria-to-agent by @Ayush0054 in #3234
- fix: LiteLLM incomplete usage by @piotrpenar in #3210
- chore: Refactor agent run and run stream #3179 by @dirkbrnd in #3216
- feat: New Apps structure by @dirkbrnd in #2830
- Add Couchbase support [VectorDB] by @shyam-cb in #2179
- feat: Knowledge filters update for teams by @kausmeows in #3181
- feat: add azure cosmosdb mongodb (vcore) by @kausmeows in #3160
- Added Google Big Query Tool by @deepd1534 in #3141
- feat: add async readers s3 by @kausmeows in #3245
- feat: add support for stop after tool in Toolkits by @kausmeows in #3253
- feat: add test env fields to workspace settings by @manuhortet in #3251
- feat: MCP Graphiti example by @manuhortet in #3257
- add fallback memory model while getting agents from playground by @Ayush0054 in #3256
- feat-a2a-example-ag-3175 by @ysolanky in #3200
- feat: raise if async tools in sync agent run by @manuhortet in #3252
- fix: Fixed few bugs in Todoist integration tools by @SGP07 in #3247
- fix: cannot access local variable 'documents_to_load' in knowlege agent by @mrtunguyen in #3230
- fix(replicate): handle FileOutput and list of FileOutput by @0xRichardH in #3226
- fix: use subprocess cwd instead of shell 'cd' to set working directory by @shlomobamberger in #3217
- fix: when using LangchainKnowledgeBase by @KinonoChen in #3204
- Update FireCrawl: Fix Crawl Bug & Add Map Functionality by @saikanov in #3193
- feat(googlecalendar): add conditional Google Meet link creation by @aakashsengar in #3017
- ⚡️ Speed up method
WebsiteReader._extract_main_content
by 72% by @misrasaurabh1 in #3013 - chore: Release 1.5.2 by @dirkbrnd in #3244
New Contributors
- @piotrpenar made their first contribution in #3210
- @shyam-cb made their first contribution in #2179
- @deepd1534 made their first contribution in #3141
- @SGP07 made their first contribution in #3247
- @mrtunguyen made their first contribution in #3230
- @0xRichardH made their first contribution in #3226
- @shlomobamberger made their first contribution in #3217
- @saikanov made their first contribution in #3193
- @misrasaurabh1 made their first contribution in #3013
Full Changelog: v1.5.1...v1.5.2
v1.5.1
Changelog
New Features:
- Nebius Model Provider: Added Nebius as a model provider.
- Extended Filters Support on Vector DBs: Added filtering support for other vector DBs
- pgvector
- Milvus
- Weaviate
- Chroma
Improvements:
- Redis SSL: Added the
ssl
parameter toRedis
storage. - Improve release tests workflow: add a script to do model specific minimal setup installation on release
What's Changed
- chore: update cerebras reasoning cookbooks by @kausmeows in #3182
- fix: Add mssing init to infra package by @willemcdejongh in #3189
- feat: Add Nebius studio tools and openAIlike by @SamuelJacobJ in #3185
- chore: update-pr-wf-ag-3172 by @ysolanky in #3195
- fix: yield-tool-call-ag-3121 by @ysolanky in #3184
- [feat]: add support for ssl in redis by @gsaada in #3169
- [fix] pass agent id as entity to get only sessions of agent by @gsaada in #3166
- chore: add a script to do model specific minimal setup installation on release by @kausmeows in #3208
- feat: add filtering support for remaining vectordbs by @kausmeows in #3199
- chore-readme-update-ag-3190 by @ysolanky in #3222
- chore: Release 1.5.1 by @dirkbrnd in #3219
New Contributors
- @SamuelJacobJ made their first contribution in #3185
- @gsaada made their first contribution in #3169
Full Changelog: v.1.5.0...v1.5.1