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 9d88895 commit c27826bCopy full SHA for c27826b
apps/dojo/scripts/generate-content-json.ts
@@ -363,6 +363,21 @@ const agentFilesMapper: Record<
363
{},
364
);
365
},
366
+ "microsoft-agent-framework-python": (agentKeys: string[]) => {
367
+ return agentKeys.reduce(
368
+ (acc, agentId) => ({
369
+ ...acc,
370
+ [agentId]: [
371
+ path.join(
372
+ __dirname,
373
+ integrationsFolderPath,
374
+ `/microsoft-agent-framework/python/examples/agents/dojo.py`,
375
+ ),
376
+ ],
377
+ }),
378
+ {},
379
+ );
380
+ },
381
"microsoft-agent-framework-dotnet": (agentKeys: string[]) => {
382
return agentKeys.reduce(
383
(acc, agentId) => ({
0 commit comments