TulipAIs commited on
Commit
e448828
1 Parent(s): 61b8187

fix indentation error where the audio, customization, and setting tabs are commented out

Browse files
Files changed (1) hide show
  1. app.py +5 -6
app.py CHANGED
@@ -954,9 +954,9 @@ def ui_full(launch_kwargs):
954
  """
955
  # TulipAI CulturaFX
956
 
957
- ### TulipAI's Audio Storytelling Toolkit
958
 
959
- TulipAI's CulturaFX Description: An AI audio platform, that transforms user prompts into dynamic, cultural soundscapes and narratives. Designed for Gen Z content creators, gamers, sound designers, and podcast producers, our platform offers personalized, ethically sourced audio experiences.
960
  """
961
  )
962
  with gr.Tab("Generate"):
@@ -1009,8 +1009,8 @@ def ui_full(launch_kwargs):
1009
  seed_a = gr.Number(label="Seed", value=-1, scale=4, precision=0, interactive=True)
1010
  gr.Button('\U0001f3b2\ufe0f', scale=1).click(fn=lambda: -1, outputs=[seed_a], queue=False)
1011
  reuse_seed_a = gr.Button('\u267b\ufe0f', scale=1)
1012
- '''
1013
- with gr.Tab("Audio"):
1014
  with gr.Row():
1015
  with gr.Column():
1016
  input_type_a = gr.Radio(["file", "mic"], value="file", label="Input Type (optional)", interactive=True)
@@ -1052,8 +1052,7 @@ def ui_full(launch_kwargs):
1052
  topk_a = gr.Number(label="Top-k", value=250, interactive=True)
1053
  topp_a = gr.Number(label="Top-p", value=0, interactive=True)
1054
  temperature_a = gr.Number(label="Temperature", value=1.0, interactive=True)
1055
- cfg_coef_a = gr.Number(label="Classifier Free Guidance", value=3.0, interactive=True)
1056
- '''
1057
  with gr.Row():
1058
  submit_a = gr.Button("Generate", variant="primary")
1059
  _ = gr.Button("Interrupt").click(fn=interrupt, queue=False)
 
954
  """
955
  # TulipAI CulturaFX
956
 
957
+ ###
958
 
959
+ An AI audio platform, that transforms user prompts into dynamic, cultural soundscapes and narratives. Designed for Gen Z content creators, gamers, sound designers, and podcast producers, our platform offers personalized, ethically sourced audio experiences.
960
  """
961
  )
962
  with gr.Tab("Generate"):
 
1009
  seed_a = gr.Number(label="Seed", value=-1, scale=4, precision=0, interactive=True)
1010
  gr.Button('\U0001f3b2\ufe0f', scale=1).click(fn=lambda: -1, outputs=[seed_a], queue=False)
1011
  reuse_seed_a = gr.Button('\u267b\ufe0f', scale=1)
1012
+
1013
+ '''with gr.Tab("Audio"):
1014
  with gr.Row():
1015
  with gr.Column():
1016
  input_type_a = gr.Radio(["file", "mic"], value="file", label="Input Type (optional)", interactive=True)
 
1052
  topk_a = gr.Number(label="Top-k", value=250, interactive=True)
1053
  topp_a = gr.Number(label="Top-p", value=0, interactive=True)
1054
  temperature_a = gr.Number(label="Temperature", value=1.0, interactive=True)
1055
+ cfg_coef_a = gr.Number(label="Classifier Free Guidance", value=3.0, interactive=True)'''
 
1056
  with gr.Row():
1057
  submit_a = gr.Button("Generate", variant="primary")
1058
  _ = gr.Button("Interrupt").click(fn=interrupt, queue=False)