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:
sebseb7
2025-08-21 08:20:38 +00:00
parent 3c6bf7184c
commit 7ad5d10378
6 changed files with 424 additions and 22 deletions

View File

@@ -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;