@0xmaxma/claude-gateway 2.0.2 → 2.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/agent/runner.js +1 -1
- package/dist/agent/runner.js.map +1 -1
- package/dist/orchestration/bridge.d.ts +1 -0
- package/dist/orchestration/bridge.d.ts.map +1 -1
- package/dist/orchestration/bridge.js +7 -0
- package/dist/orchestration/bridge.js.map +1 -1
- package/dist/orchestration/process-turn.js +1 -1
- package/dist/orchestration/process-turn.js.map +1 -1
- package/dist/orchestration/runtime.d.ts +1 -1
- package/dist/orchestration/runtime.d.ts.map +1 -1
- package/dist/orchestration/runtime.js +45 -15
- package/dist/orchestration/runtime.js.map +1 -1
- package/dist/orchestration/store.d.ts.map +1 -1
- package/dist/orchestration/store.js +31 -1
- package/dist/orchestration/store.js.map +1 -1
- package/dist/orchestration/task-questions.d.ts +23 -5
- package/dist/orchestration/task-questions.d.ts.map +1 -1
- package/dist/orchestration/task-questions.js +126 -54
- package/dist/orchestration/task-questions.js.map +1 -1
- package/dist/orchestration/tasks/service.d.ts +2 -0
- package/dist/orchestration/tasks/service.d.ts.map +1 -1
- package/dist/orchestration/tasks/service.js +4 -0
- package/dist/orchestration/tasks/service.js.map +1 -1
- package/dist/voice/session.d.ts.map +1 -1
- package/dist/voice/session.js +7 -1
- package/dist/voice/session.js.map +1 -1
- package/mcp/tools/tasks/module.ts +1 -0
- package/package.json +1 -1
package/dist/agent/runner.js
CHANGED
|
@@ -404,7 +404,7 @@ class AgentRunner extends events_1.EventEmitter {
|
|
|
404
404
|
await runtime.flushHistory();
|
|
405
405
|
return task;
|
|
406
406
|
}
|
|
407
|
-
stopVoiceResponse(sessionId) { this.orchestration?.stopResponse(sessionId); }
|
|
407
|
+
stopVoiceResponse(sessionId) { this.orchestration?.stopResponse(sessionId, 'barge-in'); }
|
|
408
408
|
async sendOrchestratedApi(sessionId, chatId, message, opts, onText, onTool) {
|
|
409
409
|
const semantic = this.agentConfig.orchestration?.conversation?.semanticIntake === true;
|
|
410
410
|
if (!semantic && this.pendingApiSessions.has(sessionId))
|