Skip to content

Commit

Permalink
fix title
Browse files Browse the repository at this point in the history
  • Loading branch information
HikaruEgashira committed Oct 7, 2024
1 parent e6d590a commit b8c32a3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "vscode-o1-mini-agent",
"publisher": "hikaruegashira",
"displayName": "Invoke o1-mini model via OpenAI API. (Copilot Chat Participant)",
"description": "This extension provides a chat participant that allows you to invoke the o1-mini model via the OpenAI API.",
"displayName": "o1-mini (OpenAI API) in Copilot Chat",
"description": "Invoke o1-mini model via OpenAI API. (Copilot Chat Participant)",
"repository": {
"type": "git",
"url": "https://github.com/HikaruEgashira/o1-extension.git"
Expand Down
2 changes: 1 addition & 1 deletion src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { chatHandler } from "./chatHandler";

export async function activate(context: vscode.ExtensionContext) {
const apiKey = await getApiKey(context);
const o1 = vscode.chat.createChatParticipant("vscode-copilot.o1", chatHandler(apiKey));
const o1 = vscode.chat.createChatParticipant("vscode-copilot.o1-mini", chatHandler(apiKey));
o1.iconPath = vscode.Uri.joinPath(context.extensionUri, "o1-mini.webp");
}

Expand Down

0 comments on commit b8c32a3

Please sign in to comment.