dwb2023 commited on
Commit
9378a0f
·
verified ·
1 Parent(s): 2ceb578

fix examples

Browse files
Files changed (1) hide show
  1. app.py +6 -6
app.py CHANGED
@@ -47,12 +47,12 @@ with app:
47
  model_name_input = gr.Textbox(label="Model Name", placeholder="Enter the model name to retrieve its architecture...")
48
  model_examples = gr.Examples(
49
  examples=[
50
- [allenai/Llama-3.1-Tulu-3-8B],
51
- [allenai/Llama-3.1-Tulu-3-70B],
52
- [meta-llama/Llama-3.2-1B-Instruct],
53
- [meta-llama/Llama-3.2-3B-Instruct],
54
- [nomic-ai/nomic-embed-text-v1.5],
55
- [nvidia/NV-Embed-v2]
56
  ]
57
  inputs=model_name_input
58
  )
 
47
  model_name_input = gr.Textbox(label="Model Name", placeholder="Enter the model name to retrieve its architecture...")
48
  model_examples = gr.Examples(
49
  examples=[
50
+ ["allenai/Llama-3.1-Tulu-3-8B"],
51
+ ["allenai/Llama-3.1-Tulu-3-70B"],
52
+ ["meta-llama/Llama-3.2-1B-Instruct"],
53
+ ["meta-llama/Llama-3.2-3B-Instruct"],
54
+ ["nomic-ai/nomic-embed-text-v1.5"],
55
+ ["nvidia/NV-Embed-v2"]
56
  ]
57
  inputs=model_name_input
58
  )