@smartytalent/openai-tools 0.1.33-dev.49 → 0.1.33-dev.50

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.
Files changed (2) hide show
  1. package/dist/tools.json +4 -14
  2. package/package.json +1 -1
package/dist/tools.json CHANGED
@@ -5877,7 +5877,7 @@
5877
5877
  },
5878
5878
  "pages": {
5879
5879
  "type": "array",
5880
- "description": "Per-page metadata for paginated content (PDFs converted to\nPNGs by Poppler, multi-page images). Stable structure - page\ndimensions don't change request-to-request. The presigned\nURL for each page render lives at\n`meta.previewUrls.pages[i]`, indexed by the same position.\nNull for non-paginated content (video, audio, single text).",
5880
+ "description": "Per-page metadata for paginated content (PDFs converted to\nPNGs by Poppler, multi-page images). Stable structure ONLY -\ndimensions, no content. The presigned URL for each page\nrender lives at `meta.previewUrls.pages[i]`, indexed by the\nsame position. Per-page text content lives in the result\nJSON pointed at by `meta.resultRef`. Null for non-paginated\ncontent.",
5881
5881
  "items": {
5882
5882
  "type": "object",
5883
5883
  "properties": {
@@ -5896,15 +5896,10 @@
5896
5896
  }
5897
5897
  }
5898
5898
  },
5899
- "transcript": {
5900
- "type": "object",
5901
- "additionalProperties": true,
5902
- "description": "Multilingual transcript of media content. Locale-keyed\n(e.g. {\"en-US\": \"...\", \"pl-PL\": \"...\"}). Set by ffmpeg\nextraction + downstream AI translation. Null for\nnon-media content."
5903
- },
5904
5899
  "summary": {
5905
5900
  "type": "object",
5906
5901
  "additionalProperties": true,
5907
- "description": "Multilingual AI-generated summary. Same shape as transcript.\nUseful for recruiter-side scan UIs that don't want to play\nback the full media."
5902
+ "description": "Multilingual AI-generated summary, locale-keyed (e.g.\n{\"en-US\": \"...\", \"pl-PL\": \"...\"}). Bounded by design (~1-2\nparagraphs, ~500 bytes per locale) so it fits cleanly on\nthe row and works in scan UIs / list views without an\nextra fetch. Full transcript / raw OCR / per-page text are\nNOT here - they live in the result JSON pointed at by\n`meta.resultRef`."
5908
5903
  },
5909
5904
  "timestamps": {
5910
5905
  "title": "ResourceTimestampsSchema",
@@ -6059,7 +6054,7 @@
6059
6054
  },
6060
6055
  "pages": {
6061
6056
  "type": "array",
6062
- "description": "Per-page metadata for paginated content (PDFs converted to\nPNGs by Poppler, multi-page images). Stable structure - page\ndimensions don't change request-to-request. The presigned\nURL for each page render lives at\n`meta.previewUrls.pages[i]`, indexed by the same position.\nNull for non-paginated content (video, audio, single text).",
6057
+ "description": "Per-page metadata for paginated content (PDFs converted to\nPNGs by Poppler, multi-page images). Stable structure ONLY -\ndimensions, no content. The presigned URL for each page\nrender lives at `meta.previewUrls.pages[i]`, indexed by the\nsame position. Per-page text content lives in the result\nJSON pointed at by `meta.resultRef`. Null for non-paginated\ncontent.",
6063
6058
  "items": {
6064
6059
  "type": "object",
6065
6060
  "properties": {
@@ -6078,15 +6073,10 @@
6078
6073
  }
6079
6074
  }
6080
6075
  },
6081
- "transcript": {
6082
- "type": "object",
6083
- "additionalProperties": true,
6084
- "description": "Multilingual transcript of media content. Locale-keyed\n(e.g. {\"en-US\": \"...\", \"pl-PL\": \"...\"}). Set by ffmpeg\nextraction + downstream AI translation. Null for\nnon-media content."
6085
- },
6086
6076
  "summary": {
6087
6077
  "type": "object",
6088
6078
  "additionalProperties": true,
6089
- "description": "Multilingual AI-generated summary. Same shape as transcript.\nUseful for recruiter-side scan UIs that don't want to play\nback the full media."
6079
+ "description": "Multilingual AI-generated summary, locale-keyed (e.g.\n{\"en-US\": \"...\", \"pl-PL\": \"...\"}). Bounded by design (~1-2\nparagraphs, ~500 bytes per locale) so it fits cleanly on\nthe row and works in scan UIs / list views without an\nextra fetch. Full transcript / raw OCR / per-page text are\nNOT here - they live in the result JSON pointed at by\n`meta.resultRef`."
6090
6080
  },
6091
6081
  "timestamps": {
6092
6082
  "title": "ResourceTimestampsSchema",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartytalent/openai-tools",
3
- "version": "0.1.33-dev.49",
3
+ "version": "0.1.33-dev.50",
4
4
  "description": "OpenAI function/tool definitions for SmartyTalent API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",