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 9293703 commit 93f696fCopy full SHA for 93f696f
extensions/cli/src/configLoader.ts
@@ -291,7 +291,7 @@ async function unrollAssistantWithConfig(
291
apiBase: env.apiBase,
292
rootPath:
293
packageIdentifier.uriType === "file"
294
- ? dirname(packageIdentifier.filePath)
+ ? dirname(packageIdentifier.fileUri)
295
: undefined,
296
}),
297
{
@@ -328,7 +328,7 @@ async function loadConfigYaml(
328
apiClient: DefaultApiInterface,
329
): Promise<AssistantUnrolled> {
330
return await unrollAssistantWithConfig(
331
- { filePath, uriType: "file" },
+ { fileUri: filePath, uriType: "file" },
332
accessToken,
333
organizationId,
334
apiClient,
0 commit comments