@@ -21,11 +21,13 @@ devtools_module("ai_chat") {
21
21
" ui/HelpDialog.ts" ,
22
22
" ui/SettingsDialog.ts" ,
23
23
" ui/PromptEditDialog.ts" ,
24
+ " ui/EvaluationDialog.ts" ,
24
25
" ai_chat_impl.ts" ,
25
26
" core/Graph.ts" ,
26
27
" core/State.ts" ,
27
28
" core/Types.ts" ,
28
29
" core/AgentService.ts" ,
30
+ " core/Constants.ts" ,
29
31
" core/GraphConfigs.ts" ,
30
32
" core/OpenAIClient.ts" ,
31
33
" core/LiteLLMClient.ts" ,
@@ -38,18 +40,36 @@ devtools_module("ai_chat") {
38
40
" core/ChatLiteLLM.ts" ,
39
41
" core/GraphHelpers.ts" ,
40
42
" core/StateGraph.ts" ,
43
+ " core/Logger.ts" ,
41
44
" tools/Tools.ts" ,
42
45
" tools/CritiqueTool.ts" ,
43
46
" tools/FetcherTool.ts" ,
44
47
" tools/FinalizeWithCritiqueTool.ts" ,
45
48
" tools/VisitHistoryManager.ts" ,
46
49
" tools/HTMLToMarkdownTool.ts" ,
47
50
" tools/SchemaBasedExtractorTool.ts" ,
51
+ " tools/StreamlinedSchemaExtractorTool.ts" ,
48
52
" tools/CombinedExtractionTool.ts" ,
49
53
" tools/FullPageAccessibilityTreeToMarkdownTool.ts" ,
50
54
" agent_framework/ConfigurableAgentTool.ts" ,
51
55
" agent_framework/AgentRunner.ts" ,
52
56
" agent_framework/implementation/ConfiguredAgents.ts" ,
57
+ " evaluation/framework/types.ts" ,
58
+ " evaluation/framework/judges/LLMEvaluator.ts" ,
59
+ " evaluation/framework/GenericToolEvaluator.ts" ,
60
+ " evaluation/framework/MarkdownReportGenerator.ts" ,
61
+ " evaluation/utils/SanitizationUtils.ts" ,
62
+ " evaluation/utils/ErrorHandlingUtils.ts" ,
63
+ " evaluation/utils/EvaluationTypes.ts" ,
64
+ " evaluation/utils/PromptTemplates.ts" ,
65
+ " evaluation/utils/ResponseParsingUtils.ts" ,
66
+ " evaluation/test-cases/schema-extractor-tests.ts" ,
67
+ " evaluation/test-cases/streamlined-schema-extractor-tests.ts" ,
68
+ " evaluation/test-cases/research-agent-tests.ts" ,
69
+ " evaluation/test-cases/action-agent-tests.ts" ,
70
+ " evaluation/runner/EvaluationRunner.ts" ,
71
+ " evaluation/runner/VisionAgentEvaluationRunner.ts" ,
72
+ " common/MarkdownViewerUtil.ts" ,
53
73
" common/utils.ts" ,
54
74
" common/log.ts" ,
55
75
" common/context.ts" ,
@@ -79,11 +99,13 @@ _ai_chat_sources = [
79
99
" ui/HelpDialog.ts" ,
80
100
" ui/PromptEditDialog.ts" ,
81
101
" ui/SettingsDialog.ts" ,
102
+ " ui/EvaluationDialog.ts" ,
82
103
" ai_chat_impl.ts" ,
83
104
" core/Graph.ts" ,
84
105
" core/State.ts" ,
85
106
" core/Types.ts" ,
86
107
" core/AgentService.ts" ,
108
+ " core/Constants.ts" ,
87
109
" core/GraphConfigs.ts" ,
88
110
" core/OpenAIClient.ts" ,
89
111
" core/LiteLLMClient.ts" ,
@@ -108,6 +130,22 @@ _ai_chat_sources = [
108
130
" agent_framework/ConfigurableAgentTool.ts" ,
109
131
" agent_framework/AgentRunner.ts" ,
110
132
" agent_framework/implementation/ConfiguredAgents.ts" ,
133
+ " evaluation/framework/types.ts" ,
134
+ " evaluation/framework/judges/LLMEvaluator.ts" ,
135
+ " evaluation/framework/GenericToolEvaluator.ts" ,
136
+ " evaluation/framework/MarkdownReportGenerator.ts" ,
137
+ " evaluation/utils/SanitizationUtils.ts" ,
138
+ " evaluation/utils/ErrorHandlingUtils.ts" ,
139
+ " evaluation/utils/EvaluationTypes.ts" ,
140
+ " evaluation/utils/PromptTemplates.ts" ,
141
+ " evaluation/utils/ResponseParsingUtils.ts" ,
142
+ " evaluation/test-cases/schema-extractor-tests.ts" ,
143
+ " evaluation/test-cases/streamlined-schema-extractor-tests.ts" ,
144
+ " evaluation/test-cases/research-agent-tests.ts" ,
145
+ " evaluation/test-cases/action-agent-tests.ts" ,
146
+ " evaluation/runner/EvaluationRunner.ts" ,
147
+ " evaluation/runner/VisionAgentEvaluationRunner.ts" ,
148
+ " common/MarkdownViewerUtil.ts" ,
111
149
" common/utils.ts" ,
112
150
" common/log.ts" ,
113
151
" common/context.ts" ,
0 commit comments