@meetkai/mka1 0.54.14 → 0.54.15
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/bin/mcp-server.js +10 -6
- package/bin/mcp-server.js.map +6 -6
- package/dist/commonjs/lib/config.d.ts +3 -3
- package/dist/commonjs/lib/config.js +3 -3
- package/dist/commonjs/mcp-server/mcp-server.js +1 -1
- package/dist/commonjs/mcp-server/server.js +1 -1
- package/dist/commonjs/models/components/responseobject.d.ts +5 -0
- package/dist/commonjs/models/components/responseobject.d.ts.map +1 -1
- package/dist/commonjs/models/components/responseobject.js +4 -0
- package/dist/commonjs/models/components/responseobject.js.map +1 -1
- package/dist/esm/lib/config.d.ts +3 -3
- package/dist/esm/lib/config.js +3 -3
- package/dist/esm/mcp-server/mcp-server.js +1 -1
- package/dist/esm/mcp-server/server.js +1 -1
- package/dist/esm/models/components/responseobject.d.ts +5 -0
- package/dist/esm/models/components/responseobject.d.ts.map +1 -1
- package/dist/esm/models/components/responseobject.js +4 -0
- package/dist/esm/models/components/responseobject.js.map +1 -1
- package/jsr.json +1 -1
- package/package.json +1 -1
- package/src/lib/config.ts +3 -3
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/models/components/responseobject.ts +9 -0
|
@@ -291,6 +291,10 @@ export type ResponseObject = {
|
|
|
291
291
|
maxToolCalls: number | null;
|
|
292
292
|
metadata: { [k: string]: string };
|
|
293
293
|
model: string;
|
|
294
|
+
/**
|
|
295
|
+
* The concrete catalog model selected after resolving aliases such as "auto".
|
|
296
|
+
*/
|
|
297
|
+
resolvedModel?: string | undefined;
|
|
294
298
|
output: Array<Item>;
|
|
295
299
|
outputText?: string | undefined;
|
|
296
300
|
parallelToolCalls: boolean;
|
|
@@ -842,6 +846,7 @@ export const ResponseObject$inboundSchema: z.ZodType<
|
|
|
842
846
|
max_tool_calls: z.nullable(z.number().int()),
|
|
843
847
|
metadata: z.record(z.string()),
|
|
844
848
|
model: z.string(),
|
|
849
|
+
resolved_model: z.string().optional(),
|
|
845
850
|
output: z.array(Item$inboundSchema),
|
|
846
851
|
output_text: z.string().optional(),
|
|
847
852
|
parallel_tool_calls: z.boolean(),
|
|
@@ -891,6 +896,7 @@ export const ResponseObject$inboundSchema: z.ZodType<
|
|
|
891
896
|
"incomplete_details": "incompleteDetails",
|
|
892
897
|
"max_output_tokens": "maxOutputTokens",
|
|
893
898
|
"max_tool_calls": "maxToolCalls",
|
|
899
|
+
"resolved_model": "resolvedModel",
|
|
894
900
|
"output_text": "outputText",
|
|
895
901
|
"parallel_tool_calls": "parallelToolCalls",
|
|
896
902
|
"previous_response_id": "previousResponseId",
|
|
@@ -921,6 +927,7 @@ export type ResponseObject$Outbound = {
|
|
|
921
927
|
max_tool_calls: number | null;
|
|
922
928
|
metadata: { [k: string]: string };
|
|
923
929
|
model: string;
|
|
930
|
+
resolved_model?: string | undefined;
|
|
924
931
|
output: Array<Item$Outbound>;
|
|
925
932
|
output_text?: string | undefined;
|
|
926
933
|
parallel_tool_calls: boolean;
|
|
@@ -981,6 +988,7 @@ export const ResponseObject$outboundSchema: z.ZodType<
|
|
|
981
988
|
maxToolCalls: z.nullable(z.number().int()),
|
|
982
989
|
metadata: z.record(z.string()),
|
|
983
990
|
model: z.string(),
|
|
991
|
+
resolvedModel: z.string().optional(),
|
|
984
992
|
output: z.array(Item$outboundSchema),
|
|
985
993
|
outputText: z.string().optional(),
|
|
986
994
|
parallelToolCalls: z.boolean(),
|
|
@@ -1030,6 +1038,7 @@ export const ResponseObject$outboundSchema: z.ZodType<
|
|
|
1030
1038
|
incompleteDetails: "incomplete_details",
|
|
1031
1039
|
maxOutputTokens: "max_output_tokens",
|
|
1032
1040
|
maxToolCalls: "max_tool_calls",
|
|
1041
|
+
resolvedModel: "resolved_model",
|
|
1033
1042
|
outputText: "output_text",
|
|
1034
1043
|
parallelToolCalls: "parallel_tool_calls",
|
|
1035
1044
|
previousResponseId: "previous_response_id",
|