osborn 0.9.29 → 0.9.30

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.
@@ -19,9 +19,9 @@ export class RecallClient extends EventEmitter {
19
19
  meeting_url: meetingUrl,
20
20
  bot_name: botName,
21
21
  recording_config: {
22
- // `transcript: true` was rejected as "Expected a dictionary, but got bool" —
23
- // omit; `transcription_options` below already configures the transcript provider.
24
- real_time_endpoints: [{
22
+ // Field names must match Recall API exactly (no underscore in realtime_endpoints).
23
+ // real_time_endpoints was silently ignored API uses realtime_endpoints.
24
+ realtime_endpoints: [{
25
25
  type: 'webhook',
26
26
  config: {
27
27
  url: `${webhookBaseUrl}/webhook/recall`,
@@ -30,7 +30,7 @@ export class RecallClient extends EventEmitter {
30
30
  }],
31
31
  transcription_options: {
32
32
  provider: 'assembly_ai',
33
- mode: 'prioritize_low_latency', // default delays transcripts 3-10 minutes
33
+ mode: 'prioritize_low_latency',
34
34
  },
35
35
  },
36
36
  output_media: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "osborn",
3
- "version": "0.9.29",
3
+ "version": "0.9.30",
4
4
  "description": "Voice AI coding assistant - local agent that connects to Osborn frontend",
5
5
  "type": "module",
6
6
  "bin": {