Skip to content

Commit 2cd2aef

Browse files
committed
feat: 添加AI模型配置,更新VS Code设置和README内容
1 parent 3ea86f6 commit 2cd2aef

File tree

3 files changed

+48
-1
lines changed

3 files changed

+48
-1
lines changed

.codebuddy/models.json

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
{
2+
"models": [
3+
{
4+
"id": "openai/gpt-4o",
5+
"name": "GPT-4o 编码专用",
6+
"vendor": "OpenAI",
7+
"apiKey": "sk-your-openai-key",
8+
"maxInputTokens": 128000,
9+
"maxOutputTokens": 16384,
10+
"url": "https://api.openai.com/v1/chat/completions",
11+
"supportsToolCall": true,
12+
"supportsImages": false
13+
},
14+
{
15+
"id": "anthropic/claude-3-opus",
16+
"name": "Claude 3 Opus 编码",
17+
"vendor": "Anthropic",
18+
"apiKey": "sk-WuyCYovpJCI7AQyv4JnofAyWlFYYe7GDuQdgzHkepNuEyws7",
19+
"maxInputTokens": 200000,
20+
"maxOutputTokens": 8192,
21+
"url": "https://yibuapi.com/v1/chat/completions",
22+
"supportsToolCall": true,
23+
"supportsImages": false
24+
},
25+
{
26+
"id": "deepseek/deepseek-coder-v2",
27+
"name": "DeepSeek-Coder V2",
28+
"vendor": "DeepSeek",
29+
"apiKey": "sk-8aa099ab1989457e946803f723a9487d",
30+
"maxInputTokens": 128000,
31+
"maxOutputTokens": 8192,
32+
"url": "https://api.deepseek.com/v1/chat/completions",
33+
"supportsToolCall": true,
34+
"supportsImages": false
35+
}
36+
]
37+
}

.vscode/settings.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
{
2-
"liveServer.settings.port": 5501
2+
"liveServer.settings.port": 5501,
3+
"codingcopilot.enableCompletionLanguage": {}
34
}

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# github-deploy
22

3+
使用GitHub为网站提供部署服务以及部署流程运行
4+
5+
<div style="display: none;">
6+
<title>github-deploy</title>
7+
<description>使用GitHub为网站提供部署服务以及部署流程运行</description>
8+
<repository>https://github.com/dushenyan/github-deploy</repository>
9+
<icon>https://cdn.jsdelivr.net/npm/simple-icons@v10/icons/github.svg</icon>
10+
</div>
11+
312
<a href="https://dushenyan.github.io/github-deploy/" class="read-more">查看网站 <span class="ml-2 right-icon">&#8594;</span></a>
413

514
### 项目介绍

0 commit comments

Comments
 (0)