Skip to content

Commit

Permalink
(chore) removed debug statements and added credentials.json to gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
Kannav02 committed Nov 19, 2024
1 parent dd1ca19 commit efaf8a5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ venv/

# docs
documents.txt
credentials.json

# virtualenv
.venv
Expand Down
3 changes: 1 addition & 2 deletions backend/src/api/main.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
from fastapi import FastAPI
from .routers import graphs, healthcheck,chains
from .routers import graphs, healthcheck

app = FastAPI()

app.include_router(healthcheck.router)
app.include_router(graphs.router)
app.include_router(chains.router)
4 changes: 1 addition & 3 deletions frontend/streamlit_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -217,13 +217,11 @@ def update_state() -> None:
or st.session_state.feedback_button
):
try:
print("I am above feeedback form")
show_feedback_form(
question_dict,
st.session_state.metadata,
st.session_state.chat_history,
)

)
except Exception as e:
st.error(f"Failed to load feedback form: {e}")

Expand Down

0 comments on commit efaf8a5

Please sign in to comment.