You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: introduction.mdx
+37-21Lines changed: 37 additions & 21 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,41 +3,57 @@ title: What is Agno
3
3
sidebarTitle: What is Agno
4
4
---
5
5
6
-
**Agno is a lightweight library for building Multimodal Agents. It exposes LLMs as a unified API and gives them superpowers like memory, knowledge, tools and reasoning.**
6
+
**Agno is a lightweight framework for building Agents with memory, knowledge, tools and reasoning.**
7
7
8
-
-**Build lightning-fast Agents that can generate text, image, audio and video.**
9
-
-**Add memory, knowledge, tools and reasoning as needed.**
10
-
-**Run anywhere, Agno is open-source.**
8
+
Use Agno to build Reasoning Agents, Multimodal Agents, Teams of Agents and Agentic Workflows. Here's an Agent that writes a financial report by reasoning through each step:
agent.print_response("What's happening in New York?", stream=True)
28
+
agent.print_response("Write a report on NVDA", stream=True, show_full_reasoning=True, stream_intermediate_steps=True)
25
29
```
26
30
31
+
<Framecaption="The Reasoning Agent in action">
32
+
<video
33
+
autoPlay
34
+
muted
35
+
controls
36
+
className="w-full aspect-video"
37
+
style={{ borderRadius: '8px' }}
38
+
src="/videos/reasoning_finance_agent_demo.mp4"
39
+
></video>
40
+
</Frame>
41
+
27
42
# Key features
28
43
29
44
Agno is simple, fast and model agnostic. Here are some key features:
30
45
31
-
-**Lightning Fast**: Agent creation is 10,000x faster than LangGraph (see [performance](https://github.com/agno-agi/agno#performance)).
32
-
-**Model Agnostic**: Use any model, any provider, no lock-in.
33
-
-**Multi Modal**: Native support for text, image, audio and video.
34
-
-**Multi Agent**: Build teams of specialized agents.
35
-
-**Memory Management**: Store agent sessions and state in a database.
36
-
-**Knowledge Stores**: Use vector databases for RAG or dynamic few-shot learning.
37
-
-**Structured Outputs**: Make Agents respond in a structured format.
46
+
-**Model Agnostic**: Agno provides a unified interface for 23+ model providers, no lock-in.
47
+
-**Lightning Fast**: Agents instantiate 10,000x faster than LangGraph and use 50x less memory (see [benchmarks](https://github.com/agno-agi/agno#performance)).
48
+
-**First class support for Reasoning**: Build Agents that can "think" and "analyze" using Reasoning Models, Reasoning Tools or our custom `CoT+Tool-use` approach.
49
+
-**Natively Multi Modal**: Agents can take in text, image, audio and video and generate text, image, audio and video as output.
50
+
-**Advanced Multi Agent Architecture**: Industry leading multi-agent architecture with 3 different modes: `route`, `collaborate` and `coordinate`.
51
+
-**Long-term Memory**: Built in support for long-term memory with our `Storage` and `Memory` classes.
52
+
-**20+ Vector Databases for Knowledge**: Add domain knowledge to your Agents by integrating with 20+ vector databases. Fully async and highly performant.
53
+
-**Structured Outputs**: First class support for structured outputs using native structured outputs or `json_mode`.
38
54
-**Monitoring**: Track agent sessions and performance in real-time on [agno.com](https://app.agno.com).
39
55
40
-
# Get Started
56
+
# Getting Started
41
57
42
58
If you're new to Agno, start by building your first Agent.
0 commit comments