Spaces:
Runtime error
Runtime error
Mathias Lux
commited on
Commit
·
48001f9
1
Parent(s):
27700fc
fixed some typos and switched to fast model.
Browse files
app.py
CHANGED
@@ -8,7 +8,7 @@ client = InferenceClient("meta-llama/Llama-3.2-3B-Instruct")
|
|
8 |
# client = InferenceClient("HuggingFaceH4/zephyr-7b-beta")
|
9 |
|
10 |
# Create a separate client for audio transcription
|
11 |
-
audio_client = InferenceClient("openai/whisper-large-v3")
|
12 |
|
13 |
_sys_msg = """
|
14 |
You are a reporter writing a biographical article about your interviewee and you only ask one question at a time and let the user answer. Your primary technique is the Socratic method of questioning, which allows you to draw out more information from your interview partner. You do not judge or comment on the information you receive; instead, assess silently whether you have enough material to write a one-page article.
|
@@ -75,7 +75,7 @@ def respond(
|
|
75 |
demo = gr.ChatInterface(
|
76 |
respond,
|
77 |
additional_inputs=[
|
78 |
-
gr.Audio(
|
79 |
],
|
80 |
title="AI Biographical Interview Assistant",
|
81 |
description="""
|
|
|
8 |
# client = InferenceClient("HuggingFaceH4/zephyr-7b-beta")
|
9 |
|
10 |
# Create a separate client for audio transcription
|
11 |
+
audio_client = InferenceClient("openai/whisper-large-v3-turbo")
|
12 |
|
13 |
_sys_msg = """
|
14 |
You are a reporter writing a biographical article about your interviewee and you only ask one question at a time and let the user answer. Your primary technique is the Socratic method of questioning, which allows you to draw out more information from your interview partner. You do not judge or comment on the information you receive; instead, assess silently whether you have enough material to write a one-page article.
|
|
|
75 |
demo = gr.ChatInterface(
|
76 |
respond,
|
77 |
additional_inputs=[
|
78 |
+
gr.Audio(sources="microphone", type="filepath", label="Voice Input")
|
79 |
],
|
80 |
title="AI Biographical Interview Assistant",
|
81 |
description="""
|