Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -1,7 +1,9 @@
|
|
1 |
-
# app.py
|
2 |
-
|
3 |
-
from
|
4 |
-
import
|
|
|
|
|
5 |
|
6 |
# 啟動 MCP server 子程序 (stdin/stdout)
|
7 |
def start_mcp():
|
|
|
1 |
+
# app.py — minimal for LLM + RAG (no MCP)
|
2 |
+
import os, json, random
|
3 |
+
from datetime import datetime
|
4 |
+
import streamlit as st
|
5 |
+
|
6 |
+
import rag_utils # 你已經有的:提供 search_tarot / search_numerology / ensure_indexes
|
7 |
|
8 |
# 啟動 MCP server 子程序 (stdin/stdout)
|
9 |
def start_mcp():
|