Remove agent state concept (#58)

This commit is contained in:
Neil Dwyer
2024-05-20 12:37:20 -07:00
committed by GitHub
parent 2d7d3f3d6d
commit ba9aedf666
3 changed files with 6 additions and 52 deletions

View File

@@ -13,12 +13,4 @@ export interface SessionProps {
export interface TokenResult {
identity: string;
accessToken: string;
}
export type AgentState =
| "idle"
| "listening"
| "speaking"
| "thinking"
| "offline"
| "starting";
}