tboen1 commited on
Commit
fb04493
·
verified ·
1 Parent(s): fbafca4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -4
app.py CHANGED
@@ -17,7 +17,5 @@ question = tg.Variable(question_string,
17
  role_description="question to the LLM",
18
  requires_grad=False)
19
 
20
- st.write(os.getenv("OPENAI_API_KEY")[:-4])
21
-
22
- #answer = model(question)
23
- #print(answer)
 
17
  role_description="question to the LLM",
18
  requires_grad=False)
19
 
20
+ answer = model(question)
21
+ st.write(answer)