Implements: ``` turn/start turn/interrupt ``` along with their integration tests. These are relatively light wrappers around the existing core logic, and changes to core logic are minimal. However, an improvement made for developer ergonomics: - `turn/start` replaces both `SendUserMessage` (no turn overrides) and `SendUserTurn` (can override model, approval policy, etc.)
8 lines
123 B
Rust
8 lines
123 B
Rust
mod account;
|
|
mod thread_archive;
|
|
mod thread_list;
|
|
mod thread_resume;
|
|
mod thread_start;
|
|
mod turn_interrupt;
|
|
mod turn_start;
|