We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d1803d commit 4a7809fCopy full SHA for 4a7809f
1 file changed
packages/opencode/src/provider/transform.ts
@@ -349,6 +349,18 @@ export namespace ProviderTransform {
349
case "@ai-sdk/gateway":
350
return Object.fromEntries(OPENAI_EFFORTS.map((effort) => [effort, { reasoningEffort: effort }]))
351
352
+ case "@ai-sdk/github-copilot":
353
+ return Object.fromEntries(
354
+ WIDELY_SUPPORTED_EFFORTS.map((effort) => [
355
+ effort,
356
+ {
357
+ reasoningEffort: effort,
358
+ reasoningSummary: "auto",
359
+ include: ["reasoning.encrypted_content"],
360
+ },
361
+ ]),
362
+ )
363
+
364
case "@ai-sdk/cerebras":
365
// https://v5.ai-sdk.dev/providers/ai-sdk-providers/cerebras
366
case "@ai-sdk/togetherai":
0 commit comments