anirudhabokil commited on
Commit
2a63ec3
·
verified ·
1 Parent(s): e8e039f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -8,7 +8,7 @@ user_question = gr.Textbox(label="Ask your question")
8
  model_output = gr.Label(label="Answer")
9
 
10
  def qa_bot(user_question):
11
- return user_question + "Answer"
12
 
13
  demo = gr.Interface(
14
  fn=qa_bot,
 
8
  model_output = gr.Label(label="Answer")
9
 
10
  def qa_bot(user_question):
11
+ return os.environ["OPENAI_BASE_URL"] + " Answer"
12
 
13
  demo = gr.Interface(
14
  fn=qa_bot,