Skip to content

Commit a26ccbb

Browse files
committed
Update default LongCat model to LongCat-Flash-Chat
1 parent c5d3629 commit a26ccbb

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ temperature = 0.7
4545

4646
[longcat]
4747
apiKey = "ak_xxxxxxxxxxxxxxxxxxxxxxxxxxxx"
48-
model = "LongCat-Flash-Thinking-2601"
48+
model = "LongCat-Flash-Chat"
4949
```
5050

5151
Then spawn a Steve with `/steve spawn Bob` and press K to start giving commands.
@@ -242,7 +242,7 @@ temperature = 0.7
242242

243243
[longcat]
244244
apiKey = "ak_..."
245-
model = "LongCat-Flash-Thinking-2601"
245+
model = "LongCat-Flash-Chat"
246246

247247
[deepseek]
248248
apiKey = "sk-..."

config/steve-common.toml.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
apiKey = "ak_xxxxxxxxxxxxxxxxxxxxxxxxxxxx"
1717

1818
# LongCat model to use (LongCat-Flash-Chat, LongCat-Flash-Thinking, LongCat-Flash-Thinking-2601)
19-
model = "LongCat-Flash-Thinking-2601"
19+
model = "LongCat-Flash-Chat"
2020

2121
# DeepSeek API Configuration
2222
[deepseek]

src/main/java/com/steve/ai/config/SteveConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public class SteveConfig {
6262

6363
LONGCAT_MODEL = builder
6464
.comment("LongCat model to use (LongCat-Flash-Chat, LongCat-Flash-Thinking, LongCat-Flash-Thinking-2601)")
65-
.define("model", "LongCat-Flash-Thinking-2601");
65+
.define("model", "LongCat-Flash-Chat");
6666

6767
builder.pop();
6868

0 commit comments

Comments
 (0)