heffnt commited on
Commit
109a454
·
1 Parent(s): e579805

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
Files changed (1) hide show
  1. app.py +2 -2
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 = "jakeboggs/MTG-Llama" # "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
 
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