@smartytalent/openai-tools 0.1.33-dev.69 → 0.1.33-dev.70
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/tools.json +52 -44
- package/package.json +1 -1
package/dist/tools.json
CHANGED
|
@@ -14078,7 +14078,7 @@
|
|
|
14078
14078
|
},
|
|
14079
14079
|
"recordingUrl": {
|
|
14080
14080
|
"type": "string",
|
|
14081
|
-
"description": "Post-meeting recording URL
|
|
14081
|
+
"description": "Post-meeting recording URL. Populated by different paths\ndepending on meetingType:\n - `chime`: presigned S3 URL minted on read (in showMeeting)\n once `concatenationStatus=success`. Null until then.\n - `recall`: written by the recall.ai webhook handler with\n the recall.ai-hosted recording URL.\n - `external`: null - no recording captured.\nFE should treat presence-not-null as \"playable\" regardless\nof meetingType."
|
|
14082
14082
|
},
|
|
14083
14083
|
"transcript": {
|
|
14084
14084
|
"type": "object",
|
|
@@ -14125,27 +14125,29 @@
|
|
|
14125
14125
|
"success",
|
|
14126
14126
|
"failed"
|
|
14127
14127
|
],
|
|
14128
|
-
"description": "Chime SDK Media Capture Pipeline lifecycle. Set by the Boe bot when it starts/stops the capture."
|
|
14128
|
+
"description": "Chime SDK Media Capture Pipeline lifecycle. Set by the Boe bot when it starts/stops the capture. Set only for `meetingType=chime`; null on recall/external."
|
|
14129
14129
|
},
|
|
14130
14130
|
"mediaCapturePipelineArn": {
|
|
14131
14131
|
"type": "string",
|
|
14132
|
-
"description": "Chime SDK Media Capture Pipeline ARN. Internal; FE shouldn't need this directly."
|
|
14132
|
+
"description": "Chime SDK Media Capture Pipeline ARN. Internal; FE shouldn't need this directly. Set only for `meetingType=chime`."
|
|
14133
14133
|
},
|
|
14134
14134
|
"recordingS3Prefix": {
|
|
14135
14135
|
"type": "string",
|
|
14136
|
-
"description": "S3 key prefix where capture pipeline wrote composited-video chunks. Inside the meeting service bucket."
|
|
14136
|
+
"description": "S3 key prefix where capture pipeline wrote composited-video chunks. Inside the meeting service bucket. Set only for `meetingType=chime`."
|
|
14137
14137
|
},
|
|
14138
14138
|
"recordingStartedAt": {
|
|
14139
14139
|
"type": "string",
|
|
14140
|
-
"format": "date-time"
|
|
14140
|
+
"format": "date-time",
|
|
14141
|
+
"description": "Set only for `meetingType=chime`."
|
|
14141
14142
|
},
|
|
14142
14143
|
"recordingEndedAt": {
|
|
14143
14144
|
"type": "string",
|
|
14144
|
-
"format": "date-time"
|
|
14145
|
+
"format": "date-time",
|
|
14146
|
+
"description": "Set only for `meetingType=chime`."
|
|
14145
14147
|
},
|
|
14146
14148
|
"recordingError": {
|
|
14147
14149
|
"type": "string",
|
|
14148
|
-
"description": "Set when recordingStatus=failed
|
|
14150
|
+
"description": "Set when `recordingStatus=failed`. Includes the AWS error name + message. Set only for `meetingType=chime`."
|
|
14149
14151
|
},
|
|
14150
14152
|
"concatenationStatus": {
|
|
14151
14153
|
"type": "string",
|
|
@@ -14154,26 +14156,29 @@
|
|
|
14154
14156
|
"success",
|
|
14155
14157
|
"failed"
|
|
14156
14158
|
],
|
|
14157
|
-
"description": "Chime SDK Media Concatenation Pipeline lifecycle. Concat merges the ~5s capture chunks into one composited-video.mp4."
|
|
14159
|
+
"description": "Chime SDK Media Concatenation Pipeline lifecycle. Concat merges the ~5s capture chunks into one composited-video.mp4. Flipped to `success` by the ffmpeg-extract Lambda the moment the merged MP4 lands in S3. Set only for `meetingType=chime`."
|
|
14158
14160
|
},
|
|
14159
14161
|
"concatenationPipelineArn": {
|
|
14160
14162
|
"type": "string",
|
|
14161
|
-
"description": "Concat pipeline ARN. Last path component is the {concatId} used as the merged MP4 filename."
|
|
14163
|
+
"description": "Concat pipeline ARN. Last path component is the {concatId} used as the merged MP4 filename. Set only for `meetingType=chime`."
|
|
14162
14164
|
},
|
|
14163
14165
|
"concatenationS3Prefix": {
|
|
14164
14166
|
"type": "string",
|
|
14165
|
-
"description": "S3 key prefix where the concat output lands. Usually {shardId}/{meetingId}/merged/."
|
|
14167
|
+
"description": "S3 key prefix where the concat output lands. Usually {shardId}/{meetingId}/merged/. Set only for `meetingType=chime`."
|
|
14166
14168
|
},
|
|
14167
14169
|
"concatenationStartedAt": {
|
|
14168
14170
|
"type": "string",
|
|
14169
|
-
"format": "date-time"
|
|
14171
|
+
"format": "date-time",
|
|
14172
|
+
"description": "Set only for `meetingType=chime`."
|
|
14170
14173
|
},
|
|
14171
14174
|
"concatenationEndedAt": {
|
|
14172
14175
|
"type": "string",
|
|
14173
|
-
"format": "date-time"
|
|
14176
|
+
"format": "date-time",
|
|
14177
|
+
"description": "Set only for `meetingType=chime`."
|
|
14174
14178
|
},
|
|
14175
14179
|
"concatenationError": {
|
|
14176
|
-
"type": "string"
|
|
14180
|
+
"type": "string",
|
|
14181
|
+
"description": "Set when `concatenationStatus=failed`. Set only for `meetingType=chime`."
|
|
14177
14182
|
},
|
|
14178
14183
|
"aiProcessingStatus": {
|
|
14179
14184
|
"type": "string",
|
|
@@ -14264,12 +14269,8 @@
|
|
|
14264
14269
|
"description": "BCP-47 primary language of the meeting, auto-detected by gpt-audio."
|
|
14265
14270
|
},
|
|
14266
14271
|
"summary": {
|
|
14267
|
-
"type": "string",
|
|
14268
|
-
"description": "AI-generated 2-4 paragraph summary in the source languageCode. Use summaryByLocale for translated copies."
|
|
14269
|
-
},
|
|
14270
|
-
"summaryByLocale": {
|
|
14271
14272
|
"type": "object",
|
|
14272
|
-
"description": "
|
|
14273
|
+
"description": "AI-generated 2-4 paragraph summary per locale. Keyed by\nBCP-47 locale (e.g. `en-US`, `pl-PL`); values are strings.\nThe source language (matches `languageCode`) is always\npresent; tenant target locales are added by the\npost-meeting AI translation step. FE selects the locale to\nrender (no auto-flatten on read). Same shape as `keyNotes`.",
|
|
14273
14274
|
"additionalProperties": {
|
|
14274
14275
|
"type": "string"
|
|
14275
14276
|
}
|
|
@@ -14279,10 +14280,13 @@
|
|
|
14279
14280
|
"format": "date-time"
|
|
14280
14281
|
},
|
|
14281
14282
|
"keyNotes": {
|
|
14282
|
-
"type": "
|
|
14283
|
-
"description": "3-5 prose bullets distilling the meeting's
|
|
14284
|
-
"
|
|
14285
|
-
"type": "
|
|
14283
|
+
"type": "object",
|
|
14284
|
+
"description": "3-5 prose bullets per locale distilling the meeting's\nsubstance. Keyed by BCP-47 locale (e.g. `en-US`, `pl-PL`);\nvalues are arrays of strings. The source language (matches\n`languageCode`) is always present; tenant target locales are\nadded by the post-meeting AI translation step. FE selects\nthe locale to render (no auto-flatten on read).",
|
|
14285
|
+
"additionalProperties": {
|
|
14286
|
+
"type": "array",
|
|
14287
|
+
"items": {
|
|
14288
|
+
"type": "string"
|
|
14289
|
+
}
|
|
14286
14290
|
}
|
|
14287
14291
|
},
|
|
14288
14292
|
"topicsDiscussed": {
|
|
@@ -14644,7 +14648,7 @@
|
|
|
14644
14648
|
},
|
|
14645
14649
|
"recordingUrl": {
|
|
14646
14650
|
"type": "string",
|
|
14647
|
-
"description": "Post-meeting recording URL
|
|
14651
|
+
"description": "Post-meeting recording URL. Populated by different paths\ndepending on meetingType:\n - `chime`: presigned S3 URL minted on read (in showMeeting)\n once `concatenationStatus=success`. Null until then.\n - `recall`: written by the recall.ai webhook handler with\n the recall.ai-hosted recording URL.\n - `external`: null - no recording captured.\nFE should treat presence-not-null as \"playable\" regardless\nof meetingType."
|
|
14648
14652
|
},
|
|
14649
14653
|
"transcript": {
|
|
14650
14654
|
"type": "object",
|
|
@@ -14691,27 +14695,29 @@
|
|
|
14691
14695
|
"success",
|
|
14692
14696
|
"failed"
|
|
14693
14697
|
],
|
|
14694
|
-
"description": "Chime SDK Media Capture Pipeline lifecycle. Set by the Boe bot when it starts/stops the capture."
|
|
14698
|
+
"description": "Chime SDK Media Capture Pipeline lifecycle. Set by the Boe bot when it starts/stops the capture. Set only for `meetingType=chime`; null on recall/external."
|
|
14695
14699
|
},
|
|
14696
14700
|
"mediaCapturePipelineArn": {
|
|
14697
14701
|
"type": "string",
|
|
14698
|
-
"description": "Chime SDK Media Capture Pipeline ARN. Internal; FE shouldn't need this directly."
|
|
14702
|
+
"description": "Chime SDK Media Capture Pipeline ARN. Internal; FE shouldn't need this directly. Set only for `meetingType=chime`."
|
|
14699
14703
|
},
|
|
14700
14704
|
"recordingS3Prefix": {
|
|
14701
14705
|
"type": "string",
|
|
14702
|
-
"description": "S3 key prefix where capture pipeline wrote composited-video chunks. Inside the meeting service bucket."
|
|
14706
|
+
"description": "S3 key prefix where capture pipeline wrote composited-video chunks. Inside the meeting service bucket. Set only for `meetingType=chime`."
|
|
14703
14707
|
},
|
|
14704
14708
|
"recordingStartedAt": {
|
|
14705
14709
|
"type": "string",
|
|
14706
|
-
"format": "date-time"
|
|
14710
|
+
"format": "date-time",
|
|
14711
|
+
"description": "Set only for `meetingType=chime`."
|
|
14707
14712
|
},
|
|
14708
14713
|
"recordingEndedAt": {
|
|
14709
14714
|
"type": "string",
|
|
14710
|
-
"format": "date-time"
|
|
14715
|
+
"format": "date-time",
|
|
14716
|
+
"description": "Set only for `meetingType=chime`."
|
|
14711
14717
|
},
|
|
14712
14718
|
"recordingError": {
|
|
14713
14719
|
"type": "string",
|
|
14714
|
-
"description": "Set when recordingStatus=failed
|
|
14720
|
+
"description": "Set when `recordingStatus=failed`. Includes the AWS error name + message. Set only for `meetingType=chime`."
|
|
14715
14721
|
},
|
|
14716
14722
|
"concatenationStatus": {
|
|
14717
14723
|
"type": "string",
|
|
@@ -14720,26 +14726,29 @@
|
|
|
14720
14726
|
"success",
|
|
14721
14727
|
"failed"
|
|
14722
14728
|
],
|
|
14723
|
-
"description": "Chime SDK Media Concatenation Pipeline lifecycle. Concat merges the ~5s capture chunks into one composited-video.mp4."
|
|
14729
|
+
"description": "Chime SDK Media Concatenation Pipeline lifecycle. Concat merges the ~5s capture chunks into one composited-video.mp4. Flipped to `success` by the ffmpeg-extract Lambda the moment the merged MP4 lands in S3. Set only for `meetingType=chime`."
|
|
14724
14730
|
},
|
|
14725
14731
|
"concatenationPipelineArn": {
|
|
14726
14732
|
"type": "string",
|
|
14727
|
-
"description": "Concat pipeline ARN. Last path component is the {concatId} used as the merged MP4 filename."
|
|
14733
|
+
"description": "Concat pipeline ARN. Last path component is the {concatId} used as the merged MP4 filename. Set only for `meetingType=chime`."
|
|
14728
14734
|
},
|
|
14729
14735
|
"concatenationS3Prefix": {
|
|
14730
14736
|
"type": "string",
|
|
14731
|
-
"description": "S3 key prefix where the concat output lands. Usually {shardId}/{meetingId}/merged/."
|
|
14737
|
+
"description": "S3 key prefix where the concat output lands. Usually {shardId}/{meetingId}/merged/. Set only for `meetingType=chime`."
|
|
14732
14738
|
},
|
|
14733
14739
|
"concatenationStartedAt": {
|
|
14734
14740
|
"type": "string",
|
|
14735
|
-
"format": "date-time"
|
|
14741
|
+
"format": "date-time",
|
|
14742
|
+
"description": "Set only for `meetingType=chime`."
|
|
14736
14743
|
},
|
|
14737
14744
|
"concatenationEndedAt": {
|
|
14738
14745
|
"type": "string",
|
|
14739
|
-
"format": "date-time"
|
|
14746
|
+
"format": "date-time",
|
|
14747
|
+
"description": "Set only for `meetingType=chime`."
|
|
14740
14748
|
},
|
|
14741
14749
|
"concatenationError": {
|
|
14742
|
-
"type": "string"
|
|
14750
|
+
"type": "string",
|
|
14751
|
+
"description": "Set when `concatenationStatus=failed`. Set only for `meetingType=chime`."
|
|
14743
14752
|
},
|
|
14744
14753
|
"aiProcessingStatus": {
|
|
14745
14754
|
"type": "string",
|
|
@@ -14830,12 +14839,8 @@
|
|
|
14830
14839
|
"description": "BCP-47 primary language of the meeting, auto-detected by gpt-audio."
|
|
14831
14840
|
},
|
|
14832
14841
|
"summary": {
|
|
14833
|
-
"type": "string",
|
|
14834
|
-
"description": "AI-generated 2-4 paragraph summary in the source languageCode. Use summaryByLocale for translated copies."
|
|
14835
|
-
},
|
|
14836
|
-
"summaryByLocale": {
|
|
14837
14842
|
"type": "object",
|
|
14838
|
-
"description": "
|
|
14843
|
+
"description": "AI-generated 2-4 paragraph summary per locale. Keyed by\nBCP-47 locale (e.g. `en-US`, `pl-PL`); values are strings.\nThe source language (matches `languageCode`) is always\npresent; tenant target locales are added by the\npost-meeting AI translation step. FE selects the locale to\nrender (no auto-flatten on read). Same shape as `keyNotes`.",
|
|
14839
14844
|
"additionalProperties": {
|
|
14840
14845
|
"type": "string"
|
|
14841
14846
|
}
|
|
@@ -14845,10 +14850,13 @@
|
|
|
14845
14850
|
"format": "date-time"
|
|
14846
14851
|
},
|
|
14847
14852
|
"keyNotes": {
|
|
14848
|
-
"type": "
|
|
14849
|
-
"description": "3-5 prose bullets distilling the meeting's
|
|
14850
|
-
"
|
|
14851
|
-
"type": "
|
|
14853
|
+
"type": "object",
|
|
14854
|
+
"description": "3-5 prose bullets per locale distilling the meeting's\nsubstance. Keyed by BCP-47 locale (e.g. `en-US`, `pl-PL`);\nvalues are arrays of strings. The source language (matches\n`languageCode`) is always present; tenant target locales are\nadded by the post-meeting AI translation step. FE selects\nthe locale to render (no auto-flatten on read).",
|
|
14855
|
+
"additionalProperties": {
|
|
14856
|
+
"type": "array",
|
|
14857
|
+
"items": {
|
|
14858
|
+
"type": "string"
|
|
14859
|
+
}
|
|
14852
14860
|
}
|
|
14853
14861
|
},
|
|
14854
14862
|
"topicsDiscussed": {
|