ajwthompson commited on
Commit
40cb81b
·
1 Parent(s): ddb05cb

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -11
app.py CHANGED
@@ -10,17 +10,6 @@ with open("vectorstore.pkl", "rb") as f:
10
  vectorstore = pickle.load(f)
11
 
12
 
13
- def set_openai_api_key(api_key: str):
14
- """Set the api key and return chain.
15
- If no api_key, then None is returned.
16
- """
17
- if api_key:
18
- os.environ["OPENAI_API_KEY"] = api_key
19
- chain = get_chain(vectorstore)
20
- os.environ["OPENAI_API_KEY"] = ""
21
- return chain
22
-
23
-
24
  class ChatWrapper:
25
 
26
  def __init__(self):
@@ -28,7 +17,11 @@ class ChatWrapper:
28
  def __call__(
29
  self, inp: str, history: Optional[Tuple[str, str]]
30
  ):
 
 
 
31
  """Execute the chat functionality."""
 
32
  self.lock.acquire()
33
  api_key = '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'
34
  chain = set_openai_api_key(api_key)
 
10
  vectorstore = pickle.load(f)
11
 
12
 
 
 
 
 
 
 
 
 
 
 
 
13
  class ChatWrapper:
14
 
15
  def __init__(self):
 
17
  def __call__(
18
  self, inp: str, history: Optional[Tuple[str, str]]
19
  ):
20
+
21
+
22
+ chain = get_chain(vectorstore)
23
  """Execute the chat functionality."""
24
+ os.environ["OPENAI_API_KEY"] = api_key
25
  self.lock.acquire()
26
  api_key = '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'
27
  chain = set_openai_api_key(api_key)