mirror of
https://github.com/jcreek/AutomatedAssessmentFeedbackAgent.git
synced 2026-07-13 02:53:49 +00:00
feat(*): Add AI agent feedback
This commit is contained in:
@@ -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']
|
||||
}
|
||||
});
|
||||
Reference in New Issue
Block a user