feat(*): Improve the display of tool usage

This commit is contained in:
Josh Creek
2025-04-21 16:54:52 +01:00
parent 76fcdac563
commit 4f5babbe23
10 changed files with 381 additions and 189 deletions
+7 -1
View File
@@ -1,7 +1,13 @@
import { ToolUtility } from '@azure/ai-projects';
export const essayAnalyzerToolMeta = {
key: 'analyzeEssay',
userDescription: 'Analyzing essay structure and argument quality',
icon: '📝',
};
export const essayAnalyzerTool = ToolUtility.createFunctionTool({
name: 'analyzeEssay',
name: essayAnalyzerToolMeta.key,
description: 'Analyzes an essay for structure, argument, and evidence.',
parameters: {
type: 'object',