Skip to content

Commit

Permalink
Fix typo envrion -> environ (#6585)
Browse files Browse the repository at this point in the history
  • Loading branch information
duerrsimon committed Nov 27, 2023
1 parent 206af31 commit 5ae415e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion guides/04_chatbots/01_creating-a-chatbot-fast.md
Expand Up @@ -177,7 +177,7 @@ from langchain.schema import AIMessage, HumanMessage
import openai
import gradio as gr

os.envrion["OPENAI_API_KEY"] = "sk-..." # Replace with your key
os.environ["OPENAI_API_KEY"] = "sk-..." # Replace with your key

llm = ChatOpenAI(temperature=1.0, model='gpt-3.5-turbo-0613')

Expand Down

0 comments on commit 5ae415e

Please sign in to comment.