Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 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
1 change: 1 addition & 0 deletions config/gni/devtools_grd_files.gni
Original file line number Diff line number Diff line change
Expand Up @@ -688,6 +688,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 Down
8 changes: 8 additions & 0 deletions front_end/panels/ai_chat/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,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 +99,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 @@ -243,6 +247,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 +270,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