We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 122e2d5 commit b0bb88bCopy full SHA for b0bb88b
1 file changed
packages/runtime/src/bindings/language-model/ai-sdk.ts
@@ -46,9 +46,8 @@ export const createProvider = (binding: LLMBindingClient): Provider => {
46
(): Promise<Record<string, RegExp[]>> =>
47
binding
48
.LLM_METADATA({ modelId })
49
- .then(
50
- (metadata: { supportedUrls: Record<string, string[]> }) =>
51
- toRegExp(metadata.supportedUrls),
+ .then((metadata: { supportedUrls: Record<string, string[]> }) =>
+ toRegExp(metadata.supportedUrls),
52
),
53
);
54
0 commit comments