Spaces:
Sleeping
Sleeping
Create runtime.py
Browse files- runtime.py +18 -0
runtime.py
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import gradio as gr
|
| 2 |
+
|
| 3 |
+
def runtime_ui():
|
| 4 |
+
|
| 5 |
+
gr.Markdown("## DFQS Runtime Interfaces")
|
| 6 |
+
|
| 7 |
+
gr.Markdown("""
|
| 8 |
+
Supported runtimes:
|
| 9 |
+
|
| 10 |
+
- llama.cpp (primary)
|
| 11 |
+
- Ollama
|
| 12 |
+
- Docker inference containers
|
| 13 |
+
- Python bindings
|
| 14 |
+
""")
|
| 15 |
+
|
| 16 |
+
gr.Code("""
|
| 17 |
+
llama-server -hf persadian/DeepSeek-V4-Flash-IQ1_S-XL
|
| 18 |
+
""")
|