nehatarey commited on
Commit
5050c78
1 Parent(s): 87ad736

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -35,7 +35,7 @@ print("Got docs split")
35
  # Create the embeddings
36
  embeddings = OpenAIEmbeddings()
37
  #Load the model
38
- llm = ChatOpenAI(temperature=0, model="gpt-3.5-turbo",openai_api_key=api_key_input)
39
 
40
  # Create vectorstore to use as the index
41
  vectordb = Chroma.from_documents(documents=documents, embedding=embeddings)
 
35
  # Create the embeddings
36
  embeddings = OpenAIEmbeddings()
37
  #Load the model
38
+ llm = ChatOpenAI(temperature=0, model="gpt-3.5-turbo")
39
 
40
  # Create vectorstore to use as the index
41
  vectordb = Chroma.from_documents(documents=documents, embedding=embeddings)