@mochabug/adapt-sdk 0.4.7 → 0.4.10
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/anthropic/index.d.ts.map +1 -1
- package/dist/cjs/anthropic.cjs +1 -1
- package/dist/cjs/anthropic.cjs.map +3 -3
- package/dist/cjs/gemini.cjs +1 -1
- package/dist/cjs/gemini.cjs.map +3 -3
- package/dist/esm/anthropic.mjs +1 -1
- package/dist/esm/anthropic.mjs.map +3 -3
- package/dist/esm/gemini.mjs +1 -1
- package/dist/esm/gemini.mjs.map +3 -3
- package/dist/gemini/gemini-fc.test.d.ts +2 -0
- package/dist/gemini/gemini-fc.test.d.ts.map +1 -0
- package/dist/gemini/index.d.ts +224 -19
- package/dist/gemini/index.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/esm/anthropic.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import{isSchema as oe,isValidSchema as V,validate as G}from"jtd";var H=new Set(["int8","uint8","int16","uint16","int32","uint32"]);function K(e){return e.length===0?"/":e.map(t=>/^\d+$/.test(t)?`[${t}]`:`.${t}`).join("")}function E(e,t){let r=e;for(let i=0;i<t.length-1&&(r&&typeof r=="object"&&t[i]in r);i++)r=r[t[i]];return r}function L(e,t){let r=e;for(let i of t)if(r&&typeof r=="object")r=r[i];else return;return r}function Y(e,t,r){let{instancePath:i,schemaPath:n}=e,o=K(i),s=n[n.length-1];if(s==="type"){let c=E(t,n)?.type;return c==="boolean"?`${o}: expected boolean`:c==="string"?`${o}: expected string`:c==="timestamp"?`${o}: expected timestamp string`:H.has(c)?`${o}: expected integer`:`${o}: expected number`}if(s==="enum"){let c=E(t,n)?.enum;return`${o}: expected one of [${c.join(", ")}]`}if(n.length>=2&&n[n.length-2]==="properties"&&s)return`${o==="/"?"":o}.${s}: missing required property`;if(s==="elements")return`${o}: expected array`;if(s==="properties"||s==="optionalProperties"||s==="values")return`${o}: expected object`;if(s==="discriminator")return`${o}: expected string discriminator`;if(s==="mapping"){let a=L(r,i);return`${o}: unknown variant "${a}"`}return n.length===0?`${o}: unexpected property`:`${o}: validation error at /${n.join("/")}`}function P(e,t,r){let i=r??e.definitions,n=i?{...e,definitions:i}:e;return V(n)?G(n,t,{maxDepth:W,maxErrors:z}).map(s=>Y(s,n,t)):e.ref?[`/: unknown ref "${e.ref}"`]:["/: invalid schema"]}var W=32,z=100;var b=32,w={int8:{minimum:-128,maximum:127},uint8:{minimum:0,maximum:255},int16:{minimum:-32768,maximum:32767},uint16:{minimum:0,maximum:65535},int32:{minimum:-2147483648,maximum:2147483647},uint32:{minimum:0,maximum:4294967295}},O={minimum:-34028235e31,maximum:34028235e31},k=`Must be a valid JSON value encoded as a string. For objects: '{"key": "value"}', for arrays: '[1, 2]', for primitives: '"hello"' or '42' or 'true' or 'null'.`,F=`The variant data encoded as a valid JSON string (e.g. '{"key": "value"}').`,M="Array of key-value entries representing a map/dictionary. Each entry has a string 'key' (the property name) and a 'value' (the property value).";function d(e,t){return t?[e,"null"]:e}function j(e,t){if(e===t)return!0;if(e==null||t==null||typeof e!=typeof t||typeof e!="object")return!1;if(Array.isArray(e))return Array.isArray(t)&&e.length===t.length&&e.every((o,s)=>j(o,t[s]));if(Array.isArray(t))return!1;let r=e,i=t,n=Object.keys(r);if(n.length!==Object.keys(i).length)return!1;for(let o of n)if(!(o in i)||!j(r[o],i[o]))return!1;return!0}function v(e){return!e||typeof e!="object"?!0:e.type||e.enum||e.elements||e.values||e.discriminator||e.ref||e.properties&&Object.keys(e.properties).length>0||e.optionalProperties&&Object.keys(e.optionalProperties).length>0?!1:(e.properties!==void 0||e.optionalProperties!==void 0)&&e.additionalProperties===!0?!0:!(e.properties!==void 0||e.optionalProperties!==void 0)}function R(e,t){let r=e,i=0;for(;r.ref&&i<b;){let n=t?.[r.ref];if(!n)return!1;r=n,i++}return i>=b?!1:v(r)}function A(e,t,r){let i=e.definitions,n=r(t,e,i,0),o=P(e,n,i);return o.length>0?{success:!1,errors:o}:{success:!0,kind:"json",data:n}}function X(e,t){if(typeof t!="object"||t===null)return{success:!1,errors:[`/: expected object with 'data' field for MIME type ${e}, got ${typeof t}`]};let r=t;if(typeof r.data!="string")return{success:!1,errors:[`/data: expected base64 string for MIME type ${e}, got ${typeof r.data}`]};let i={success:!0,kind:"binary",mimeType:e,data:new Uint8Array(Buffer.from(r.data,"base64"))};return typeof r.filename=="string"&&r.filename&&(i.filename=r.filename),i}function N(e,t,r){return e.mimeType?X(e.mimeType,t):e.jtdSchema?A(e.jtdSchema,t,r):{success:!1,errors:["Signal format has neither jtdSchema nor mimeType"]}}function x(e,t,r){let i=e.formats;if(!i||i.length===0)return{success:!1,errors:["Signal descriptor has no formats"]};if(i.length===1)return N(i[0],t,r);if(typeof t!="object"||t===null)return{success:!1,errors:[`/: expected object with format properties, got ${typeof t}`]};let n=t;for(let s=0;s<i.length;s++){let a=`format_${s}`;if(n[a]!==void 0&&n[a]!==null)return N(i[s],n[a],r)}if(e.optional)return{success:!0,kind:"json",data:null};let o=i.map((s,a)=>`format_${a}`);return{success:!1,errors:[`Signal '${e.name??"unnamed"}' is required but no format was provided. Set exactly one of: ${o.join(", ")}.`]}}function I(e,t,r){if(typeof t!="object"||t===null)return{success:!1,errors:["/: expected object with signal properties, got "+typeof t]};let i=t,n={},o=[];for(let s of e){if(!s.name)continue;let a=i[s.name];if(a==null)continue;let c=x(s,a,r);if(c.success)c.kind==="binary"?n[s.name]={data:c.data,mimeType:c.mimeType,filename:c.filename}:c.kind==="json"&&(n[s.name]=c.data);else for(let u of c.errors)o.push(`/${s.name}${u.startsWith("/")?"":": "}${u}`)}return o.length>0?{success:!1,errors:o}:{success:!0,kind:"signals",signals:n}}function S(e,t){if(!e||typeof e!="object")return e;let r={...e};return r.ref&&t.has(r.ref)&&(r.ref=t.get(r.ref)),r.properties&&(r.properties=Object.fromEntries(Object.entries(r.properties).map(([i,n])=>[i,S(n,t)]))),r.optionalProperties&&(r.optionalProperties=Object.fromEntries(Object.entries(r.optionalProperties).map(([i,n])=>[i,S(n,t)]))),r.elements&&(r.elements=S(r.elements,t)),r.values&&(r.values=S(r.values,t)),r.mapping&&(r.mapping=Object.fromEntries(Object.entries(r.mapping).map(([i,n])=>[i,S(n,t)]))),r.definitions&&delete r.definitions,r}function U(e){let t={},r=new Map;for(let n=0;n<e.length;n++){let o=e[n].formats;if(o)for(let s=0;s<o.length;s++){let a=o[s].jtdSchema?.definitions;if(!a||Object.keys(a).length===0)continue;let c=new Map,u=!1;for(let[p,f]of Object.entries(a)){let l=t[p];if(l&&!j(l,f)){u=!0;break}}if(u)for(let[p,f]of Object.entries(a)){let l=t[p];if(!(l&&j(l,f)))if(l){let h=1;for(;t[`${p}_${h}`];)h++;let C=`${p}_${h}`;c.set(p,C),t[C]=f}else t[p]=f}else for(let[p,f]of Object.entries(a))t[p]||(t[p]=f);c.size>0&&r.set(`${n}:${s}`,c)}}for(let[,n]of r)for(let[,o]of n)t[o]=S(t[o],n);let i=e.map((n,o)=>{let s=n.formats;if(!s)return n;let a=!1,c=s.map((u,p)=>{if(!u.jtdSchema)return u;let f=r.get(`${o}:${p}`),l=u.jtdSchema.definitions&&Object.keys(u.jtdSchema.definitions).length>0;if(!f&&!l)return u;a=!0;let h=f?S(u.jtdSchema,f):{...u.jtdSchema};return delete h.definitions,{...u,jtdSchema:h}});return a?{...n,formats:c}:n});return{mergedDefs:t,signalsCopy:i}}function J(e){return!e||typeof e!="object"?"any":e.ref?e.ref:e.type?e.type:e.enum?`one of: ${e.enum.join(", ")}`:e.elements?`array of ${J(e.elements)}`:e.values?`map of ${J(e.values)}`:e.properties||e.optionalProperties?"object":e.discriminator?`union on '${e.discriminator}'`:"any"}function _(e,t){let r=["Recursive nesting. This field accepts the same object structure as its parent with the following shape:"],i=[],n=[];if(t.properties)for(let[o,s]of Object.entries(t.properties))i.push(`${o} (${J(s)})`);if(t.optionalProperties)for(let[o,s]of Object.entries(t.optionalProperties))n.push(`${o} (${J(s)})`);if(i.length>0&&r.push(`Required: ${i.join(", ")}.`),n.length>0){let o=n.slice(0,8),s=n.length>8?`, and ${n.length-8} more`:"";r.push(`Optional: ${o.join(", ")}${s}.`)}return t.elements&&r.push(`Array of ${J(t.elements)}.`),t.values&&r.push(`Map with values of type ${J(t.values)}.`),r.join(" ")}function T(e){let t=[];if(!e||typeof e!="object")return t;if(e.ref&&t.push(e.ref),e.properties)for(let r of Object.values(e.properties))t.push(...T(r));if(e.optionalProperties)for(let r of Object.values(e.optionalProperties))t.push(...T(r));if(e.elements&&t.push(...T(e.elements)),e.values&&t.push(...T(e.values)),e.mapping)for(let r of Object.values(e.mapping))t.push(...T(r));return t}function Z(e){let n=new Map,o=new Set;for(let a of Object.keys(e))n.set(a,0);function s(a,c){n.set(a,1),c.push(a);let u=e[a];if(u){for(let p of T(u))if(n.has(p))if(n.get(p)===1){let f=c.indexOf(p);for(let l=f;l<c.length;l++)o.add(c[l])}else n.get(p)===0&&s(p,c)}c.pop(),n.set(a,2)}for(let a of Object.keys(e))n.get(a)===0&&s(a,[]);return o}function D(e,t,r){if(!e||typeof e!="object")return e;if(e.ref&&t.has(e.ref)){let n=r[e.ref];return{metadata:{description:n?_(e.ref,n):`Recursive reference to ${e.ref}.`}}}let i={...e};return i.properties&&(i.properties=Object.fromEntries(Object.entries(i.properties).map(([n,o])=>[n,D(o,t,r)]))),i.optionalProperties&&(i.optionalProperties=Object.fromEntries(Object.entries(i.optionalProperties).map(([n,o])=>[n,D(o,t,r)]))),i.elements&&(i.elements=D(i.elements,t,r)),i.values&&(i.values=D(i.values,t,r)),i.mapping&&(i.mapping=Object.fromEntries(Object.entries(i.mapping).map(([n,o])=>[n,D(o,t,r)]))),i}function B(e){let t=Z(e);if(t.size===0)return e;let r={};for(let[i,n]of Object.entries(e))t.has(i)?r[i]=D(n,t,e):r[i]=n;return r}function Q(e,t){e.description=e.description?`${e.description} ${t}`:t}var ee=new Set(["title","label","name","description"]);function m(e,t){let r=t.metadata;if(!r)return;let i=[],n=typeof r.title=="string"&&r.title.trim()||typeof r.label=="string"&&r.label.trim()||typeof r.name=="string"&&r.name.trim(),o=typeof r.description=="string"?r.description.trim():"";n&&o?i.push(`${n}. ${o}`):n?i.push(n):o&&i.push(o);let s=[];for(let[a,c]of Object.entries(r))ee.has(a)||(typeof c=="string"&&c.trim()?s.push(`[${a}: ${c.trim()}]`):(typeof c=="number"||typeof c=="boolean")&&s.push(`[${a}: ${c}]`));if(s.length>0&&i.push(s.join(" ")),i.length>0){let a=i.join(" ");e.description=e.description?`${e.description} ${a}`:a}}function y(e,t,r){if(r>b)throw new Error(`Schema nesting exceeded ${b} levels`);if(!e||typeof e!="object")return{type:"string",description:k};if(v(e)){let n={type:d("string",e.nullable===!0),description:k};return m(n,e),n}let i=e.nullable===!0;if(e.ref){let n=e.ref;if(!t?.[n])throw new Error(`Unresolved ref "${n}"`);if(i){let o={anyOf:[{$ref:`#/$defs/${n}`},{type:"null"}]};return m(o,e),o}return{$ref:`#/$defs/${n}`}}if(e.type){let n={},o,s=w[e.type];if(s)n.type=d("integer",i),o=`Value range: [${s.minimum}, ${s.maximum}].`;else switch(e.type){case"boolean":n.type=d("boolean",i);break;case"string":n.type=d("string",i);break;case"timestamp":n.type=d("string",i),n.format="date-time";break;case"float32":n.type=d("number",i),o=`Value range: [${O.minimum}, ${O.maximum}].`;break;case"float64":n.type=d("number",i);break;default:throw new Error(`Unknown JTD type "${e.type}"`)}return m(n,e),o&&Q(n,o),n}if(e.enum){let n={type:d("string",i),enum:i?[...e.enum,null]:e.enum};return m(n,e),n}if(e.elements){let n={type:d("array",i),items:y(e.elements,t,r+1)};return m(n,e),n}if(e.properties||e.optionalProperties){let n={},o=[];if(e.properties)for(let[a,c]of Object.entries(e.properties))n[a]=y(c,t,r+1),o.push(a);if(e.optionalProperties)for(let[a,c]of Object.entries(e.optionalProperties))n[a]=y(c,t,r+1);let s={type:d("object",i),properties:n,additionalProperties:!1};return o.length>0&&(s.required=o),m(s,e),s}if(e.values){let n=y(e.values,t,r+1),o={type:d("array",i),description:M,items:{type:"object",properties:{key:{type:"string",description:"The property name."},value:n},required:["key","value"],additionalProperties:!1}};return m(o,e),o}if(e.discriminator&&e.mapping){let n=e.discriminator,o=e.mapping,s=[];for(let[c,u]of Object.entries(o)){let p;v(u)?p={type:"object",properties:{[n]:{const:c},_data:{type:"string",description:F}},required:[n,"_data"],additionalProperties:!1}:(p=y(u,t,r+1),p.properties[n]={const:c},(p.required??=[]).unshift(n),p.additionalProperties=!1),m(p,u),s.push(p)}i&&s.push({type:"null"});let a={anyOf:s};return m(a,e),a}return{type:"string",description:k}}var te=new Set(Object.keys(w));function g(e,t,r,i){if(i>b||e==null)return e;if(t.ref){let n=r?.[t.ref];return n?g(e,n,r,i+1):e}if(v(t)){if(typeof e=="string")try{return JSON.parse(e)}catch{return e}return e}if(t.type&&te.has(t.type))return typeof e=="number"&&!Number.isInteger(e)?Math.round(e):e;if(t.elements&&Array.isArray(e)){let n=t.elements;return e.map(o=>g(o,n,r,i+1))}if((t.properties||t.optionalProperties)&&typeof e=="object"&&e!==null){let n={...e};if(t.properties)for(let[o,s]of Object.entries(t.properties))o in n&&(n[o]=g(n[o],s,r,i+1));if(t.optionalProperties)for(let[o,s]of Object.entries(t.optionalProperties))o in n&&(n[o]=g(n[o],s,r,i+1));return n}if(t.values&&Array.isArray(e)){let n={};for(let o of e)if(typeof o=="object"&&o!==null){let s=o,a=s.key;n[a]=g(s.value,t.values,r,i+1)}return n}if(t.discriminator&&t.mapping&&typeof e=="object"&&e!==null){let n=e,o=t.discriminator,s=n[o];if(typeof s!="string")return e;let a=t.mapping[s];if(!a)return e;if(v(a)){let u=n._data;if(typeof u=="string")try{let p=JSON.parse(u);if(typeof p=="object"&&p!==null)return{[o]:s,...p}}catch{}return{[o]:s}}let c={[o]:s};if(a.properties)for(let[u,p]of Object.entries(a.properties))u in n&&(c[u]=g(n[u],p,r,i+1));if(a.optionalProperties)for(let[u,p]of Object.entries(a.optionalProperties))u in n&&(c[u]=g(n[u],p,r,i+1));return c}return e}function ne(e){return{type:"object",description:`Binary content (MIME type: ${e}).`,properties:{data:{type:"string",description:`The base64-encoded binary content (MIME type: ${e}).`},filename:{type:"string",description:'Optional filename for the binary content (e.g. "report.pdf", "image.png").'}},required:["data"],additionalProperties:!1}}var $=class e{schema;strict;jtdSchema;descriptor;descriptors;static fromJTD(t){let r=t.definitions,i=r&&Object.keys(r).length>0?B(r):r,n=!R(t,i),o;return n?(o=y(t,i,0),i&&Object.keys(i).length>0&&(o.$defs=Object.fromEntries(Object.entries(i).map(([s,a])=>[s,y(a,i,0)])))):(o={},m(o,t)),new e(o,n,t,void 0)}static fromSignal(t,r){let{schema:i,strict:n}=re(t,r);return new e(i,n,void 0,t)}static fromSignals(t,r,i){let{mergedDefs:n,signalsCopy:o}=U(t),s={},a=[],c=!0;for(let p of o){if(!p.name)continue;let f=e.fromSignal(p,n);f.strict||(c=!1),s[p.name]=f.schema,p.optional||a.push(p.name)}let u={type:"object",properties:s,required:a.length>0?a:void 0,additionalProperties:!1};return Object.keys(n).length>0&&(u.$defs=Object.fromEntries(Object.entries(n).map(([p,f])=>[p,y(f,n,0)]))),i&&r?u.description=`${i}. ${r}`:i?u.description=i:r&&(u.description=r),new e(u,c,void 0,void 0,t)}static fromJSON(t){let r=typeof t=="string"?JSON.parse(t):t;if(r.descriptors)return e.fromSignals(r.descriptors,r.description,r.label);if(r.descriptor)return e.fromSignal(r.descriptor);if(r.jtdSchema)return e.fromJTD(r.jtdSchema);throw new Error("Cannot deserialize: missing jtdSchema, descriptor, or descriptors")}constructor(t,r,i,n,o){this.schema=t,this.strict=r,this.jtdSchema=i,this.descriptor=n,this.descriptors=o}convert=t=>this.descriptors?I(this.descriptors,t,g):this.jtdSchema?A(this.jtdSchema,t,g):this.descriptor?x(this.descriptor,t,g):{success:!1,errors:["No source schema available"]};toJSON(){if(this.descriptors){let t={schema:this.schema,strict:this.strict,descriptors:this.descriptors};return this.schema.description&&(t.description=this.schema.description),t}return this.descriptor?{schema:this.schema,strict:this.strict,descriptor:this.descriptor}:{schema:this.schema,strict:this.strict,jtdSchema:this.jtdSchema}}};function re(e,t){let r=e.formats;if(!r||r.length===0)throw new Error("Signal descriptor has no formats");if(r.length===1){let[c]=r,{schema:u,strict:p}=q(c,t);if(e.label||e.description){let f=[];e.label&&f.push(e.label),e.description&&f.push(e.description);let l=f.join(". ");u.description=u.description?`${l} ${u.description}`:l}return{schema:u,strict:p}}let i={};for(let[c,u]of r.entries()){let{schema:p}=q(u,t);u.jtdSchema&&(p.description=p.description?`Structured JSON data. ${p.description}`:"Structured JSON data."),i[`format_${c}`]=p}let n=Object.keys(i),o=e.description??"",s=e.optional?"Provide at most ONE of the following format properties. All are optional.":`You MUST provide exactly ONE of the following format properties: ${n.join(", ")}.`;return{schema:{type:"object",description:o?`${o} ${s}`:s,properties:i,additionalProperties:!1},strict:!0}}function q(e,t){if(e.jtdSchema){let r=t??e.jtdSchema.definitions,i=r&&Object.keys(r).length>0?B(r):r,n=!R(e.jtdSchema,i),o;return n?(o=y(e.jtdSchema,i,0),!t&&i&&Object.keys(i).length>0&&(o.$defs=Object.fromEntries(Object.entries(i).map(([s,a])=>[s,y(a,i,0)])))):(o={},m(o,e.jtdSchema)),{schema:o,strict:n}}if(e.mimeType)return{schema:ne(e.mimeType),strict:!0};throw new Error("Signal format has neither jtdSchema nor mimeType")}function ue(e){return $.fromJTD(e)}function fe(e){return $.fromSignal(e)}export{$ as AnthropicConversion,fe as convertSignalToAnthropicSchema,ue as convertToAnthropicSchema};
|
|
1
|
+
import{isSchema as oe,isValidSchema as V,validate as G}from"jtd";var H=new Set(["int8","uint8","int16","uint16","int32","uint32"]);function K(e){return e.length===0?"/":e.map(t=>/^\d+$/.test(t)?`[${t}]`:`.${t}`).join("")}function P(e,t){let r=e;for(let i=0;i<t.length-1&&(r&&typeof r=="object"&&t[i]in r);i++)r=r[t[i]];return r}function L(e,t){let r=e;for(let i of t)if(r&&typeof r=="object")r=r[i];else return;return r}function Y(e,t,r){let{instancePath:i,schemaPath:n}=e,o=K(i),s=n[n.length-1];if(s==="type"){let c=P(t,n)?.type;return c==="boolean"?`${o}: expected boolean`:c==="string"?`${o}: expected string`:c==="timestamp"?`${o}: expected timestamp string`:H.has(c)?`${o}: expected integer`:`${o}: expected number`}if(s==="enum"){let c=P(t,n)?.enum;return`${o}: expected one of [${c.join(", ")}]`}if(n.length>=2&&n[n.length-2]==="properties"&&s)return`${o==="/"?"":o}.${s}: missing required property`;if(s==="elements")return`${o}: expected array`;if(s==="properties"||s==="optionalProperties"||s==="values")return`${o}: expected object`;if(s==="discriminator")return`${o}: expected string discriminator`;if(s==="mapping"){let a=L(r,i);return`${o}: unknown variant "${a}"`}return n.length===0?`${o}: unexpected property`:`${o}: validation error at /${n.join("/")}`}function N(e,t,r){let i=r??e.definitions,n=i?{...e,definitions:i}:e;return V(n)?G(n,t,{maxDepth:W,maxErrors:z}).map(s=>Y(s,n,t)):e.ref?[`/: unknown ref "${e.ref}"`]:["/: invalid schema"]}var W=32,z=100;var b=32,w={int8:{minimum:-128,maximum:127},uint8:{minimum:0,maximum:255},int16:{minimum:-32768,maximum:32767},uint16:{minimum:0,maximum:65535},int32:{minimum:-2147483648,maximum:2147483647},uint32:{minimum:0,maximum:4294967295}},O={minimum:-34028235e31,maximum:34028235e31},k=`Must be a valid JSON value encoded as a string. For objects: '{"key": "value"}', for arrays: '[1, 2]', for primitives: '"hello"' or '42' or 'true' or 'null'.`,M=`The variant data encoded as a valid JSON string (e.g. '{"key": "value"}').`,I="Array of key-value entries representing a map/dictionary. Each entry has a string 'key' (the property name) and a 'value' (the property value).";function d(e,t){return t?[e,"null"]:e}function j(e,t){if(e===t)return!0;if(e==null||t==null||typeof e!=typeof t||typeof e!="object")return!1;if(Array.isArray(e))return Array.isArray(t)&&e.length===t.length&&e.every((o,s)=>j(o,t[s]));if(Array.isArray(t))return!1;let r=e,i=t,n=Object.keys(r);if(n.length!==Object.keys(i).length)return!1;for(let o of n)if(!(o in i)||!j(r[o],i[o]))return!1;return!0}function v(e){return!e||typeof e!="object"?!0:e.type||e.enum||e.elements||e.values||e.discriminator||e.ref||e.properties&&Object.keys(e.properties).length>0||e.optionalProperties&&Object.keys(e.optionalProperties).length>0?!1:(e.properties!==void 0||e.optionalProperties!==void 0)&&e.additionalProperties===!0?!0:!(e.properties!==void 0||e.optionalProperties!==void 0)}function R(e,t){let r=e,i=0;for(;r.ref&&i<b;){let n=t?.[r.ref];if(!n)return!1;r=n,i++}return i>=b?!1:v(r)}function A(e,t,r){let i=e.definitions,n=r(t,e,i,0),o=N(e,n,i);return o.length>0?{success:!1,errors:o}:{success:!0,kind:"json",data:n}}function X(e,t){if(typeof t!="object"||t===null)return{success:!1,errors:[`/: expected object with 'data' field for MIME type ${e}, got ${typeof t}`]};let r=t;if(typeof r.data!="string")return{success:!1,errors:[`/data: expected base64 string for MIME type ${e}, got ${typeof r.data}`]};let i={success:!0,kind:"binary",mimeType:e,data:new Uint8Array(Buffer.from(r.data,"base64"))};return typeof r.filename=="string"&&r.filename&&(i.filename=r.filename),i}function F(e,t,r){return e.mimeType?X(e.mimeType,t):e.jtdSchema?A(e.jtdSchema,t,r):{success:!1,errors:["Signal format has neither jtdSchema nor mimeType"]}}function x(e,t,r){let i=e.formats;if(!i||i.length===0)return{success:!1,errors:["Signal descriptor has no formats"]};if(i.length===1)return F(i[0],t,r);if(typeof t!="object"||t===null)return{success:!1,errors:[`/: expected object with format properties, got ${typeof t}`]};let n=t;for(let s=0;s<i.length;s++){let a=`format_${s}`;if(n[a]!==void 0&&n[a]!==null)return F(i[s],n[a],r)}if(e.optional)return{success:!0,kind:"json",data:null};let o=i.map((s,a)=>`format_${a}`);return{success:!1,errors:[`Signal '${e.name??"unnamed"}' is required but no format was provided. Set exactly one of: ${o.join(", ")}.`]}}function U(e,t,r){if(typeof t!="object"||t===null)return{success:!1,errors:["/: expected object with signal properties, got "+typeof t]};let i=t,n={},o=[];for(let s of e){if(!s.name)continue;let a=i[s.name];if(a==null)continue;let c=x(s,a,r);if(c.success)c.kind==="binary"?n[s.name]={data:c.data,mimeType:c.mimeType,filename:c.filename}:c.kind==="json"&&(n[s.name]=c.data);else for(let u of c.errors)o.push(`/${s.name}${u.startsWith("/")?"":": "}${u}`)}return o.length>0?{success:!1,errors:o}:{success:!0,kind:"signals",signals:n}}function S(e,t){if(!e||typeof e!="object")return e;let r={...e};return r.ref&&t.has(r.ref)&&(r.ref=t.get(r.ref)),r.properties&&(r.properties=Object.fromEntries(Object.entries(r.properties).map(([i,n])=>[i,S(n,t)]))),r.optionalProperties&&(r.optionalProperties=Object.fromEntries(Object.entries(r.optionalProperties).map(([i,n])=>[i,S(n,t)]))),r.elements&&(r.elements=S(r.elements,t)),r.values&&(r.values=S(r.values,t)),r.mapping&&(r.mapping=Object.fromEntries(Object.entries(r.mapping).map(([i,n])=>[i,S(n,t)]))),r.definitions&&delete r.definitions,r}function _(e){let t={},r=new Map;for(let n=0;n<e.length;n++){let o=e[n].formats;if(o)for(let s=0;s<o.length;s++){let a=o[s].jtdSchema?.definitions;if(!a||Object.keys(a).length===0)continue;let c=new Map,u=!1;for(let[p,f]of Object.entries(a)){let l=t[p];if(l&&!j(l,f)){u=!0;break}}if(u)for(let[p,f]of Object.entries(a)){let l=t[p];if(!(l&&j(l,f)))if(l){let h=1;for(;t[`${p}_${h}`];)h++;let E=`${p}_${h}`;c.set(p,E),t[E]=f}else t[p]=f}else for(let[p,f]of Object.entries(a))t[p]||(t[p]=f);c.size>0&&r.set(`${n}:${s}`,c)}}for(let[,n]of r)for(let[,o]of n)t[o]=S(t[o],n);let i=e.map((n,o)=>{let s=n.formats;if(!s)return n;let a=!1,c=s.map((u,p)=>{if(!u.jtdSchema)return u;let f=r.get(`${o}:${p}`),l=u.jtdSchema.definitions&&Object.keys(u.jtdSchema.definitions).length>0;if(!f&&!l)return u;a=!0;let h=f?S(u.jtdSchema,f):{...u.jtdSchema};return delete h.definitions,{...u,jtdSchema:h}});return a?{...n,formats:c}:n});return{mergedDefs:t,signalsCopy:i}}function J(e){return!e||typeof e!="object"?"any":e.ref?e.ref:e.type?e.type:e.enum?`one of: ${e.enum.join(", ")}`:e.elements?`array of ${J(e.elements)}`:e.values?`map of ${J(e.values)}`:e.properties||e.optionalProperties?"object":e.discriminator?`union on '${e.discriminator}'`:"any"}function q(e,t){let r=["Recursive nesting. This field accepts the same object structure as its parent with the following shape:"],i=[],n=[];if(t.properties)for(let[o,s]of Object.entries(t.properties))i.push(`${o} (${J(s)})`);if(t.optionalProperties)for(let[o,s]of Object.entries(t.optionalProperties))n.push(`${o} (${J(s)})`);if(i.length>0&&r.push(`Required: ${i.join(", ")}.`),n.length>0){let o=n.slice(0,8),s=n.length>8?`, and ${n.length-8} more`:"";r.push(`Optional: ${o.join(", ")}${s}.`)}return t.elements&&r.push(`Array of ${J(t.elements)}.`),t.values&&r.push(`Map with values of type ${J(t.values)}.`),r.join(" ")}function T(e){let t=[];if(!e||typeof e!="object")return t;if(e.ref&&t.push(e.ref),e.properties)for(let r of Object.values(e.properties))t.push(...T(r));if(e.optionalProperties)for(let r of Object.values(e.optionalProperties))t.push(...T(r));if(e.elements&&t.push(...T(e.elements)),e.values&&t.push(...T(e.values)),e.mapping)for(let r of Object.values(e.mapping))t.push(...T(r));return t}function Z(e){let n=new Map,o=new Set;for(let a of Object.keys(e))n.set(a,0);function s(a,c){n.set(a,1),c.push(a);let u=e[a];if(u){for(let p of T(u))if(n.has(p))if(n.get(p)===1){let f=c.indexOf(p);for(let l=f;l<c.length;l++)o.add(c[l])}else n.get(p)===0&&s(p,c)}c.pop(),n.set(a,2)}for(let a of Object.keys(e))n.get(a)===0&&s(a,[]);return o}function D(e,t,r){if(!e||typeof e!="object")return e;if(e.ref&&t.has(e.ref)){let n=r[e.ref];return{metadata:{description:n?q(e.ref,n):`Recursive reference to ${e.ref}.`}}}let i={...e};return i.properties&&(i.properties=Object.fromEntries(Object.entries(i.properties).map(([n,o])=>[n,D(o,t,r)]))),i.optionalProperties&&(i.optionalProperties=Object.fromEntries(Object.entries(i.optionalProperties).map(([n,o])=>[n,D(o,t,r)]))),i.elements&&(i.elements=D(i.elements,t,r)),i.values&&(i.values=D(i.values,t,r)),i.mapping&&(i.mapping=Object.fromEntries(Object.entries(i.mapping).map(([n,o])=>[n,D(o,t,r)]))),i}function C(e){let t=Z(e);if(t.size===0)return e;let r={};for(let[i,n]of Object.entries(e))t.has(i)?r[i]=D(n,t,e):r[i]=n;return r}function Q(e,t){e.description=e.description?`${e.description} ${t}`:t}var ee=new Set(["title","label","name","description"]);function m(e,t){let r=t.metadata;if(!r)return;let i=[],n=typeof r.title=="string"&&r.title.trim()||typeof r.label=="string"&&r.label.trim()||typeof r.name=="string"&&r.name.trim(),o=typeof r.description=="string"?r.description.trim():"";n&&o?i.push(`${n}. ${o}`):n?i.push(n):o&&i.push(o);let s=[];for(let[a,c]of Object.entries(r))ee.has(a)||(typeof c=="string"&&c.trim()?s.push(`[${a}: ${c.trim()}]`):(typeof c=="number"||typeof c=="boolean")&&s.push(`[${a}: ${c}]`));if(s.length>0&&i.push(s.join(" ")),i.length>0){let a=i.join(" ");e.description=e.description?`${e.description} ${a}`:a}}function y(e,t,r){if(r>b)throw new Error(`Schema nesting exceeded ${b} levels`);if(!e||typeof e!="object")return{type:"string",description:k};if(v(e)){let n={type:d("string",e.nullable===!0),description:k};return m(n,e),n}let i=e.nullable===!0;if(e.ref){let n=e.ref;if(!t?.[n])throw new Error(`Unresolved ref "${n}"`);if(i){let o={anyOf:[{$ref:`#/$defs/${n}`},{type:"null"}]};return m(o,e),o}return{$ref:`#/$defs/${n}`}}if(e.type){let n={},o,s=w[e.type];if(s)n.type=d("integer",i),o=`Value range: [${s.minimum}, ${s.maximum}].`;else switch(e.type){case"boolean":n.type=d("boolean",i);break;case"string":n.type=d("string",i);break;case"timestamp":n.type=d("string",i),n.format="date-time";break;case"float32":n.type=d("number",i),o=`Value range: [${O.minimum}, ${O.maximum}].`;break;case"float64":n.type=d("number",i);break;default:throw new Error(`Unknown JTD type "${e.type}"`)}return m(n,e),o&&Q(n,o),n}if(e.enum){let n={type:d("string",i),enum:i?[...e.enum,null]:e.enum};return m(n,e),n}if(e.elements){let n={type:d("array",i),items:y(e.elements,t,r+1)};return m(n,e),n}if(e.properties||e.optionalProperties){let n={},o=[];if(e.properties)for(let[a,c]of Object.entries(e.properties))n[a]=y(c,t,r+1),o.push(a);if(e.optionalProperties)for(let[a,c]of Object.entries(e.optionalProperties))n[a]=y(c,t,r+1);let s={type:d("object",i),properties:n,additionalProperties:!1};return o.length>0&&(s.required=o),m(s,e),s}if(e.values){let n=y(e.values,t,r+1),o={type:d("array",i),description:I,items:{type:"object",properties:{key:{type:"string",description:"The property name."},value:n},required:["key","value"],additionalProperties:!1}};return m(o,e),o}if(e.discriminator&&e.mapping){let n=e.discriminator,o=e.mapping,s=[];for(let[c,u]of Object.entries(o)){let p;v(u)?p={type:"object",properties:{[n]:{const:c},_data:{type:"string",description:M}},required:[n,"_data"],additionalProperties:!1}:(p=y(u,t,r+1),p.properties[n]={const:c},(p.required??=[]).unshift(n),p.additionalProperties=!1),m(p,u),s.push(p)}i&&s.push({type:"null"});let a={anyOf:s};return m(a,e),a}return{type:"string",description:k}}var te=new Set(Object.keys(w));function g(e,t,r,i){if(i>b||e==null)return e;if(t.ref){let n=r?.[t.ref];return n?g(e,n,r,i+1):e}if(v(t)){if(typeof e=="string")try{return JSON.parse(e)}catch{return e}return e}if(t.type&&te.has(t.type))return typeof e=="number"&&!Number.isInteger(e)?Math.round(e):e;if(t.elements&&Array.isArray(e)){let n=t.elements;return e.map(o=>g(o,n,r,i+1))}if((t.properties||t.optionalProperties)&&typeof e=="object"&&e!==null){let n={...e};if(t.properties)for(let[o,s]of Object.entries(t.properties))o in n&&(n[o]=g(n[o],s,r,i+1));if(t.optionalProperties)for(let[o,s]of Object.entries(t.optionalProperties))o in n&&(n[o]=g(n[o],s,r,i+1));return n}if(t.values&&Array.isArray(e)){let n={};for(let o of e)if(typeof o=="object"&&o!==null){let s=o,a=s.key;n[a]=g(s.value,t.values,r,i+1)}return n}if(t.discriminator&&t.mapping&&typeof e=="object"&&e!==null){let n=e,o=t.discriminator,s=n[o];if(typeof s!="string")return e;let a=t.mapping[s];if(!a)return e;if(v(a)){let u=n._data;if(typeof u=="string")try{let p=JSON.parse(u);if(typeof p=="object"&&p!==null)return{[o]:s,...p}}catch{}return{[o]:s}}let c={[o]:s};if(a.properties)for(let[u,p]of Object.entries(a.properties))u in n&&(c[u]=g(n[u],p,r,i+1));if(a.optionalProperties)for(let[u,p]of Object.entries(a.optionalProperties))u in n&&(c[u]=g(n[u],p,r,i+1));return c}return e}function ne(e){return{type:"object",description:`Binary content (MIME type: ${e}).`,properties:{data:{type:"string",description:`The base64-encoded binary content (MIME type: ${e}).`},filename:{type:"string",description:'Optional filename for the binary content (e.g. "report.pdf", "image.png").'}},required:["data"],additionalProperties:!1}}var $=class e{schema;strict;jtdSchema;descriptor;descriptors;static fromJTD(t){let r=t.definitions,i=r&&Object.keys(r).length>0?C(r):r,n=!R(t,i),o;return n?(o=y(t,i,0),i&&Object.keys(i).length>0&&(o.$defs=Object.fromEntries(Object.entries(i).map(([s,a])=>[s,y(a,i,0)])))):(o={},m(o,t)),new e(o,n,t,void 0)}static fromSignal(t,r){let{schema:i,strict:n}=re(t,r);return new e(i,n,void 0,t)}static fromSignals(t,r,i){let{mergedDefs:n,signalsCopy:o}=_(t),s=Object.keys(n).length>0?C(n):n,a={},c=[],u=!0;for(let f of o){if(!f.name)continue;let l=e.fromSignal(f,s);l.strict||(u=!1),a[f.name]=l.schema,f.optional||c.push(f.name)}let p={type:"object",properties:a,required:c.length>0?c:void 0,additionalProperties:!1};return Object.keys(s).length>0&&(p.$defs=Object.fromEntries(Object.entries(s).map(([f,l])=>[f,y(l,s,0)]))),i&&r?p.description=`${i}. ${r}`:i?p.description=i:r&&(p.description=r),new e(p,u,void 0,void 0,t)}static fromJSON(t){let r=typeof t=="string"?JSON.parse(t):t;if(r.descriptors)return e.fromSignals(r.descriptors,r.description,r.label);if(r.descriptor)return e.fromSignal(r.descriptor);if(r.jtdSchema)return e.fromJTD(r.jtdSchema);throw new Error("Cannot deserialize: missing jtdSchema, descriptor, or descriptors")}constructor(t,r,i,n,o){this.schema=t,this.strict=r,this.jtdSchema=i,this.descriptor=n,this.descriptors=o}convert=t=>this.descriptors?U(this.descriptors,t,g):this.jtdSchema?A(this.jtdSchema,t,g):this.descriptor?x(this.descriptor,t,g):{success:!1,errors:["No source schema available"]};toJSON(){if(this.descriptors){let t={schema:this.schema,strict:this.strict,descriptors:this.descriptors};return this.schema.description&&(t.description=this.schema.description),t}return this.descriptor?{schema:this.schema,strict:this.strict,descriptor:this.descriptor}:{schema:this.schema,strict:this.strict,jtdSchema:this.jtdSchema}}};function re(e,t){let r=e.formats;if(!r||r.length===0)throw new Error("Signal descriptor has no formats");if(r.length===1){let[c]=r,{schema:u,strict:p}=B(c,t);if(e.label||e.description){let f=[];e.label&&f.push(e.label),e.description&&f.push(e.description);let l=f.join(". ");u.description=u.description?`${l} ${u.description}`:l}return{schema:u,strict:p}}let i={};for(let[c,u]of r.entries()){let{schema:p}=B(u,t);u.jtdSchema&&(p.description=p.description?`Structured JSON data. ${p.description}`:"Structured JSON data."),i[`format_${c}`]=p}let n=Object.keys(i),o=e.description??"",s=e.optional?"Provide at most ONE of the following format properties. All are optional.":`You MUST provide exactly ONE of the following format properties: ${n.join(", ")}.`;return{schema:{type:"object",description:o?`${o} ${s}`:s,properties:i,additionalProperties:!1},strict:!0}}function B(e,t){if(e.jtdSchema){let r=t??e.jtdSchema.definitions,i=r&&Object.keys(r).length>0?C(r):r,n=!R(e.jtdSchema,i),o;return n?(o=y(e.jtdSchema,i,0),!t&&i&&Object.keys(i).length>0&&(o.$defs=Object.fromEntries(Object.entries(i).map(([s,a])=>[s,y(a,i,0)])))):(o={},m(o,e.jtdSchema)),{schema:o,strict:n}}if(e.mimeType)return{schema:ne(e.mimeType),strict:!0};throw new Error("Signal format has neither jtdSchema nor mimeType")}function ue(e){return $.fromJTD(e)}function fe(e){return $.fromSignal(e)}export{$ as AnthropicConversion,fe as convertSignalToAnthropicSchema,ue as convertToAnthropicSchema};
|
|
2
2
|
//# sourceMappingURL=anthropic.mjs.map
|