Spaces:
Runtime error
Runtime error
Create example.py
Browse files- pages/example.py +7 -0
pages/example.py
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import streamlit as st
|
| 2 |
+
import sys, os
|
| 3 |
+
|
| 4 |
+
# ─── Ensure utils/ is importable ──────────────────────────────
|
| 5 |
+
sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), "..")))
|
| 6 |
+
|
| 7 |
+
from utils.backend import run_llm
|