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 rubricMatcherToolMeta = {
key: 'matchRubric',
userDescription: 'Assessing the submission against the provided rubric',
icon: '📊',
};
export const rubricMatcherTool = ToolUtility.createFunctionTool({
name: 'matchRubric',
name: rubricMatcherToolMeta.key,
description: 'Matches a submission to a rubric and returns a score/criteria breakdown.',
parameters: {
type: 'object',