Bils commited on
Commit
3b391a1
·
verified ·
1 Parent(s): a15d204

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -196,7 +196,7 @@ with col1:
196
  """
197
  Create **radio imaging promos** and **jingles** with Llama 3 + MusicGen.
198
  **Note**:
199
- - You must have access to `"meta-llama/Llama-3-70B-Instruct"` on Hugging Face.
200
  - You must provide your HF token in the environment (e.g., HF_TOKEN).
201
  """
202
  )
@@ -223,7 +223,7 @@ col_model, col_device = st.columns(2)
223
  with col_model:
224
  llama_model_id = st.text_input(
225
  "Llama 3 Model ID",
226
- value="meta-llama/Llama-3-70B-Instruct", # Official ID if you have it
227
  help="Use the exact name you see on the Hugging Face model page."
228
  )
229
  with col_device:
 
196
  """
197
  Create **radio imaging promos** and **jingles** with Llama 3 + MusicGen.
198
  **Note**:
199
+ - You must have access to `"meta-llama/Meta-Llama-3-70B"` on Hugging Face.
200
  - You must provide your HF token in the environment (e.g., HF_TOKEN).
201
  """
202
  )
 
223
  with col_model:
224
  llama_model_id = st.text_input(
225
  "Llama 3 Model ID",
226
+ value="meta-llama/Meta-Llama-3-70B",
227
  help="Use the exact name you see on the Hugging Face model page."
228
  )
229
  with col_device: