Update BrainBot.py
Browse files- BrainBot.py +2 -1
BrainBot.py
CHANGED
@@ -131,7 +131,8 @@ if uploaded_file is not None:
|
|
131 |
try:
|
132 |
# Send POST request to a FastAPI endpoint to load the file into a vectorstore
|
133 |
data = {"file_path": temp_file_path, "file_type": uploaded_file.type}
|
134 |
-
FASTAPI_URL = f"http://localhost:8000/load_file/{llm}"
|
|
|
135 |
response = requests.post(FASTAPI_URL, json=data)
|
136 |
st.success(response.text)
|
137 |
st.session_state['current_file'] = uploaded_file.name
|
|
|
131 |
try:
|
132 |
# Send POST request to a FastAPI endpoint to load the file into a vectorstore
|
133 |
data = {"file_path": temp_file_path, "file_type": uploaded_file.type}
|
134 |
+
# FASTAPI_URL = f"http://localhost:8000/load_file/{llm}"
|
135 |
+
FASTAPI_URL = f"https://huggingface.co/spaces/aminaj/BrainBot/load_file/{llm}"
|
136 |
response = requests.post(FASTAPI_URL, json=data)
|
137 |
st.success(response.text)
|
138 |
st.session_state['current_file'] = uploaded_file.name
|