anthropic working

This commit is contained in:
Alex
2023-10-28 19:51:12 +01:00
parent e54d46aae1
commit 04b4001277
6 changed files with 105 additions and 1 deletions

View File

@@ -29,6 +29,8 @@ answer = Blueprint('answer', __name__)
if settings.LLM_NAME == "gpt4":
gpt_model = 'gpt-4'
elif settings.LLM_NAME == "anthropic":
gpt_model = 'claude-2'
else:
gpt_model = 'gpt-3.5-turbo'