Skip to content

Commit

Permalink
Change model_name to use environment variable
Browse files Browse the repository at this point in the history
  • Loading branch information
coolbeevip committed Jul 10, 2024
1 parent 8d8436a commit 90069e9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class TestMarketingAnalysisAssistant(TestCase):
def test_main(self):
assistant = MarketingAnalysisAssistant(openai_api_base=os.environ["OPENAI_API_BASE"],
openai_api_key=os.environ["OPENAI_API_KEY"],
model_name="gpt-4o",
model_name=os.environ["MODEL_NAME"],
recursion_limit=50)
assistant.run()

Expand Down

0 comments on commit 90069e9

Please sign in to comment.