Update readmes

This commit is contained in:
akhisud3195 2025-01-31 19:38:05 +05:30
parent a52b27dcd5
commit d16f1ca972
3 changed files with 6 additions and 6 deletions

View file

@ -164,3 +164,6 @@ Before running RowBoat, ensure you have:
3. **Sign-in Button Not Appearing** 3. **Sign-in Button Not Appearing**
- If the sign-in button does not appear in the UI, ensure the Auth0 domain in your `.env` file is prefixed with `https://`. - If the sign-in button does not appear in the UI, ensure the Auth0 domain in your `.env` file is prefixed with `https://`.
## Attribution
Our agents framework is built on top of [OpenAI Swarm](https://github.com/openai/swarm) with custom enhancements and improvements. Check the [NOTICE](https://github.com/rowboatlabs/rowboat/blob/main/apps/agents/NOTICE.md) for attribution and licensing details (MIT license).

View file

@ -2,14 +2,14 @@
## 📝 Overview ## 📝 Overview
- RowBoat Agents is a multi-agent framework that powers conversations using agentic workflows. - RowBoat Agents is a multi-agent framework that powers conversations using agentic workflows.
- Built on top of [OpenAI Swarm](https://github.com/openai/swarm) with custom enhancements and improvements. Check the `NOTICE.md` for attribution and licensing details (MIT license). - Built on top of [OpenAI Swarm](https://github.com/openai/swarm) with custom enhancements and improvements. Check the [NOTICE](https://github.com/rowboatlabs/rowboat/blob/main/apps/agents/NOTICE.md) for attribution and licensing details (MIT license).
--- ---
## 🕸️ Graph-based Framework ## 🕸️ Graph-based Framework
- Multi-agent systems are represented as graphs, where each agent is a node in the graph. - Multi-agent systems are represented as graphs, where each agent is a node in the graph.
- RowBoat Agents accepts Directed Acyclic Graph (DAG) workflows, which define agents, tools, and their connections. - RowBoat Agents accepts Directed Acyclic Graph (DAG) workflows, which define agents, tools, and their connections.
- Configure workflows using the RowBoat Studio (UI) with the help of an AI copilot. Setup instructions can be found in the [main README](https://github.com/rowboatlabs/rowboat/tree/dev). - Configure workflows using the RowBoat Studio (UI) with the help of an AI copilot. Setup instructions can be found in the [main README](https://github.com/rowboatlabs/rowboat).
- The framework is stateless, meaning that it requires the upstream service to pass in the current `state` and `messages` in every turn. - The framework is stateless, meaning that it requires the upstream service to pass in the current `state` and `messages` in every turn.
- At each conversation turn: - At each conversation turn:
- The agents are initialized using the current `state`. - The agents are initialized using the current `state`.

View file

@ -3,7 +3,4 @@ Follow the [installation steps](/installation/) to set up RowBoat Studio, API an
## Building your first assistant ## Building your first assistant
Coming soon. Coming soon.