voicecc 1.2.9 → 1.2.10

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "voicecc",
3
- "version": "1.2.9",
3
+ "version": "1.2.10",
4
4
  "description": "Voice Agent Platform running on Claude Code -- create and deploy conversational voice agents with ElevenLabs STT/TTS and VAD",
5
5
  "repository": {
6
6
  "type": "git",
@@ -234,6 +234,7 @@ class ClaudeLLMService(LLMService):
234
234
  permission_mode="bypassPermissions",
235
235
  include_partial_messages=True,
236
236
  max_thinking_tokens=0,
237
+ setting_sources=["user", "project", "local"],
237
238
  )
238
239
  self._client = ClaudeSDKClient(options=options)
239
240
 
@@ -138,6 +138,7 @@ async def get_or_create_session(session_key: str, agent_id: str | None = None) -
138
138
  permission_mode="bypassPermissions",
139
139
  include_partial_messages=True,
140
140
  max_thinking_tokens=10000,
141
+ setting_sources=["user", "project", "local"],
141
142
  )
142
143
 
143
144
  client = ClaudeSDKClient(options=options)
@@ -315,6 +315,7 @@ async def _run_heartbeat_session(
315
315
  permission_mode="bypassPermissions",
316
316
  include_partial_messages=True,
317
317
  max_thinking_tokens=0,
318
+ setting_sources=["user", "project", "local"],
318
319
  )
319
320
  client = ClaudeSDKClient(options=options)
320
321
  await client.connect()