TulipAIs commited on
Commit
27eef7c
·
1 Parent(s): 7685564

dividing about into two columns

Browse files
Files changed (1) hide show
  1. app.py +21 -18
app.py CHANGED
@@ -1458,24 +1458,27 @@ def ui_full(launch_kwargs):
1458
  with gr.Column():
1459
  info = gr.Textbox(label="Audio Info", lines=10, interactive=False)
1460
  with gr.Tab("About"):
1461
- gen_type = gr.Text(value="music", interactive=False, visible=False)
1462
- gen_type_a = gr.Text(value="audio", interactive=False, visible=False)
1463
- gr.Markdown(
1464
- """
1465
- # Soundscapes by TulipAI
1466
- Welcome to Soundscapes - TulipAI’s flagship Audio Storytelling Toolkit. Designed with modern content creators in mind, our AI-driven platform generates audio sound effects in just minutes tailored to your unique needs.
1467
-
1468
- ## PERFECT FOR:
1469
-
1470
- - Podcasters aiming to immerse their listeners.
1471
- - Audiobooks sound engineers
1472
- - Audio engineers seeking that elusive sound.
1473
- - Producers wanting to enrich their auditory experience.
1474
- - Sound designers craving innovative tools.
1475
- - YouTubers desiring to elevate their content.
1476
- """
1477
- )
1478
- gr.Image(shape=(5,5), value = "https://tulipai.co/assets/images/image01.png")
 
 
 
1479
 
1480
  send_gen.click(info_to_params, inputs=[in_audio], outputs=[decoder, struc_prompts, global_prompt, bpm, key, scale, model, dropdown, basemodel, s, prompts[0], prompts[1], prompts[2], prompts[3], prompts[4], prompts[5], prompts[6], prompts[7], prompts[8], prompts[9], repeats[0], repeats[1], repeats[2], repeats[3], repeats[4], repeats[5], repeats[6], repeats[7], repeats[8], repeats[9], mode, duration, topk, topp, temperature, cfg_coef, seed, overlap, channel, sr_select], queue=False)
1481
  reuse_seed.click(fn=lambda x: x, inputs=[seed_used], outputs=[seed], queue=False)
 
1458
  with gr.Column():
1459
  info = gr.Textbox(label="Audio Info", lines=10, interactive=False)
1460
  with gr.Tab("About"):
1461
+ with gr.Row():
1462
+ with gr.Column():
1463
+ gen_type = gr.Text(value="music", interactive=False, visible=False)
1464
+ gen_type_a = gr.Text(value="audio", interactive=False, visible=False)
1465
+ gr.Markdown(
1466
+ """
1467
+ # Soundscapes by TulipAI
1468
+ Welcome to Soundscapes - TulipAI’s flagship Audio Storytelling Toolkit. Designed with modern content creators in mind, our AI-driven platform generates audio sound effects in just minutes tailored to your unique needs.
1469
+
1470
+ ## PERFECT FOR:
1471
+
1472
+ - Podcasters aiming to immerse their listeners.
1473
+ - Audiobooks sound engineers
1474
+ - Audio engineers seeking that elusive sound.
1475
+ - Producers wanting to enrich their auditory experience.
1476
+ - Sound designers craving innovative tools.
1477
+ - YouTubers desiring to elevate their content.
1478
+ """
1479
+ )
1480
+ with gr.Column():
1481
+ gr.Image(shape=(5,5), value = "https://tulipai.co/assets/images/image01.png")
1482
 
1483
  send_gen.click(info_to_params, inputs=[in_audio], outputs=[decoder, struc_prompts, global_prompt, bpm, key, scale, model, dropdown, basemodel, s, prompts[0], prompts[1], prompts[2], prompts[3], prompts[4], prompts[5], prompts[6], prompts[7], prompts[8], prompts[9], repeats[0], repeats[1], repeats[2], repeats[3], repeats[4], repeats[5], repeats[6], repeats[7], repeats[8], repeats[9], mode, duration, topk, topp, temperature, cfg_coef, seed, overlap, channel, sr_select], queue=False)
1484
  reuse_seed.click(fn=lambda x: x, inputs=[seed_used], outputs=[seed], queue=False)