Omid-sar commited on
Commit
574fc32
·
1 Parent(s): fa29661

Add OpenAI API

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -9,10 +9,10 @@ from langchain.prompts import PromptTemplate
9
  from langchain.chains import LLMChain
10
  import textwrap
11
  import streamlit as st
12
- from apikey import apikey
13
 
14
  # Load OpenAI API key and define directory to store the data
15
- os.environ["OPENAI_API_KEY"] = apikey
16
  persist_directory = "../../data/processed"
17
 
18
  # Load the OpenAI Embeddings, LLM , PromptTemplate and LLMChain
 
9
  from langchain.chains import LLMChain
10
  import textwrap
11
  import streamlit as st
12
+
13
 
14
  # Load OpenAI API key and define directory to store the data
15
+
16
  persist_directory = "../../data/processed"
17
 
18
  # Load the OpenAI Embeddings, LLM , PromptTemplate and LLMChain