Bosun
Bosun is a UI for testing Recombine AI agents. It enables testing complex agent interactions with multiple steps, error handling, and state management.
Example
// In workflows.ts
const agents = {
"testbot": createTestAgentFactory((props) => {
return {
start: async () => { ... },
reactOnMessage: async () => { ... },
respondToMessage: async () => { ... }
}
})
}
export agents;
Functions
| Function | Description |
|---|---|
| createTestAgentFactory | - |
Interfaces
| Interface | Description |
|---|---|
| TesAgentFactoryProps | - |
| TestAgent | - |
Type Aliases
| Type Alias | Description |
|---|---|
| TestAgentFactory | - |