Skip to content

Commit

Permalink
changed default provider back to openai
Browse files Browse the repository at this point in the history
  • Loading branch information
TORlN committed Nov 19, 2023
1 parent d8ecae3 commit 586268f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aicodebot/lm.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class LanguageModelManager:
OLLAMA = "Ollama"
PROVIDERS = [OPENAI, OPENROUTER, OLLAMA]
DEFAULT_MODEL = "gpt-4"
DEFAULT_PROVIDER = OLLAMA
DEFAULT_PROVIDER = OPENAI

def __init__(self, model_name=None, provider=None):
self.model_name = model_name
Expand Down

0 comments on commit 586268f

Please sign in to comment.