Agno v3.0.8
Agno v3.0.8 introduces complete bounded page reads, shared PostgreSQL engine factories, Markdown code-fence tracking utilities, and fixes a critical session data integrity bug in SQLite bulk upserts.
原始内容为英文;当前页面提供中文导航与来源说明,具体事实请以原文为准。
为什么值得关注
Agno v3.0.8 introduces several core features and security-adjacent bug fixes: - Knowledge Page Reads : Knowledge.read full page and aread full page fetch complete published pages in a single bounded SQL read snapshot, supporting revision pinning, deadlines, and character limits (oversized pages return None ). - PostgreSQL Engine Factories : create postgres engine and create async postgres engine expose standard connection pooling and JSON serialization, defaulting to Psycopg 3 for plain Postgres URLs. - Markdown Fence Tracking : agno.utils.markdown.advance code fence provides access to internal page chunker code-fence rules for custom transformations. - SQLite Session Integrity : SqliteDb and AsyncSqliteDb bulk upsert methods now enforce owner checks, preventing cross-user session overwrites and matching existing single-row and Postgres behavior. SQLite JSON field double-encoding was also fixed. - Public MCP Lifecycle Validation : Custom MCP configurations without lifecycle tools no longer require redundant lifecycle tools=False flags when configured properly.
可执行摘要
Agno v3.0.8 adds Knowledge.read full page/aread full page, shared PostgreSQL engine factories using Psycopg 3 by default, and agno.utils.markdown.advance code fence. It patches SQLite bulk upsert session-owner checks and refines validation for public MCP lifecycle tools.
- Agent 实用度
- 82/100
- 可信度
- 96%
- 机器格式
- JSON + Markdown
开发者应核对什么
- Upgrade to Agno v3.0.8, especially if utilizing SQLite adapters ( SqliteDb / AsyncSqliteDb ) for multi-tenant session storage.
- Review MCP configurations to simplify tool overrides where lifecycle tools=False was previously required for custom function setups.
- Adopt create postgres engine or create async postgres engine if shared defaults and Psycopg 3 selection are desired.