File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
apps/remix-ide/src/app/plugins Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -22,14 +22,14 @@ const profile = {
22
22
type ChatEntry = [ string , string ] ;
23
23
24
24
enum BackendOPModel {
25
- DeeSeek ,
25
+ DeepSeek ,
26
26
CodeLLama ,
27
27
Mistral
28
28
}
29
29
30
30
const PromptBuilder = ( inst , answr , modelop ) => {
31
- if ( modelop === BackendOPModel . CodeLLama ) return "\n### INSTRUCTION:\n" + inst + "\n### RESPONSE:\n" + answr
32
- if ( modelop === BackendOPModel . DeeSeek ) return ""
31
+ if ( modelop === BackendOPModel . CodeLLama ) return ""
32
+ if ( modelop === BackendOPModel . DeepSeek ) return "\n### INSTRUCTION:\n" + inst + "\n### RESPONSE:\n" + answr
33
33
if ( modelop === BackendOPModel . Mistral ) return ""
34
34
}
35
35
@@ -38,7 +38,7 @@ export class SolCoder extends Plugin {
38
38
completion_url : string
39
39
solgpt_chat_history :ChatEntry [ ]
40
40
max_history = 7
41
- model_op = BackendOPModel . CodeLLama
41
+ model_op = BackendOPModel . DeepSeek
42
42
43
43
constructor ( ) {
44
44
super ( profile )
You can’t perform that action at this time.
0 commit comments