@@ -95,9 +95,9 @@ This example demonstrates how to build a streaming chat API where the assistant
9595src/
9696├── agent.ts # Core agent implementation
9797├── context.ts # Context management
98- ├── flow.ts # Flow control and management
99- ├── flows/ # Predefined flow implementations
100- │ └── chat-flow.ts # Chat flow implementation
98+ ├── flow.ts # Flow control and management
99+ ├── flows/ # Predefined flow implementations
100+ │ └── chat-flow.ts # Chat flow implementation
101101├── index.ts # Main entry point
102102├── tools.ts # Tool definitions
103103├── types.ts # Type definitions
@@ -118,12 +118,8 @@ src/
118118### Available Scripts
119119
120120- ` yarn test ` - Run tests using Vitest
121- - ` yarn lint ` - Run ESLint with auto-fix
122- - ` yarn format ` - Format code using Prettier
123-
124- ### Tests
125-
126- Comprehensive tests are located in the ` tests/ ` directory.
121+ - ` yarn lint:fix ` - Run ESLint with auto-fix
122+ - ` yarn format ` - Format code with Prettier
127123
128124### Examples
129125
@@ -146,7 +142,6 @@ This project is licensed under the MIT License - see the [LICENSE.md](LICENSE.md
146142
147143## TODO
148144
149- - [ ] Add more tests
150- - [ ] Add more examples
151- - [ ] Add more documentation
145+ - [ ] Add next.js examples
146+ - [ ] Document pubic API and use cases
152147- [ ] Inter-Agent memory
0 commit comments