Update CLI and ModelDialog to enhance functionality and user experience. Modify interrogation command in CLI for improved output generation, adjust model settings in ModelDialog for better reasoning effort, and introduce a new plugin structure in plan.md for LLM integration in Roundcube. Add spinner functionality in InkApp for loading states and improve error handling in read_file.js to ensure proper line breaks in file content output.
This commit is contained in:
@@ -88,10 +88,10 @@ class ModelDialog {
|
||||
this.messagesSent.push(...messagesToSend);
|
||||
|
||||
const call = {
|
||||
model: 'gpt-5-nano',
|
||||
model: 'gpt-5',
|
||||
input: messagesToSend,
|
||||
text: { format: { type: 'text' }, verbosity: 'low' },
|
||||
reasoning: { effort: 'medium', summary: 'detailed' },
|
||||
reasoning: { effort: 'low', summary: 'detailed' },
|
||||
tools: Object.values(toolsByFile).map(t => t.def),
|
||||
store: true,
|
||||
previous_response_id: this.previousResponseId
|
||||
@@ -174,4 +174,4 @@ class ModelDialog {
|
||||
}
|
||||
}
|
||||
|
||||
export default ModelDialog;
|
||||
export default ModelDialog;
|
||||
|
||||
Reference in New Issue
Block a user