Spaces:
Paused
Paused
ai: Use Q8_K_XL as the default model precision.
Browse filesIt offers faster performance and reasonably accurate responses.
- src/ui/interface.py +1 -1
src/ui/interface.py
CHANGED
|
@@ -29,7 +29,7 @@ def ui():
|
|
| 29 |
"The smaller the value, the faster the response but less accurate. "
|
| 30 |
"Conversely, the larger the value, the response is slower but more accurate."
|
| 31 |
),
|
| 32 |
-
value="
|
| 33 |
)
|
| 34 |
|
| 35 |
# Checkbox to enable or disable reasoning mode, which toggles the AI's "thinking" capability
|
|
|
|
| 29 |
"The smaller the value, the faster the response but less accurate. "
|
| 30 |
"Conversely, the larger the value, the response is slower but more accurate."
|
| 31 |
),
|
| 32 |
+
value="Q8_K_XL" # Default selected precision value
|
| 33 |
)
|
| 34 |
|
| 35 |
# Checkbox to enable or disable reasoning mode, which toggles the AI's "thinking" capability
|