kz919 commited on
Commit
3b2ff04
1 Parent(s): 7d01662

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -65,9 +65,9 @@ def sketch_to_text(image, api_key):
65
  with gr.Blocks() as iface:
66
  gr.Markdown("# Pictionary with Llama3.2 Instruct")
67
  gr.Markdown("Draw something and let Llama3.2 guess it! [Powered by SambaNova Cloud, Get Your API Key Here](https://cloud.sambanova.ai/apis)")
68
- with gr.Row(scale=1):
69
  api_key = gr.Textbox(label="API Key", type="password", placeholder="(Optional) Enter your API key here for more availability")
70
- with gr.Row(scale=1):
71
  with gr.Column(scale=1):
72
  output = gr.Textbox(label="Description", lines=5)
73
 
 
65
  with gr.Blocks() as iface:
66
  gr.Markdown("# Pictionary with Llama3.2 Instruct")
67
  gr.Markdown("Draw something and let Llama3.2 guess it! [Powered by SambaNova Cloud, Get Your API Key Here](https://cloud.sambanova.ai/apis)")
68
+ with gr.Row():
69
  api_key = gr.Textbox(label="API Key", type="password", placeholder="(Optional) Enter your API key here for more availability")
70
+ with gr.Row():
71
  with gr.Column(scale=1):
72
  output = gr.Textbox(label="Description", lines=5)
73