Fix typo envrion -> environ (#6585)

This commit is contained in:
Simon Duerr 2023-11-27 02:29:00 +01:00 committed by GitHub
parent 206af31d7c
commit 5ae415e87d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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')