Skip to content

Commit

Permalink
openai key
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew J Xu committed Oct 11, 2023
1 parent bed2cb3 commit 21332c0
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion python/prereq_parse.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,13 @@
from langchain.output_parsers import ResponseSchema
from langchain.output_parsers import StructuredOutputParser
from langchain.chains import SequentialChain, TransformChain, LLMChain
from secret_api_keys import OPEN_AI_API_KEY
from typing import Dict, Tuple

try:
from secret_api_keys import OPEN_AI_API_KEY
except ImportError:
OPEN_AI_API_KEY = "<key>"

# import parsy

MODEL = "gpt-3.5-turbo"
Expand Down

0 comments on commit 21332c0

Please sign in to comment.