Bils commited on
Commit
1d543ba
·
verified ·
1 Parent(s): ede9fc5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -3
app.py CHANGED
@@ -122,7 +122,6 @@ def blend_audio(voice_path: str, music_path: str, ducking: bool):
122
  with gr.Blocks() as demo:
123
  gr.Markdown("""
124
  # 🎧 AI Promo Studio 🚀
125
-
126
  Welcome to **AI Promo Studio**, your one-stop solution for creating stunning and professional radio promos with ease!
127
  Whether you're a sound designer, radio producer, or content creator, our AI-driven tools, powered by advanced LLM Llama models, empower you to bring your vision to life in just a few steps.
128
  """)
@@ -202,8 +201,13 @@ with gr.Blocks() as demo:
202
  Created with ❤️ by <a href="https://bilsimaging.com" target="_blank">bilsimaging.com</a>
203
  </p>
204
  """)
205
- gr.HTML('<a href="https://visitorbadge.io/status?path=https%3A%2F%2Fhuggingface.co%2Fspaces%2FBils%2Fradiogold"><img src="https://api.visitorbadge.io/api/visitors?path=https%3A%2F%2Fhuggingface.co%2Fspaces%2FBils%2Fradiogold&countColor=%23263759" /></a>')
206
- html = gr.HTML()
 
 
 
 
 
207
 
208
  demo.launch(debug=True)
209
 
 
122
  with gr.Blocks() as demo:
123
  gr.Markdown("""
124
  # 🎧 AI Promo Studio 🚀
 
125
  Welcome to **AI Promo Studio**, your one-stop solution for creating stunning and professional radio promos with ease!
126
  Whether you're a sound designer, radio producer, or content creator, our AI-driven tools, powered by advanced LLM Llama models, empower you to bring your vision to life in just a few steps.
127
  """)
 
201
  Created with ❤️ by <a href="https://bilsimaging.com" target="_blank">bilsimaging.com</a>
202
  </p>
203
  """)
204
+
205
+ # Add visitor badge HTML
206
+ gr.HTML("""
207
+ <a href="https://visitorbadge.io/status?path=https%3A%2F%2Fhuggingface.co%2Fspaces%2FBils%2Fradiogold">
208
+ <img src="https://api.visitorbadge.io/api/visitors?path=https%3A%2F%2Fhuggingface.co%2Fspaces%2FBils%2Fradiogold&countColor=%23263759" />
209
+ </a>
210
+ """)
211
 
212
  demo.launch(debug=True)
213