Use agent status from metadata channels (#10)

This commit is contained in:
David Zhao
2024-01-15 13:51:56 -08:00
committed by GitHub
parent 0d00b73f59
commit e1cc9a08a2
6 changed files with 172 additions and 109 deletions

View File

@@ -14,3 +14,10 @@ export interface TokenResult {
identity: string;
accessToken: string;
}
export type AgentState =
| "listening"
| "speaking"
| "thinking"
| "offline"
| "starting";