feat(*): Add AI agent feedback

This commit is contained in:
Josh Creek
2025-04-20 23:05:17 +01:00
parent 010a1b8e2b
commit 98ff117f73
8 changed files with 658 additions and 97 deletions
+13
View File
@@ -0,0 +1,13 @@
import { ToolUtility } from '@azure/ai-projects';
export const essayAnalyzerTool = ToolUtility.createFunctionTool({
name: 'analyzeEssay',
description: 'Analyzes an essay for structure, argument, and evidence.',
parameters: {
type: 'object',
properties: {
essay: { type: 'string', description: 'The essay text' }
},
required: ['essay']
}
});