feat: rename config modelName to model

This commit is contained in:
Simon
2025-10-21 15:13:16 +08:00
parent dc7e09b4ad
commit b6bf6fe06a
3 changed files with 5 additions and 5 deletions

View File

@@ -55,7 +55,7 @@ export class LLM {
// Default to OpenAI client
this.client = new OpenAIClient({
model: this.config.modelName,
model: this.config.model,
apiKey: this.config.apiKey,
baseURL: this.config.baseURL,
temperature: this.config.temperature,