Skip to main content

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

FunctionDescription
createTestAgentFactory-

Interfaces

InterfaceDescription
TesAgentFactoryProps-
TestAgent-

Type Aliases

Type AliasDescription
TestAgentFactory-