Update app.py
Browse files
app.py
CHANGED
|
@@ -60,7 +60,7 @@ def normalize_selection(value, mapping, fallback):
|
|
| 60 |
def clamp(value, min_value=0.52, max_value=0.96):
|
| 61 |
return max(min_value, min(max_value, value))
|
| 62 |
|
| 63 |
-
|
| 64 |
|
| 65 |
if not INFERENCE_URL:
|
| 66 |
return {
|
|
|
|
| 60 |
def clamp(value, min_value=0.52, max_value=0.96):
|
| 61 |
return max(min_value, min(max_value, value))
|
| 62 |
|
| 63 |
+
def call_real_inference(prompt):
|
| 64 |
|
| 65 |
if not INFERENCE_URL:
|
| 66 |
return {
|