We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8c9144a commit 48eb837Copy full SHA for 48eb837
2 files changed
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "gitclaw",
3
- "version": "1.1.5",
+ "version": "1.1.6",
4
"description": "A universal git-native multimodal always learning AI Agent (TinyHuman)",
5
"author": "shreyaskapale",
6
"license": "MIT",
src/voice/openai-realtime.ts
@@ -29,7 +29,7 @@ export class OpenAIRealtimeAdapter implements MultimodalAdapter {
29
this.onMessage = opts.onMessage;
30
this.toolHandler = opts.toolHandler;
31
32
- const model = this.config.model || "gpt-realtime-1.5";
+ const model = this.config.model || "gpt-realtime-2025-08-28";
33
const url = `wss://api.openai.com/v1/realtime?model=${model}`;
34
35
// Try direct WebSocket with headers first (native Node.js / real server)
0 commit comments