Skip to content

Commit 1f173ae

Browse files
committed
changed backend model to deepseek
1 parent 1294a0b commit 1f173ae

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

apps/remix-ide/src/app/plugins/solcoderAI.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@ const profile = {
2222
type ChatEntry = [string, string];
2323

2424
enum BackendOPModel{
25-
DeeSeek,
25+
DeepSeek,
2626
CodeLLama,
2727
Mistral
2828
}
2929

3030
const PromptBuilder = (inst, answr, modelop) => {
3131
if (modelop === BackendOPModel.CodeLLama) return "\n### INSTRUCTION:\n" + inst + "\n### RESPONSE:\n" + answr
32-
if (modelop === BackendOPModel.DeeSeek) return ""
32+
if (modelop === BackendOPModel.DeepSeek) return ""
3333
if (modelop === BackendOPModel.Mistral) return ""
3434
}
3535

@@ -38,7 +38,7 @@ export class SolCoder extends Plugin {
3838
completion_url: string
3939
solgpt_chat_history:ChatEntry[]
4040
max_history = 7
41-
model_op = BackendOPModel.CodeLLama
41+
model_op = BackendOPModel.DeepSeek
4242

4343
constructor() {
4444
super(profile)

0 commit comments

Comments
 (0)