feat(app): lint & beautify

This commit is contained in:
ItzCrazyKns
2025-12-25 18:58:33 +05:30
parent 60dd7a8108
commit ae132ebee8
6 changed files with 131 additions and 127 deletions

View File

@@ -1,5 +1,5 @@
import OpenAILLM from "../openai/openaiLLM";
import OpenAILLM from '../openai/openaiLLM';
class AnthropicLLM extends OpenAILLM {}
export default AnthropicLLM;
export default AnthropicLLM;

View File

@@ -81,7 +81,7 @@ class AnthropicProvider extends BaseModelProvider<AnthropicConfig> {
return new AnthropicLLM({
apiKey: this.config.apiKey,
model: key,
baseURL: 'https://api.anthropic.com/v1'
baseURL: 'https://api.anthropic.com/v1',
});
}
@@ -112,4 +112,4 @@ class AnthropicProvider extends BaseModelProvider<AnthropicConfig> {
}
}
export default AnthropicProvider;
export default AnthropicProvider;