mirror of
https://github.com/AutoMaker-Org/automaker.git
synced 2026-02-04 09:13:08 +00:00
refactor: simplify config value formatting in CodexProvider
- Removed unnecessary JSON.stringify conversion for string values in formatConfigValue function, streamlining the value formatting process. - This change enhances code clarity and reduces complexity in the configuration handling of the CodexProvider.
This commit is contained in:
@@ -311,9 +311,6 @@ function buildCombinedPrompt(options: ExecuteOptions, systemPromptText?: string
|
|||||||
}
|
}
|
||||||
|
|
||||||
function formatConfigValue(value: string | number | boolean): string {
|
function formatConfigValue(value: string | number | boolean): string {
|
||||||
if (typeof value === 'string') {
|
|
||||||
return JSON.stringify(value);
|
|
||||||
}
|
|
||||||
return String(value);
|
return String(value);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user