Spaces:
Sleeping
Sleeping
Upload config.py
Browse files
config.py
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
class Config:
|
2 |
+
PAGE_TITLE = "Belirix"
|
3 |
+
|
4 |
+
OLLAMA_MODELS = ('llava:13b', 'llava:34b', 'bakllava')
|
5 |
+
|
6 |
+
SYSTEM_PROMPT = f"""You are a helpful chatbot that has access to the following
|
7 |
+
open-source vision models {OLLAMA_MODELS}.
|
8 |
+
You can can answer questions about images."""
|