eikarna commited on
Commit ·
f030151
1
Parent(s): 33009e3
Revert to non-RAG
Browse files
app.py
CHANGED
|
@@ -11,12 +11,16 @@ logger = logging.getLogger(__name__)
|
|
| 11 |
DEFAULT_SYSTEM_PROMPT = """You are a friendly Assistant. Provide clear, accurate, and brief answers.
|
| 12 |
Keep responses polite, engaging, and to the point. If unsure, politely suggest alternatives."""
|
| 13 |
|
| 14 |
-
MODEL_OPTIONS = [
|
|
|
|
|
|
|
|
|
|
|
|
|
| 15 |
API_BASE_URL = "https://api-inference.huggingface.co/models/"
|
| 16 |
|
| 17 |
# Page configuration
|
| 18 |
st.set_page_config(
|
| 19 |
-
page_title="DeepSeek-AI R1
|
| 20 |
page_icon="🤖",
|
| 21 |
layout="centered"
|
| 22 |
)
|
|
|
|
| 11 |
DEFAULT_SYSTEM_PROMPT = """You are a friendly Assistant. Provide clear, accurate, and brief answers.
|
| 12 |
Keep responses polite, engaging, and to the point. If unsure, politely suggest alternatives."""
|
| 13 |
|
| 14 |
+
MODEL_OPTIONS = [
|
| 15 |
+
"deepseek-ai/DeepSeek-R1-Distill-Qwen-32B",
|
| 16 |
+
"deepseek-ai/DeepSeek-R1-Distill-Qwen-1.5B",
|
| 17 |
+
"deepseek-ai/DeepSeek-R1"
|
| 18 |
+
]
|
| 19 |
API_BASE_URL = "https://api-inference.huggingface.co/models/"
|
| 20 |
|
| 21 |
# Page configuration
|
| 22 |
st.set_page_config(
|
| 23 |
+
page_title="DeepSeek-AI R1",
|
| 24 |
page_icon="🤖",
|
| 25 |
layout="centered"
|
| 26 |
)
|