Skip to content
Open
Show file tree
Hide file tree
Changes from all 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
14 changes: 13 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
},
"publisher": "fiatinnovations",
"description": "CodeBuddy is a Visual Studio Code extension that enhances developer productivity through AI-powered code assistance. It provides intelligent code review, refactoring suggestions, optimization tips, and interactive chat capabilities powered by multiple AI models including Gemini, Groq, Anthropic, and Deepseek.",
"version": "3.2.6",
"version": "3.2.9",
"engines": {
"vscode": "^1.78.0"
},
Expand Down Expand Up @@ -96,6 +96,10 @@
"when": "editorHasSelection",
"command": "CodeBuddy.generateMermaidDiagram",
"group": "CodeBuddy"
},
{
"command": "CodeBuddy.reviewPR",
"group": "CodeBuddy"
}
]
},
Expand Down Expand Up @@ -135,6 +139,14 @@
{
"command": "CodeBuddy.generateMermaidDiagram",
"title": "CodeBuddy. Generate Mermaid diagram."
},
{
"command": "CodeBuddy.restart",
"title": "CodeBuddy: Restart Extension"
},
{
"command": "CodeBuddy.reviewPR",
"title": "CodeBuddy: Review Pull Request"
}
],
"viewsContainers": {
Expand Down
1 change: 1 addition & 0 deletions src/application/constant.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ export enum COMMON {
GEMINI_CHAT_HISTORY = "geminiChatHistory",
ANTHROPIC_CHAT_HISTORY = "anthropicChatHistory",
DEEPSEEK_CHAT_HISTORY = "deepseekChatHistory",
SHARED_CHAT_HISTORY = "sharedChatHistory", // Unified chat history for all providers
USER_INPUT = "user-input",
BOT = "bot",
GEMINI_SNAPSHOT = "GeminiSnapshot",
Expand Down
Loading