Skip to content

Commit 743373b

Browse files
committed
feat: 完成一些基本的分档,以及增加中国的一些模型。
1 parent a09263b commit 743373b

File tree

167 files changed

+4556
-669
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

167 files changed

+4556
-669
lines changed

.vscode/launch.json

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
// 使用 IntelliSense 了解相关属性。
3+
// 悬停以查看现有属性的描述。
4+
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"name": "Launch Quickstart",
9+
"type": "go",
10+
"request": "launch",
11+
"mode": "debug",
12+
"program": "${workspaceFolder}/examples/quickstart/main.go", // ✅ 正确:指向具体文件
13+
"console": "integratedTerminal",
14+
"args": ["console"], // ✅ 添加 console 参数启动控制台模式
15+
"env": {
16+
"GOOGLE_API_KEY": "your-api-key-here" // 设置环境变量
17+
}
18+
},
19+
{
20+
"name": "Launch Quickstart (Directory)",
21+
"type": "go",
22+
"request": "launch",
23+
"mode": "debug",
24+
"program": "${workspaceFolder}/examples/quickstart", // ✅ 指向目录
25+
"console": "integratedTerminal",
26+
"args": ["console"]
27+
}
28+
]
29+
}

0 commit comments

Comments
 (0)