deven367 commited on
Commit
d602bf7
·
1 Parent(s): ec92687

update url

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -55,7 +55,9 @@ def main():
55
  st.write(data.model_dump())
56
 
57
  if st.button("Submit"):
58
- resp = requests.post("http://127.0.0.1:8000/submit_question_and_documents", json=data.model_dump())
 
 
59
  st.write(resp.status_code)
60
  st.write(resp.json())
61
 
 
55
  st.write(data.model_dump())
56
 
57
  if st.button("Submit"):
58
+ url = "https://deven-cleric-backend.onrender.com/submit_question_and_documents/"
59
+ url_local = "http://
60
+ resp = requests.post(url, json=data.model_dump())
61
  st.write(resp.status_code)
62
  st.write(resp.json())
63