Skip to content

Commit

Permalink
PROJECT_SUMMARY NO_TOOLS
Browse files Browse the repository at this point in the history
  • Loading branch information
olegklimov committed Dec 7, 2024
1 parent bd2185f commit 6f0a1d9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/ChatLinks/ChatLinks.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ export const ChatLinks: React.FC = () => {
dispatch(setIntegrationData({ path: link.current_config_file }));
// set the integration fata
}
submit(link.text, "PROJECTSUMMARY");
submit(link.text, "PROJECT_SUMMARY");

Check failure on line 117 in src/components/ChatLinks/ChatLinks.tsx

View workflow job for this annotation

GitHub Actions / build (lts/*)

Argument of type '"PROJECT_SUMMARY"' is not assignable to parameter of type 'LspChatMode | undefined'.

Check failure on line 117 in src/components/ChatLinks/ChatLinks.tsx

View workflow job for this annotation

GitHub Actions / build (latest)

Argument of type '"PROJECT_SUMMARY"' is not assignable to parameter of type 'LspChatMode | undefined'.
return;
}

Expand Down
3 changes: 2 additions & 1 deletion src/features/Chat/Thread/actions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -210,9 +210,10 @@ function checkForToolLoop(message: ChatMessages): boolean {

// export function chatModeToLspMode(mode?: ToolUse) {
// if (mode === "agent") return "AGENT";
// if (mode === "quick") return "NOTOOLS";
// if (mode === "quick") return "NO_TOOLS";
// return "EXPLORE";
// }

export const chatAskQuestionThunk = createAppAsyncThunk<
unknown,
{
Expand Down

0 comments on commit 6f0a1d9

Please sign in to comment.