File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
apps/remix-ide/src/app/plugins Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -22,14 +22,14 @@ const profile = {
2222type ChatEntry = [ string , string ] ;
2323
2424enum BackendOPModel {
25- DeeSeek ,
25+ DeepSeek ,
2626 CodeLLama ,
2727 Mistral
2828}
2929
3030const 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 )
You can’t perform that action at this time.
0 commit comments