@smartytalent/openai-tools 0.1.33-dev.51 → 0.1.33-dev.53
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 +139 -0
- package/package.json +1 -1
package/dist/tools.json
CHANGED
|
@@ -5867,6 +5867,10 @@
|
|
|
5867
5867
|
],
|
|
5868
5868
|
"description": "Renderer hint derived from contentType + conversion outputs.\nSet by the file service after conversion. `unknown` for\ncontent types with no preview pipeline."
|
|
5869
5869
|
},
|
|
5870
|
+
"detectedLanguage": {
|
|
5871
|
+
"type": "string",
|
|
5872
|
+
"description": "BCP-47 code for the source content's primary language,\ndetected during AI extraction. Transcript language for\nvideo/audio, document body language for PDF/image.\nStable per-file. Drives the translation pipeline:\nAI extraction outputs canonical en-US, then the file AI\nLambda translates `summary` (and any future fields in\nFile.TRANSLATION_FIELDS) into the tenant's target locale.\nSource content (transcript / rawText) stays verbatim in\nthis language - we only translate AI-derived synthesis text."
|
|
5873
|
+
},
|
|
5870
5874
|
"sizeBytes": {
|
|
5871
5875
|
"type": "integer",
|
|
5872
5876
|
"description": "File size in bytes. Stable post-upload."
|
|
@@ -6044,6 +6048,10 @@
|
|
|
6044
6048
|
],
|
|
6045
6049
|
"description": "Renderer hint derived from contentType + conversion outputs.\nSet by the file service after conversion. `unknown` for\ncontent types with no preview pipeline."
|
|
6046
6050
|
},
|
|
6051
|
+
"detectedLanguage": {
|
|
6052
|
+
"type": "string",
|
|
6053
|
+
"description": "BCP-47 code for the source content's primary language,\ndetected during AI extraction. Transcript language for\nvideo/audio, document body language for PDF/image.\nStable per-file. Drives the translation pipeline:\nAI extraction outputs canonical en-US, then the file AI\nLambda translates `summary` (and any future fields in\nFile.TRANSLATION_FIELDS) into the tenant's target locale.\nSource content (transcript / rawText) stays verbatim in\nthis language - we only translate AI-derived synthesis text."
|
|
6054
|
+
},
|
|
6047
6055
|
"sizeBytes": {
|
|
6048
6056
|
"type": "integer",
|
|
6049
6057
|
"description": "File size in bytes. Stable post-upload."
|
|
@@ -14624,6 +14632,131 @@
|
|
|
14624
14632
|
}
|
|
14625
14633
|
}
|
|
14626
14634
|
},
|
|
14635
|
+
{
|
|
14636
|
+
"type": "function",
|
|
14637
|
+
"function": {
|
|
14638
|
+
"name": "create_meeting_ai_attendee",
|
|
14639
|
+
"description": "Create Meeting AI Attendee",
|
|
14640
|
+
"parameters": {
|
|
14641
|
+
"title": "CreateMeetingAiAttendeeRequestBody",
|
|
14642
|
+
"type": "object",
|
|
14643
|
+
"required": [
|
|
14644
|
+
"data"
|
|
14645
|
+
],
|
|
14646
|
+
"properties": {
|
|
14647
|
+
"data": {
|
|
14648
|
+
"title": "CreateMeetingAiAttendeeRequestBodyData",
|
|
14649
|
+
"type": "object",
|
|
14650
|
+
"required": [
|
|
14651
|
+
"type",
|
|
14652
|
+
"attributes"
|
|
14653
|
+
],
|
|
14654
|
+
"properties": {
|
|
14655
|
+
"type": {
|
|
14656
|
+
"type": "string",
|
|
14657
|
+
"enum": [
|
|
14658
|
+
"ai-attendees"
|
|
14659
|
+
]
|
|
14660
|
+
},
|
|
14661
|
+
"attributes": {
|
|
14662
|
+
"title": "MeetingAiAttendeeSettingsSchema",
|
|
14663
|
+
"type": "object",
|
|
14664
|
+
"properties": {
|
|
14665
|
+
"mode": {
|
|
14666
|
+
"type": "string",
|
|
14667
|
+
"enum": [
|
|
14668
|
+
"assistant",
|
|
14669
|
+
"translator"
|
|
14670
|
+
],
|
|
14671
|
+
"default": "assistant"
|
|
14672
|
+
},
|
|
14673
|
+
"displayName": {
|
|
14674
|
+
"type": "string",
|
|
14675
|
+
"default": "Boe"
|
|
14676
|
+
},
|
|
14677
|
+
"voice": {
|
|
14678
|
+
"type": "string",
|
|
14679
|
+
"default": "alloy"
|
|
14680
|
+
},
|
|
14681
|
+
"language": {
|
|
14682
|
+
"type": "string",
|
|
14683
|
+
"description": "Reply language for assistant mode (e.g. English)"
|
|
14684
|
+
},
|
|
14685
|
+
"sourceLanguage": {
|
|
14686
|
+
"type": "string",
|
|
14687
|
+
"description": "Translator mode: source language (e.g. Polish)"
|
|
14688
|
+
},
|
|
14689
|
+
"targetLanguage": {
|
|
14690
|
+
"type": "string",
|
|
14691
|
+
"description": "Translator mode: target language (e.g. English)"
|
|
14692
|
+
},
|
|
14693
|
+
"persona": {
|
|
14694
|
+
"type": "string",
|
|
14695
|
+
"description": "Optional persona text appended to the base system prompt"
|
|
14696
|
+
}
|
|
14697
|
+
}
|
|
14698
|
+
}
|
|
14699
|
+
}
|
|
14700
|
+
}
|
|
14701
|
+
}
|
|
14702
|
+
}
|
|
14703
|
+
}
|
|
14704
|
+
},
|
|
14705
|
+
{
|
|
14706
|
+
"type": "function",
|
|
14707
|
+
"function": {
|
|
14708
|
+
"name": "list_meeting_ai_attendees",
|
|
14709
|
+
"description": "List Meeting AI Attendees",
|
|
14710
|
+
"parameters": {
|
|
14711
|
+
"type": "object",
|
|
14712
|
+
"properties": {}
|
|
14713
|
+
}
|
|
14714
|
+
}
|
|
14715
|
+
},
|
|
14716
|
+
{
|
|
14717
|
+
"type": "function",
|
|
14718
|
+
"function": {
|
|
14719
|
+
"name": "meeting_ai_attendees_options",
|
|
14720
|
+
"description": "Meeting AI Attendees Options",
|
|
14721
|
+
"parameters": {
|
|
14722
|
+
"type": "object",
|
|
14723
|
+
"properties": {}
|
|
14724
|
+
}
|
|
14725
|
+
}
|
|
14726
|
+
},
|
|
14727
|
+
{
|
|
14728
|
+
"type": "function",
|
|
14729
|
+
"function": {
|
|
14730
|
+
"name": "show_meeting_ai_attendee",
|
|
14731
|
+
"description": "Show Meeting AI Attendee",
|
|
14732
|
+
"parameters": {
|
|
14733
|
+
"type": "object",
|
|
14734
|
+
"properties": {}
|
|
14735
|
+
}
|
|
14736
|
+
}
|
|
14737
|
+
},
|
|
14738
|
+
{
|
|
14739
|
+
"type": "function",
|
|
14740
|
+
"function": {
|
|
14741
|
+
"name": "delete_meeting_ai_attendee",
|
|
14742
|
+
"description": "Dismiss Meeting AI Attendee",
|
|
14743
|
+
"parameters": {
|
|
14744
|
+
"type": "object",
|
|
14745
|
+
"properties": {}
|
|
14746
|
+
}
|
|
14747
|
+
}
|
|
14748
|
+
},
|
|
14749
|
+
{
|
|
14750
|
+
"type": "function",
|
|
14751
|
+
"function": {
|
|
14752
|
+
"name": "meeting_ai_attendee_options",
|
|
14753
|
+
"description": "Meeting AI Attendee Options",
|
|
14754
|
+
"parameters": {
|
|
14755
|
+
"type": "object",
|
|
14756
|
+
"properties": {}
|
|
14757
|
+
}
|
|
14758
|
+
}
|
|
14759
|
+
},
|
|
14627
14760
|
{
|
|
14628
14761
|
"type": "function",
|
|
14629
14762
|
"function": {
|
|
@@ -17578,6 +17711,12 @@
|
|
|
17578
17711
|
"questionId": {
|
|
17579
17712
|
"type": "string",
|
|
17580
17713
|
"description": "Optional question id this upload is for. Used for S3 key partitioning + downstream join hint; not auth-relevant."
|
|
17714
|
+
},
|
|
17715
|
+
"durationMs": {
|
|
17716
|
+
"type": "integer",
|
|
17717
|
+
"format": "int64",
|
|
17718
|
+
"minimum": 0,
|
|
17719
|
+
"description": "Optional client-measured recording duration in milliseconds.\nSet by the candidate FE for video-recording / audio-recording\nquestions where MediaRecorder doesn't finalize the container's\nDuration element. Used as a fallback when ffprobe / re-mux\ncan't derive duration from the file alone. Backend persists\nit to attempt.meta.pendingUploads[fileKey] and surfaces it\nvia attempt:show -> fileRefs so the workflow's process_attachments\nstep forwards it to file:process; the file row then carries\nattributes.durationSeconds + meta.durationSource='client'\nuntil ffmpeg re-mux overwrites with a more reliable value."
|
|
17581
17720
|
}
|
|
17582
17721
|
}
|
|
17583
17722
|
}
|