pull/5714/head
STetsing 2 weeks ago
parent b11c8d2016
commit ce7aa9e91b
  1. 1
      libs/remix-ai-core/src/agents/completionAgent.ts
  2. 2
      libs/remix-ai-core/src/inferencers/remote/remoteInference.ts

@ -20,7 +20,6 @@ enum SupportedFileExtensions {
} }
export class CodeCompletionAgent { export class CodeCompletionAgent {
private workspacesIndexes = new Map<string, any>();
props: any; props: any;
indexer: any; indexer: any;
Documents: Document[] = []; Documents: Document[] = [];

@ -12,7 +12,7 @@ export class RemoteInferencer implements ICompletions {
max_history = 7 max_history = 7
model_op = RemoteBackendOPModel.CODELLAMA // default model operation change this to llama if necessary model_op = RemoteBackendOPModel.CODELLAMA // default model operation change this to llama if necessary
event: EventEmitter event: EventEmitter
test_env=true test_env=false
test_url="http://solcodertest.org" test_url="http://solcodertest.org"
constructor(apiUrl?:string, completionUrl?:string) { constructor(apiUrl?:string, completionUrl?:string) {

Loading…
Cancel
Save