Spaces:
Configuration error
Configuration error
Swap local and API models in app.py; set LOCAL_MODEL to 'jakeboggs/MTG-Llama' and API_MODEL to 'openai/gpt-oss-20b'.
Browse files
app.py
CHANGED
|
@@ -3,8 +3,8 @@ from huggingface_hub import InferenceClient
|
|
| 3 |
import os
|
| 4 |
|
| 5 |
# Configuration
|
| 6 |
-
LOCAL_MODEL = "microsoft/Phi-3-mini-4k-instruct"
|
| 7 |
-
API_MODEL = "
|
| 8 |
DEFAULT_SYSTEM_MESSAGE = "You are an expert assistant for Magic: The Gathering. You're name is Smart Confidant but people tend to call you Bob."
|
| 9 |
|
| 10 |
pipe = None
|
|
|
|
| 3 |
import os
|
| 4 |
|
| 5 |
# Configuration
|
| 6 |
+
LOCAL_MODEL = "jakeboggs/MTG-Llama" # "microsoft/Phi-3-mini-4k-instruct"
|
| 7 |
+
API_MODEL = "openai/gpt-oss-20b"
|
| 8 |
DEFAULT_SYSTEM_MESSAGE = "You are an expert assistant for Magic: The Gathering. You're name is Smart Confidant but people tend to call you Bob."
|
| 9 |
|
| 10 |
pipe = None
|