Skip to content
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions config/gni/devtools_grd_files.gni
Original file line number Diff line number Diff line change
Expand Up @@ -658,6 +658,9 @@ grd_files_bundled_sources = [
"front_end/panels/ai_chat/ui/mcp/MCPConnectorsCatalogDialog.js",
"front_end/panels/ai_chat/ui/EvaluationDialog.js",
"front_end/panels/ai_chat/ui/WebAppCodeViewer.js",
"front_end/panels/ai_chat/ui/TodoListDisplay.js",
"front_end/panels/ai_chat/ui/FileListDisplay.js",
"front_end/panels/ai_chat/ui/FileContentViewer.js",
"front_end/panels/ai_chat/core/AgentService.js",
"front_end/panels/ai_chat/core/State.js",
"front_end/panels/ai_chat/core/Graph.js",
Expand Down Expand Up @@ -688,6 +691,7 @@ grd_files_bundled_sources = [
"front_end/panels/ai_chat/LLM/LiteLLMProvider.js",
"front_end/panels/ai_chat/LLM/GroqProvider.js",
"front_end/panels/ai_chat/LLM/OpenRouterProvider.js",
"front_end/panels/ai_chat/LLM/BrowserOperatorProvider.js",
"front_end/panels/ai_chat/LLM/LLMClient.js",
"front_end/panels/ai_chat/LLM/MessageSanitizer.js",
"front_end/panels/ai_chat/tools/Tools.js",
Expand All @@ -714,6 +718,9 @@ grd_files_bundled_sources = [
"front_end/panels/ai_chat/tools/DeleteFileTool.js",
"front_end/panels/ai_chat/tools/ReadFileTool.js",
"front_end/panels/ai_chat/tools/ListFilesTool.js",
"front_end/panels/ai_chat/tools/ExecuteCodeTool.js",
"front_end/panels/ai_chat/tools/UpdateTodoTool.js",
"front_end/panels/ai_chat/tools/VisualIndicatorTool.js",
"front_end/panels/ai_chat/common/utils.js",
"front_end/panels/ai_chat/common/log.js",
"front_end/panels/ai_chat/common/context.js",
Expand Down
14 changes: 14 additions & 0 deletions front_end/panels/ai_chat/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ devtools_module("ai_chat") {
"ui/PromptEditDialog.ts",
"ui/EvaluationDialog.ts",
"ui/WebAppCodeViewer.ts",
"ui/TodoListDisplay.ts",
"ui/FileListDisplay.ts",
"ui/FileContentViewer.ts",
"ai_chat_impl.ts",
"models/ChatTypes.ts",
"core/Graph.ts",
Expand Down Expand Up @@ -76,6 +79,7 @@ devtools_module("ai_chat") {
"LLM/LiteLLMProvider.ts",
"LLM/GroqProvider.ts",
"LLM/OpenRouterProvider.ts",
"LLM/BrowserOperatorProvider.ts",
"LLM/MessageSanitizer.ts",
"LLM/LLMClient.ts",
"tools/Tools.ts",
Expand All @@ -98,11 +102,14 @@ devtools_module("ai_chat") {
"tools/DeleteFileTool.ts",
"tools/ReadFileTool.ts",
"tools/ListFilesTool.ts",
"tools/UpdateTodoTool.ts",
"tools/ExecuteCodeTool.ts",
"tools/SequentialThinkingTool.ts",
"tools/ThinkingTool.ts",
"tools/RenderWebAppTool.ts",
"tools/GetWebAppDataTool.ts",
"tools/RemoveWebAppTool.ts",
"tools/VisualIndicatorTool.ts",
"agent_framework/ConfigurableAgentTool.ts",
"agent_framework/AgentRunner.ts",
"agent_framework/AgentRunnerEventBus.ts",
Expand Down Expand Up @@ -208,6 +215,9 @@ _ai_chat_sources = [
"ui/SettingsDialog.ts",
"ui/EvaluationDialog.ts",
"ui/WebAppCodeViewer.ts",
"ui/TodoListDisplay.ts",
"ui/FileListDisplay.ts",
"ui/FileContentViewer.ts",
"ui/mcp/MCPConnectionsDialog.ts",
"ui/mcp/MCPConnectorsCatalogDialog.ts",
"ai_chat_impl.ts",
Expand Down Expand Up @@ -243,6 +253,7 @@ _ai_chat_sources = [
"LLM/LiteLLMProvider.ts",
"LLM/GroqProvider.ts",
"LLM/OpenRouterProvider.ts",
"LLM/BrowserOperatorProvider.ts",
"LLM/MessageSanitizer.ts",
"LLM/LLMClient.ts",
"tools/Tools.ts",
Expand All @@ -265,11 +276,14 @@ _ai_chat_sources = [
"tools/DeleteFileTool.ts",
"tools/ReadFileTool.ts",
"tools/ListFilesTool.ts",
"tools/UpdateTodoTool.ts",
"tools/ExecuteCodeTool.ts",
"tools/SequentialThinkingTool.ts",
"tools/ThinkingTool.ts",
"tools/RenderWebAppTool.ts",
"tools/GetWebAppDataTool.ts",
"tools/RemoveWebAppTool.ts",
"tools/VisualIndicatorTool.ts",
"agent_framework/ConfigurableAgentTool.ts",
"agent_framework/AgentRunner.ts",
"agent_framework/AgentRunnerEventBus.ts",
Expand Down
Loading