OpenAgentAGI

Getting Started

This tutorial will guide you step by step through creating your first AI workflow on the OpenAgentAGI platform. We will build an AI agent for short-term gold market analysis.

This tutorial takes approximately 10 minutes and covers the core concepts of building a workflow in OpenAgentAGI.

What we’re building

Getting Started Example

Step-by-step guide

An agent for short-term gold analysis with the following capabilities:

  1. Receive user requests (prompts) via a chat interface.

  2. Use an API Block to call the current live gold price (https://goldprice.today/api.php?data=live).

  3. Use a Function Block to get the price in the desired currency (return <api1.data>['EUR']).

  4. Use a Memory Block to store past and current gold prices.

  5. Use an Agent Block to generate a short-term analysis by comparing past and current prices using a large language model.

  6. Finalize and deploy the created agent (workflow).

Detailed video tutorial

Next Steps

Need Help?

Stuck on a step? Check our Blocks documentation for detailed explanations of each component.

Want to see more examples? Browse our Tools documentation to see what integrations are available.

Ready to deploy? Learn about Execution and Deployment to make your workflows live.

Getting Started