Skip to content

Commit

Permalink
feat: upgrade from gpt-4 to gpt-4o for channel analysis
Browse files Browse the repository at this point in the history
  • Loading branch information
meetbryce committed May 30, 2024
1 parent 7271af8 commit 8174830
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hackathon_2023/topic_analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
) # `poetry add {download link}` from https://spacy.io/models/en#en_core_web_md
OPEN_AI_TOKEN = str(os.environ.get("OPEN_AI_TOKEN")).strip()
TEMPERATURE = float(os.environ.get("TEMPERATURE") or 0.2) + 0.1
CHAT_MODEL = "gpt-4"
CHAT_MODEL = "gpt-4o" # todo: make this configurable via .env (default to gpt-4o if unset)
DEBUG = bool(os.environ.get("DEBUG", False))

if OPEN_AI_TOKEN == "":
Expand Down

0 comments on commit 8174830

Please sign in to comment.