Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
@@ -632,7 +632,7 @@ def fetch_local_events():
|
|
632 |
api_key = os.environ['SERP_API']
|
633 |
url = f'https://serpapi.com/search.json?engine=google_events&q=Events+in+Birmingham&hl=en&gl=us&api_key={api_key}'
|
634 |
response = requests.get(url)
|
635 |
-
if response.status_code == 200
|
636 |
events_results = response.json().get("events_results", [])
|
637 |
events_html = """
|
638 |
<h2 style="font-family: 'Georgia', serif; color: #ff0000; background-color: #f8f8f8; padding: 10px; border-radius: 10px;">Local Events</h2>
|
@@ -826,10 +826,10 @@ with gr.Blocks(theme='Pijush2023/scikit-learn-pijush') as demo:
|
|
826 |
audio_input = gr.Audio(sources=["microphone"], streaming=True, type='numpy', every=0.1)
|
827 |
audio_input.stream(transcribe_function, inputs=[state, audio_input], outputs=[state, chat_input], api_name="voice_query_to_text")
|
828 |
|
829 |
-
with gr.Column():
|
830 |
-
|
831 |
-
|
832 |
-
|
833 |
|
834 |
with gr.Column():
|
835 |
image_output_1 = gr.Image(value=generate_image(hardcoded_prompt_1), width=400, height=400)
|
|
|
632 |
api_key = os.environ['SERP_API']
|
633 |
url = f'https://serpapi.com/search.json?engine=google_events&q=Events+in+Birmingham&hl=en&gl=us&api_key={api_key}'
|
634 |
response = requests.get(url)
|
635 |
+
if response.status_code == 200:
|
636 |
events_results = response.json().get("events_results", [])
|
637 |
events_html = """
|
638 |
<h2 style="font-family: 'Georgia', serif; color: #ff0000; background-color: #f8f8f8; padding: 10px; border-radius: 10px;">Local Events</h2>
|
|
|
826 |
audio_input = gr.Audio(sources=["microphone"], streaming=True, type='numpy', every=0.1)
|
827 |
audio_input.stream(transcribe_function, inputs=[state, audio_input], outputs=[state, chat_input], api_name="voice_query_to_text")
|
828 |
|
829 |
+
# with gr.Column():
|
830 |
+
# weather_output = gr.HTML(value=fetch_local_weather())
|
831 |
+
# news_output = gr.HTML(value=fetch_local_news())
|
832 |
+
# events_output = gr.HTML(value=fetch_local_events())
|
833 |
|
834 |
with gr.Column():
|
835 |
image_output_1 = gr.Image(value=generate_image(hardcoded_prompt_1), width=400, height=400)
|