Skip to content

Commit 22f6cce

Browse files
Workspace docs audit (#176)
1 parent 6519b31 commit 22f6cce

File tree

6 files changed

+10
-12
lines changed

6 files changed

+10
-12
lines changed

_snippets/create-aws-resources.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ This will create:
2323
5. [Secrets](https://aws.amazon.com/secrets-manager/) for managing application and database secrets.
2424
6. [RDS Database](https://aws.amazon.com/rds/) for Knowledge Base and Storage.
2525

26-
**Press Enter** to confirm and grab a cup of coffee while the resources spin up.
26+
**Press Enter** to confirm and wait for the resources to spin up.
2727

2828
- The RDS database takes about 5 minutes to activate.
2929
- These resources are defined in the `workspace/prd_resources.py` file.

_snippets/run-agent-api-and-database.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## Serve your Agents using FastAPI
22

3-
[FastAPI](https://fastapi.tiangolo.com/) is an exceptional framework for building RestApis. Its fast, well-designed and loved by everyone using it. Most production applications are built using a front-end framework like [next.js](https://nextjs.org) backed by a RestAPI, where FastAPI shines.
3+
[FastAPI](https://fastapi.tiangolo.com/) is an exceptional framework for building REST APIs. Its fast, well-designed and loved by everyone using it. Most production applications are built using a front-end framework like [next.js](https://nextjs.org) backed by a REST API, where FastAPI shines.
44

55
Your codebase comes pre-configured with [FastAPI](https://fastapi.tiangolo.com/) and [PostgreSQL](https://www.postgresql.org/), along with some sample routes. Start your workspace using:
66

_snippets/run-agent-app-local.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@ Notes:
3535

3636
- The `Agents` are defined in the `agents` folder.
3737
- The streamlit apps are defined in the `ui` folder
38-
- The api routes are defined in the `api` folder.
38+
- The API routes are defined in the `api` folder.

_snippets/setup.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
</CodeGroup>
5252

5353
<Tip>
54-
Agno works with any model provider, just need to update the agents in the workspace.
54+
Agno is compatible with any model provider; simply update the agents in the workspace.
5555
</Tip>
5656
</Step>
5757
</Steps>

workspaces/agent-app/local.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ The Agent App is our go-to workspace for building agentic systems. It contains:
99
- A streamlit application for debugging and testing. This streamlit app is very versatile and can be used as an admin interface for the agentic system and shows all sorts of data.
1010
- A postgres database for session and vector storage.
1111

12-
This Agentic System is designed to run locally using docker and in production on AWS.
12+
13+
It's designed to run locally using docker and in production on AWS.
1314

1415
<Snippet file="setup.mdx" />
1516

workspaces/introduction.mdx

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,11 @@ We recommend starting with the `agent-app` template and taking it from there.
3939
When building Agents, we experiment locally till we achieve 6/10 quality.
4040
This helps us see quick results and get a rough idea of how our solution should look like in production.
4141

42-
Then, we start moving to a production environment and iterate from there. We create a new workspace and start connecting different parts of the system. This gives us a working solution that we can test and evaluate.
43-
44-
Here's how we like to build agentic systems:
45-
46-
- Serve Agents, Teams and Workflows via a RestAPI (FastAPI).
42+
Then, we start moving to a production environment and iterate from there. Here's how __*we*__ build production systems:
43+
- Serve Agents, Teams and Workflows via a REST API (FastAPI).
4744
- Use a streamlit application for debugging and testing. This streamlit app is generally used as an admin interface for the agentic system and shows all sorts of data.
48-
- Monitor, evaluate and improve till we reach 9/10 quality.
49-
- In parallel, we start integrating our front-end with the Rest API above.
45+
- Monitor, evaluate and improve the implementation until we reach 9/10 quality.
46+
- In parallel, we start integrating our front-end with the REST API above.
5047

5148
Having built 100s of such systems, we have a standard set of codebases we use and we call them **Workspaces**. They help us manage our Agentic System as code.
5249

0 commit comments

Comments
 (0)