Skip to content

Commit e4e0c3a

Browse files
Update: General project updates
1 parent 0128423 commit e4e0c3a

12 files changed

Lines changed: 1172 additions & 1464 deletions

File tree

.env.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ LLM_KEY=your-api-key-here
33
LLM_VERSION=2024-05-01-preview
44
LLM_MODEL=gpt-4
55
LLM_TPM=20000
6-
LLM_MIN_INTERVAL=10
6+
LLM_MIN_INTERVAL=2
77
PROJECT_PATH=./your-project-path

.vscode/launch.json

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"name": "Debug executable 'botcoder'",
9+
"type": "lldb",
10+
"request": "launch",
11+
"cargo": {
12+
"args": [
13+
"run",
14+
"--bin=botcoder"
15+
]
16+
},
17+
"args": []
18+
},
19+
{
20+
"name": "Debug unit tests in executable 'botcoder'",
21+
"type": "lldb",
22+
"request": "launch",
23+
"cargo": {
24+
"args": [
25+
"test",
26+
"--bin=botcoder"
27+
]
28+
}
29+
}
30+
]
31+
}

Cargo.lock

Lines changed: 80 additions & 138 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)