Create app.py
Browse files
app.py
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import gradio as gr
|
| 2 |
+
|
| 3 |
+
|
| 4 |
+
|
| 5 |
+
|
| 6 |
+
gr.markdown("""
|
| 7 |
+
---
|
| 8 |
+
### About
|
| 9 |
+
This application uses Microsoft's Phi-4-reasoning-plus model via OpenRouter for text-based problems
|
| 10 |
+
and Llama-Vision-Free via Together AI for image-based problems.
|
| 11 |
+
Your API keys are required but not stored permanently.
|
| 12 |
+
""")
|
| 13 |
+
|
| 14 |
+
#lunch the app
|
| 15 |
+
if __name__=="__main__":
|
| 16 |
+
demo = create_demo()
|
| 17 |
+
demo.lunch()
|