SiddarthaRachakonda
commited on
Commit
•
f820cd2
1
Parent(s):
91d2b07
modified url
Browse files- pages/filtered_rag_page.py +1 -1
- pages/formatted_page.py +1 -1
- pages/history_page.py +1 -1
- pages/rag_page.py +1 -1
- pages/simple_page.py +1 -1
pages/filtered_rag_page.py
CHANGED
@@ -3,7 +3,7 @@ from pages.page_base import chat_interface
|
|
3 |
|
4 |
|
5 |
chat_title = "Filtered RAG Chat App"
|
6 |
-
url = "
|
7 |
page_hash = get_script_run_ctx().page_script_hash
|
8 |
|
9 |
chat_interface(chat_title, page_hash, url)
|
|
|
3 |
|
4 |
|
5 |
chat_title = "Filtered RAG Chat App"
|
6 |
+
url = "https://hugsid-backend.hf.space/filtered_rag"
|
7 |
page_hash = get_script_run_ctx().page_script_hash
|
8 |
|
9 |
chat_interface(chat_title, page_hash, url)
|
pages/formatted_page.py
CHANGED
@@ -3,7 +3,7 @@ from pages.page_base import chat_interface
|
|
3 |
|
4 |
|
5 |
chat_title = "Formatted Chat App"
|
6 |
-
url = "
|
7 |
page_hash = get_script_run_ctx().page_script_hash
|
8 |
|
9 |
chat_interface(chat_title, page_hash, url)
|
|
|
3 |
|
4 |
|
5 |
chat_title = "Formatted Chat App"
|
6 |
+
url = "https://hugsid-backend.hf.space/formatted"
|
7 |
page_hash = get_script_run_ctx().page_script_hash
|
8 |
|
9 |
chat_interface(chat_title, page_hash, url)
|
pages/history_page.py
CHANGED
@@ -3,7 +3,7 @@ from pages.page_base import chat_interface
|
|
3 |
|
4 |
|
5 |
chat_title = "History Chat App"
|
6 |
-
url = "
|
7 |
page_hash = get_script_run_ctx().page_script_hash
|
8 |
|
9 |
chat_interface(chat_title, page_hash, url)
|
|
|
3 |
|
4 |
|
5 |
chat_title = "History Chat App"
|
6 |
+
url = "https://hugsid-backend.hf.space/history"
|
7 |
page_hash = get_script_run_ctx().page_script_hash
|
8 |
|
9 |
chat_interface(chat_title, page_hash, url)
|
pages/rag_page.py
CHANGED
@@ -3,7 +3,7 @@ from pages.page_base import chat_interface
|
|
3 |
|
4 |
|
5 |
chat_title = "RAG Chat App"
|
6 |
-
url = "
|
7 |
page_hash = get_script_run_ctx().page_script_hash
|
8 |
|
9 |
chat_interface(chat_title, page_hash, url)
|
|
|
3 |
|
4 |
|
5 |
chat_title = "RAG Chat App"
|
6 |
+
url = "https://hugsid-backend.hf.space/rag"
|
7 |
page_hash = get_script_run_ctx().page_script_hash
|
8 |
|
9 |
chat_interface(chat_title, page_hash, url)
|
pages/simple_page.py
CHANGED
@@ -6,7 +6,7 @@ import streamlit as st
|
|
6 |
from pages.page_base import chat_interface
|
7 |
|
8 |
chat_title = "Simple Chat App"
|
9 |
-
url = "https://
|
10 |
page_hash = get_script_run_ctx().page_script_hash
|
11 |
|
12 |
chat_interface(chat_title, page_hash, url)
|
|
|
6 |
from pages.page_base import chat_interface
|
7 |
|
8 |
chat_title = "Simple Chat App"
|
9 |
+
url = "https://hugsid-backend.hf.space/simple"
|
10 |
page_hash = get_script_run_ctx().page_script_hash
|
11 |
|
12 |
chat_interface(chat_title, page_hash, url)
|