Spaces:
Running
Running
Commit
·
e90e1ca
1
Parent(s):
b5282e0
Initial
Browse files
app.py
CHANGED
@@ -247,7 +247,22 @@ def transform_output_to_tables(final_output: dict):
|
|
247 |
|
248 |
|
249 |
with gr.Blocks() as demo:
|
250 |
-
gr.Markdown(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
251 |
|
252 |
with gr.Row():
|
253 |
audio_input = gr.Audio(type="filepath", label="Upload your audio")
|
|
|
247 |
|
248 |
|
249 |
with gr.Blocks() as demo:
|
250 |
+
gr.Markdown(
|
251 |
+
"""
|
252 |
+
<div align=\"center\">
|
253 |
+
|
254 |
+
# <span style=\"font-size:48px;\">Callytics</span>
|
255 |
+
|
256 |
+
<span style=\"font-size:20px;\">__`Callytics` is an advanced call analytics solution leveraging speech recognition and large language model (LLM) technologies to analyze customer service and call center conversations. By simultaneously processing audio and text from each call, Callytics provides valuable insights, including sentiment analysis, topic identification, conflict detection, profanity detection, and conversation summaries. These cutting-edge capabilities enable businesses to optimize customer interactions, identify improvement opportunities, and enhance overall service quality.__</span>
|
257 |
+
|
258 |
+
<span style=\"font-size:18px;\">**Note:** This demo uses HuggingFace's free CPU tier, which results in significantly longer processing times. For example, analyzing a 1-minute call may take approximately 7 minutes.</span>
|
259 |
+
|
260 |
+
<span style=\"font-size:18px;\">- You can explore the [GitHub repository](https://github.com/bunyaminergen/Callytics) for more details.</span>
|
261 |
+
<span style=\"font-size:18px;\">- If you don't have your own call center recordings, feel free to test the application using provided sample audio files.</span>
|
262 |
+
|
263 |
+
</div>
|
264 |
+
"""
|
265 |
+
)
|
266 |
|
267 |
with gr.Row():
|
268 |
audio_input = gr.Audio(type="filepath", label="Upload your audio")
|