Skip to content

Commit 2072ab7

Browse files
committed
(chore) removed debug statements and added credentials.json to gitignore
1 parent cc4bb78 commit 2072ab7

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ venv/
1818

1919
# docs
2020
documents.txt
21+
credentials.json
2122

2223
# virtualenv
2324
.venv

backend/src/api/main.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
from fastapi import FastAPI
2-
from .routers import graphs, healthcheck,chains
2+
from .routers import graphs, healthcheck
33

44
app = FastAPI()
55

66
app.include_router(healthcheck.router)
77
app.include_router(graphs.router)
8-
app.include_router(chains.router)

frontend/streamlit_app.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)