Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

VSCode: Update extension metadata #4079

Merged
merged 4 commits into from
May 10, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions vscode/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ This is a log of all notable changes to Cody for VS Code. [Unreleased] changes a

### Changed

- Extension has been renamed from `Cody AI` to `Cody: AI Coding Assistant with Autocomplete & Chat`. [pull/4079](https://github.com/sourcegraph/cody/pull/4079)
- Search: Cody's Natural Language Search has been moved to a new quick pick interface, and the search box has been removed from the sidebar. [pull/3991](https://github.com/sourcegraph/cody/pull/3991)
- Editor Context Menu: Updated the existing `Cody Chat: Add context` command to handle selected code from the editor as @-mention . [pull/4000](https://github.com/sourcegraph/cody/pull/4000)
- `Add Code to Chat`: Add selected code to the current opened chat, or new chat if no panel is opened.
Expand Down
2 changes: 1 addition & 1 deletion vscode/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ You can also build your own [Custom Commands (Beta)](https://sourcegraph.com/doc

## Choose Your LLM

Cody Pro users can now select the LLM they want to use for chat and experiment to choose the best model for the job. Choose from Claude 2.0, Claude 2.1, ChatGPT 3.5 Turbo, ChatGPT 4 Turbo, Claude Instant, and Mixtral.
Cody Pro users can now select the LLM they want to use for chat and experiment to choose the best model for the job. Choose from Claude 3 Opus, Claude 3 Sonnet, Claude 3 Haiku, ChatGPT 3.5 Turbo, ChatGPT 4 Turbo, Claude Instant, and Mixtral.

Administrators for Sourcegraph Enterprise instances can choose betweeen Claude and ChatGPT models to set for their teams as well.

Expand Down
8 changes: 5 additions & 3 deletions vscode/package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "cody-ai",
"private": true,
"displayName": "Cody AI",
"displayName": "Cody: AI Coding Assistant with Autocomplete & Chat",
"version": "1.16.2",
"publisher": "sourcegraph",
"license": "Apache-2.0",
"icon": "resources/cody.png",
"description": "Code AI with codebase context",
"description": "AI coding assistant that understands your codebase. Cody brings autocomplete, chat, and commands to your IDE, helping you generate code, write unit tests, create documentation, and explain complex or legacy code using AI. Choose from several LLMs including GPT-3.5 Turbo, GPT-4 Turbo, and Claude 3, or run local models using Ollama. Cody supports all major languages including JavaScript, TypeScript, Python, Java, Go, and C/C++.",
"scripts": {
"postinstall": "pnpm download-wasm",
"dev": "pnpm run -s dev:desktop",
Expand Down Expand Up @@ -46,6 +46,7 @@
"assistant",
"chatbot",
"chat",
"code completion",
"refactor",
"documentation",
"test",
Expand All @@ -66,7 +67,8 @@
"java",
"php",
"swift",
"kotlin"
"kotlin",
"ollama"
],
"repository": {
"type": "git",
Expand Down