AarushiGupta28 commited on
Commit
0ae6af3
·
verified ·
1 Parent(s): da19ef4

Update app_server.py

Browse files
Files changed (1) hide show
  1. app_server.py +1 -2
app_server.py CHANGED
@@ -1,5 +1,4 @@
1
  from subprocess import call
2
- import app
3
  import streamlit as st
4
  import random
5
  import time
@@ -162,7 +161,7 @@ def res(p1):
162
 
163
  result = info_chain({"query": question})
164
  # print(result["result"])
165
- return str(result["result"])
166
 
167
 
168
 
 
1
  from subprocess import call
 
2
  import streamlit as st
3
  import random
4
  import time
 
161
 
162
  result = info_chain({"query": question})
163
  # print(result["result"])
164
+ return result["result"]
165
 
166
 
167