Spaces:
Running
on
Zero
Running
on
Zero
gokaygokay
commited on
Update ui_components.py
Browse files- ui_components.py +2 -2
ui_components.py
CHANGED
@@ -133,10 +133,10 @@ def create_interface():
|
|
133 |
llm_provider = gr.Dropdown(
|
134 |
choices=["Hugging Face", "SambaNova", "OpenAI", "Anthropic"],
|
135 |
label="LLM Provider",
|
136 |
-
value="
|
137 |
)
|
138 |
api_key = gr.Textbox(label="API Key", type="password", visible=False)
|
139 |
-
model = gr.Dropdown(label="Model", choices=["
|
140 |
|
141 |
generate_text_button = gr.Button("Generate Prompt with LLM")
|
142 |
text_output = gr.Textbox(label="Generated Text", lines=10, show_copy_button=True)
|
|
|
133 |
llm_provider = gr.Dropdown(
|
134 |
choices=["Hugging Face", "SambaNova", "OpenAI", "Anthropic"],
|
135 |
label="LLM Provider",
|
136 |
+
value="SambaNova"
|
137 |
)
|
138 |
api_key = gr.Textbox(label="API Key", type="password", visible=False)
|
139 |
+
model = gr.Dropdown(label="Model", choices=["Meta-Llama-3.1-70B-Instruct", "Meta-Llama-3.1-405B-Instruct", "Meta-Llama-3.1-8B-Instruct"], value="Meta-Llama-3.1-70B-Instruct")
|
140 |
|
141 |
generate_text_button = gr.Button("Generate Prompt with LLM")
|
142 |
text_output = gr.Textbox(label="Generated Text", lines=10, show_copy_button=True)
|