♻️ refactor: clean up code formatting and improve readability

- Fix inconsistent indentation across multiple engine files
- Remove trailing whitespace and add missing newlines
- Improve code formatting in prompt generation functions
- Break long lines for better readability
- Standardize spacing and brackets placement
This commit is contained in:
frauniki
2025-06-15 17:29:12 +09:00
parent e4f7e8dc80
commit 45aed936b1
11 changed files with 134 additions and 112 deletions
+1 -1
View File
@@ -53,7 +53,7 @@ export class AzureEngine implements AiEngine {
if (message?.content === null) {
return undefined;
}
let content = message?.content;
return removeContentTags(content, 'think');
} catch (error) {