soroushsrd commited on
Commit
8c7f42b
·
verified ·
1 Parent(s): d94af86

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -17
app.py CHANGED
@@ -172,22 +172,7 @@ if analyze_button:
172
  "question":system_message
173
  }
174
  )
175
- print(answer)
 
176
 
177
 
178
- # app = FastAPI(
179
- # title="LangChain Server",
180
- # version="1.0",
181
- # description="A simple api server using Langchain's Runnable interfaces",
182
- # )
183
- #
184
- # add_routes(
185
- # app,
186
- # chain,
187
- # path="/Langchain_fastapi",
188
- # )
189
- #
190
- # if __name__ == "__main__":
191
- # import uvicorn
192
- #
193
- # uvicorn.run(app, host="localhost", port=8000)
 
172
  "question":system_message
173
  }
174
  )
175
+ st.write(answer)
176
+
177
 
178