Update app.py
Browse files
app.py
CHANGED
@@ -184,7 +184,7 @@ def main():
|
|
184 |
with gr.Blocks() as demo:
|
185 |
gr.Markdown("## CrewAI Research Tool")
|
186 |
topic_input = gr.Textbox(label="Enter Topic", placeholder="Type here...")
|
187 |
-
model_choice = gr.Radio(choices=["
|
188 |
submit_button = gr.Button("Start Research")
|
189 |
output = gr.Markdown(label="Result")
|
190 |
|
|
|
184 |
with gr.Blocks() as demo:
|
185 |
gr.Markdown("## CrewAI Research Tool")
|
186 |
topic_input = gr.Textbox(label="Enter Topic", placeholder="Type here...")
|
187 |
+
model_choice = gr.Radio(choices=["mixtral-8x7b-32768", "llama-3.2-1b-preview", 'llama-3.2-3b-preview', 'llama-3.3-70b-versatile'], label="Choose Model")
|
188 |
submit_button = gr.Button("Start Research")
|
189 |
output = gr.Markdown(label="Result")
|
190 |
|