File size: 383 Bytes
230b1a5
 
 
 
 
 
2abab5f
 
560aacd
 
 
2abab5f
 
560aacd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import os
from dotenv import load_dotenv

class LLMSettings:
    def __init__(self):
        load_dotenv()
        self.anthropic_api_key = os.getenv("ANTHROPIC_API_KEY")
        self.default_llm = "claude"
        
        if not self.anthropic_api_key:
            raise ValueError("ANTHROPIC_API_KEY is required")
    
    def get_available_models(self):
        return ["claude"]