topchester-ai 0.41.0 → 0.42.0
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/bin.mjs
CHANGED
|
@@ -4867,6 +4867,7 @@ var ModelGateway = class ModelGateway {
|
|
|
4867
4867
|
baseURL: providerConfig.baseURL,
|
|
4868
4868
|
apiKey: resolveApiKey(providerConfig),
|
|
4869
4869
|
headers: providerConfig.headers,
|
|
4870
|
+
includeUsage: providerConfig.includeUsage !== false,
|
|
4870
4871
|
supportsStructuredOutputs: providerConfig.supportsStructuredOutputs
|
|
4871
4872
|
}).chatModel(modelId),
|
|
4872
4873
|
providerId,
|
|
@@ -5365,6 +5366,7 @@ const providerSchema = z.object({
|
|
|
5365
5366
|
headers: z.record(z.string(), z.string()).optional(),
|
|
5366
5367
|
supportsStructuredOutputs: z.boolean().optional(),
|
|
5367
5368
|
service_tier: z.enum(["flex", "priority"]).optional(),
|
|
5369
|
+
includeUsage: z.boolean().optional(),
|
|
5368
5370
|
promptCaching: z.boolean().optional(),
|
|
5369
5371
|
toolProtocol: toolProtocolSchema.optional(),
|
|
5370
5372
|
openRouterToolRouting: z.enum([
|
|
@@ -13805,4 +13807,4 @@ function formatDryRunSyncStatus(status) {
|
|
|
13805
13807
|
//#endregion
|
|
13806
13808
|
export { runTopchesterCli as t };
|
|
13807
13809
|
|
|
13808
|
-
//# sourceMappingURL=cli-
|
|
13810
|
+
//# sourceMappingURL=cli-Bh7BCFNO.mjs.map
|