@ouro.bot/cli 0.1.0-alpha.602 → 0.1.0-alpha.605

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.
@@ -6,7 +6,7 @@
6
6
  <meta name="color-scheme" content="dark" />
7
7
  <title>Ouro Mailbox</title>
8
8
  <meta name="description" content="The daemon-hosted shared orientation surface for agents alive on this machine." />
9
- <script type="module" crossorigin src="/assets/index-B-461hes.js"></script>
9
+ <script type="module" crossorigin src="/assets/index-CtUWEo-S.js"></script>
10
10
  <link rel="stylesheet" crossorigin href="/assets/index-BPr5vNuM.css">
11
11
  </head>
12
12
  <body>
@@ -1158,7 +1158,7 @@ const OPENAI_REALTIME_PCMS_BYTES_PER_MS = 8;
1158
1158
  const OPENAI_REALTIME_DEFAULT_NOISE_REDUCTION = "near_field";
1159
1159
  const OPENAI_REALTIME_DEFAULT_VAD_THRESHOLD = 0.78;
1160
1160
  const OPENAI_REALTIME_DEFAULT_VAD_PREFIX_PADDING_MS = 300;
1161
- const OPENAI_REALTIME_DEFAULT_VAD_SILENCE_DURATION_MS = 650;
1161
+ const OPENAI_REALTIME_DEFAULT_VAD_SILENCE_DURATION_MS = 900;
1162
1162
  const OPENAI_REALTIME_DEFAULT_VAD_IDLE_TIMEOUT_MS = 7_000;
1163
1163
  const OPENAI_REALTIME_MAX_OUTPUT_TOKENS = 220;
1164
1164
  const OPENAI_REALTIME_BARGE_IN_MIN_SPEECH_MS = 260;
@@ -1168,7 +1168,7 @@ const OPENAI_REALTIME_MAX_VOICE_SPEED = 1.5;
1168
1168
  const OPENAI_REALTIME_RESPONSE_CREATE_GRACE_MS = 50;
1169
1169
  const OPENAI_REALTIME_RESPONSE_CREATE_CONFLICT_BACKOFF_MS = 1_000;
1170
1170
  const OPENAI_REALTIME_TOOL_PRESENCE_DELAY_MS = 900;
1171
- const OPENAI_REALTIME_USER_TURN_RESPONSE_DELAY_MS = 700;
1171
+ const OPENAI_REALTIME_USER_TURN_RESPONSE_DELAY_MS = 1_000;
1172
1172
  const OPENAI_SIP_OUTBOUND_AMD_GREETING_TIMEOUT_MS = 10_000;
1173
1173
  const OPENAI_SIP_UNSUPPORTED_TOOL_NAMES = new Set();
1174
1174
  const OPENAI_SIP_DEFAULT_API_BASE_URL = "https://api.openai.com/v1";
@@ -1458,6 +1458,7 @@ async function buildRealtimeVoiceInstructions(options) {
1458
1458
  return [
1459
1459
  `You are ${options.agentName} in the live Voice sense.`,
1460
1460
  "This is the same agent identity as every other Ouro surface. Voice is not a reduced or alternate self.",
1461
+ `Never identify yourself as ChatGPT, GPT, an AI model, an OpenAI assistant, or "powered by" any provider. You are ${options.agentName}. The transport voice and the realtime model are infrastructure, not identity. If a caller asks what you are, answer from your own identity (per IDENTITY/SOUL below); do not name the provider.`,
1461
1462
  options.friend ? `Resolved voice friend: ${options.friend.name || options.friend.id} (friendId=${options.friend.id}, trust=${options.friend.trustLevel ?? "friend"}, role=${options.friend.role ?? "friend"}). Use this same friend record and trust context for relationship awareness and tool permissions across voice, text, mail, and every other sense.` : "",
1462
1463
  `Current native Realtime provider config for this call: model=${options.realtimeModel?.trim() || OPENAI_REALTIME_DEFAULT_MODEL}, voice=${options.realtimeVoice?.trim() || OPENAI_REALTIME_DEFAULT_VOICE}${options.realtimeVoiceSpeed === undefined ? "" : `, speed=${options.realtimeVoiceSpeed}`}.`,
1463
1464
  options.realtimeVoiceStyle?.trim()
@@ -1465,7 +1466,8 @@ async function buildRealtimeVoiceInstructions(options) {
1465
1466
  : "",
1466
1467
  "Speak as yourself through live audio. Follow voice/style preferences from identity notes; do not say you lack identity, preferences, or agency because the provider voice is configured by the transport.",
1467
1468
  "Audio is synchronous. Default to one short sentence. Use two short sentences only when needed. Do not use markdown, lists, or long explanations unless the caller explicitly asks.",
1468
- "Do not treat every tiny silence as your turn. Let the caller finish the thought, especially if they pause mid-sentence.",
1469
+ "Speak at a calm, unhurried pace. Slower than feels natural for chat — give the caller time to track each phrase, and leave small breaths between sentences. Never rush a reply.",
1470
+ "Do not jump in on the caller's silence. Wait for them to finish their thought — natural mid-sentence pauses can be 1–2 seconds, and that is not your turn. Only respond after the caller has clearly handed it over (a direct question, a closing-rise tone, or a definite stop).",
1469
1471
  "If the caller interrupts, stop the older path and answer the newest thing first.",
1470
1472
  "If the caller says they are counting, measuring latency, testing lag, waiting, or wants you quiet, say at most 'got it' and then stay silent until they ask or say something that needs an answer.",
1471
1473
  "Use tools for outside facts or side effects. While a tool is running, give at most one tiny preamble, then summarize the result compactly when it returns.",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ouro.bot/cli",
3
- "version": "0.1.0-alpha.602",
3
+ "version": "0.1.0-alpha.605",
4
4
  "main": "dist/heart/daemon/ouro-entry.js",
5
5
  "bin": {
6
6
  "cli": "dist/heart/daemon/ouro-bot-entry.js",