Commit c8c7e4e6 authored by alex yao's avatar alex yao

merge release

parent d0cb8a0a
......@@ -131,14 +131,12 @@ public class AgentApplicationInfoServiceImpl implements AgentApplicationInfoServ
tools[i] = new Tool();
tools[i] = toolConfig;
}
bufferedReader = invokeLLM(largeModel, messageArray, topP, tools, useStatus);
bufferedReader = invokeLLM(model, messageArray, topP, tools, useStatus);
}else {
bufferedReader = invokeLLM(largeModel, messageArray, topP, null, useStatus);
bufferedReader = invokeLLM(model, messageArray, topP, null, useStatus);
}
textOutput(httpServletResponse, bufferedReader);
return null;
return textOutput(httpServletResponse, bufferedReader);
}
private List<String> toolsConfig(String[] functionName, String[] variableStructure, boolean isLongMemory){
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment