Skip to content

Commit e026779

Browse files
committed
readme: tweaks
1 parent 1ab5595 commit e026779

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

README.md

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,18 @@ A lightweight, type-safe AI workflow orchestrator inspired by Anthropic's agent
88
npm install flows-ai
99
```
1010

11+
What to do next?
12+
13+
- Read our [docs](https://flows-ai.callstack.com) for more information.
14+
- Check our [examples](./example/README.md) to see how you can use Flows AI.
15+
1116
## Motivation
1217

1318
Last year, we built Fabrice - an AI agent framework designed to break down complex tasks into smaller steps. We realized that AI agent systems today are essentially modern workflows where each node is an LLM call instead of a traditional function. The key difference lies not in the framework, but in the nature of these nodes: they have flexible input/output contracts.
1419

15-
This insight led us to redefine our approach and focus on an orchestration, so you can connect different (often incompatible input/outputs) together. This library provides a simple, more deterministic way to build AI workflows. You can either explicitly define your workflow with loops and conditionals, or use an orchestrator agent to dynamically break down complex tasks.
20+
This insight led us to redefine our approach and focus on an orchestration, so you can connect different (often incompatible input/outputs) together.
21+
22+
This library provides a simple, more deterministic way to build AI workflows. You can either explicitly define your workflow with loops and conditionals, or use an orchestrator agent to dynamically break down complex tasks.
1623

1724
On top of that, we keep our library simple and functional, without any classes or state.
1825

@@ -54,9 +61,7 @@ execute(translateFlow, {
5461
})
5562
```
5663

57-
In this example, we will first translate the text to English and then summarize it.
58-
59-
Learn more about this and other flows in our [docs](./docs/src/content/docs/index.mdx).
64+
Learn more about this and other flows in our [docs](https://flows-ai.callstack.com).
6065

6166
## License
6267

0 commit comments

Comments
 (0)