From f82172aa06e09c44de065715b7d1bd2812c6c01c Mon Sep 17 00:00:00 2001 From: Goutham Date: Fri, 6 Dec 2024 16:01:58 +0100 Subject: [PATCH] fix: typo --- examples/basic_usage.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/basic_usage.py b/examples/basic_usage.py index 6da9956..ce9d54d 100644 --- a/examples/basic_usage.py +++ b/examples/basic_usage.py @@ -29,7 +29,7 @@ async def analyze_sentiment(reviews: List[str], system_prompt: str) -> Sentiment gpt_model = 'gpt-4o-mini', pydantic_model=Sentiment_Prediction_Output, input_data=input_data, - api_key=os.getenv("OPENAI_API_KEY_WF")) + api_key=os.getenv("OPENAI_API_KEY")) print(output) # Print errors if any