Update app.py
Browse files
app.py
CHANGED
@@ -115,9 +115,6 @@ with gr.Blocks() as demo:
|
|
115 |
gr.Markdown("# Llama3.1-Instruct-O1")
|
116 |
gr.Markdown("[Powered by SambaNova Cloud, Get Your API Key Here](https://cloud.sambanova.ai/apis)")
|
117 |
|
118 |
-
with gr.Row():
|
119 |
-
api_key = gr.Textbox(label="API Key", type="password", placeholder="(Optional) Enter your API key here for more availability")
|
120 |
-
|
121 |
with gr.Row():
|
122 |
model = gr.Dropdown(choices=MODELS, label="Select Model", value=MODELS[0])
|
123 |
thinking_budget = gr.Slider(minimum=1, maximum=100, value=10, step=1, label="Thinking Budget", info="maximum times a model can think")
|
|
|
115 |
gr.Markdown("# Llama3.1-Instruct-O1")
|
116 |
gr.Markdown("[Powered by SambaNova Cloud, Get Your API Key Here](https://cloud.sambanova.ai/apis)")
|
117 |
|
|
|
|
|
|
|
118 |
with gr.Row():
|
119 |
model = gr.Dropdown(choices=MODELS, label="Select Model", value=MODELS[0])
|
120 |
thinking_budget = gr.Slider(minimum=1, maximum=100, value=10, step=1, label="Thinking Budget", info="maximum times a model can think")
|