Agno v2.2.12 adds a metadata Filter DSL for Knowledge searches and a Slack mention-only reply mode
$ git clone --branch v2.2.12 https://github.com/agno-agi/agno.git # already have the repo? check out this version: $ git checkout v2.2.12
slack_interface = SlackInterface(agent=my_agent, reply_to_mentions_only=False)
- ›Adds
reply_to_mentions_onlyparameter to the Slack interface, controlling whether agents respond to all channel messages or only direct mentions (now defaults to mentions-only). - ›Introduces a metadata-based Filter DSL for Knowledge searches supporting
EQ,IN,GT,LT,NOT,AND, andORexpressions; PGVector-backed stores are supported in this release, with additional VectorDB support to follow.
- !The Slack interface now defaults to replying only to mentions (
reply_to_mentions_only); agents that previously answered all channel messages will silently stop doing so after upgrading unlessreply_to_mentions_onlyis set to False.