Spaces:
Running
Running
Deepak Yadav
commited on
Commit
·
1866d71
1
Parent(s):
48c7382
updated new version deepseek-r1
Browse files
app.py
CHANGED
@@ -5,9 +5,9 @@ from components.chat_ui import display_chat
|
|
5 |
from services.llm import initialize_qa_chain, initialize_chain
|
6 |
from utils.helpers import get_file_size
|
7 |
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
|
12 |
# App Title
|
13 |
st.title("DocChatAI | Chat Using Documents")
|
|
|
5 |
from services.llm import initialize_qa_chain, initialize_chain
|
6 |
from utils.helpers import get_file_size
|
7 |
|
8 |
+
import subprocess
|
9 |
+
process = subprocess.Popen("ollama serve", shell=True)
|
10 |
+
print(process)
|
11 |
|
12 |
# App Title
|
13 |
st.title("DocChatAI | Chat Using Documents")
|