-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
119 lines (119 loc) · 3.27 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "vscode-o1-mini-agent",
"publisher": "hikaruegashira",
"displayName": "o1 (OpenAI API) in Copilot Chat",
"description": "Invoke o1 model via OpenAI API. (Copilot Chat Participant)",
"repository": {
"type": "git",
"url": "https://github.com/HikaruEgashira/o1-extension.git"
},
"engines": {
"vscode": "^1.96.0"
},
"version": "1.0.7",
"extensionDependencies": [
"github.copilot-chat"
],
"categories": [
"Other"
],
"icon": "o1.webp",
"activationEvents": [],
"contributes": {
"configuration": {
"type": "object",
"title": "o1 Configuration",
"properties": {
"o1.systemPrompt": {
"type": "string",
"default": "",
"description": "System prompt for the o1 model."
},
"o1.reasoningEffort": {
"type": "string",
"default": "",
"enum": [
"",
"low",
"medium",
"high"
],
"description": "The amount of effort the model should put into its reasoning."
}
}
},
"chatParticipants": [
{
"id": "vscode-copilot.o1-mini",
"fullName": "o1-mini",
"name": "o1-mini",
"description": "Invoke o1-mini model via OpenAI API.",
"isSticky": true,
"disambiguation": [
{
"category": "general_questions",
"description": "The user has general questions that may not be strictly related to programming.",
"examples": [
"What is the capital of France?",
"How do I bake a cake?",
"Can you tell me a joke?"
]
}
]
},
{
"id": "vscode-copilot.o1",
"fullName": "o1",
"name": "o1",
"description": "Invoke o1 model via OpenAI API.",
"isSticky": true,
"disambiguation": [
{
"category": "general_questions",
"description": "The user has general questions that may not be strictly related to programming.",
"examples": [
"What is the capital of France?",
"How do I bake a cake?",
"Can you tell me a joke?"
]
}
]
}
],
"commands": [
{
"command": "o1.reset",
"title": "Reset API Token for o1 Agent"
}
]
},
"main": "./out/extension.js",
"scripts": {
"vscode:prepublish": "npm run compile",
"publish": "bunx vsce publish",
"unpublish": "bunx vsce unpublish hikaruegashira.vscode-o1-agent",
"patch": "bunx vsce publish patch",
"minor": "bunx vsce publish minor",
"major": "bunx vsce publish major",
"compile": "tsc && vite build",
"watch": "vite build --watch",
"pretest": "npm run compile && npm run lint",
"lint": "npx @biomejs/biome check --apply ./src",
"test": "vscode-test",
"update-proposed-api": "npx vscode-dts dev",
"package": "bunx vsce package"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@langchain/community": "^0.3.19",
"@types/node": "^22.10.2",
"@types/vscode": "1.96.0",
"@vscode/prompt-tsx": "^0.2.11-alpha",
"typescript": "^5.7.2",
"vite": "^6.0.5"
},
"dependencies": {
"@ai-sdk/openai": "^1.0.11",
"ai": "^4.0.22"
}
}