File tree Expand file tree Collapse file tree 3 files changed +3
-5
lines changed
Expand file tree Collapse file tree 3 files changed +3
-5
lines changed Original file line number Diff line number Diff line change 1818
1919# docs
2020documents.txt
21+ credentials.json
2122
2223# virtualenv
2324.venv
Original file line number Diff line number Diff line change 11from fastapi import FastAPI
2- from .routers import graphs , healthcheck , chains
2+ from .routers import graphs , healthcheck
33
44app = FastAPI ()
55
66app .include_router (healthcheck .router )
77app .include_router (graphs .router )
8- app .include_router (chains .router )
Original file line number Diff line number Diff line change @@ -217,13 +217,11 @@ def update_state() -> None:
217217 or st .session_state .feedback_button
218218 ):
219219 try :
220- print ("I am above feeedback form" )
221220 show_feedback_form (
222221 question_dict ,
223222 st .session_state .metadata ,
224223 st .session_state .chat_history ,
225- )
226-
224+ )
227225 except Exception as e :
228226 st .error (f"Failed to load feedback form: { e } " )
229227
You can’t perform that action at this time.
0 commit comments