Skip to content

mlrun/demo-call-center

Repository files navigation

Call center demo

This demo showcases how to use LLMs to turn audio files from call center conversations between customers and agents into valuable data, all in a single workflow orchestrated by MLRun. It illustrates the potential power of LLMs for feature extraction, and the simplicity of working with MLRun.

Overview

MLRun automates the entire workflow, auto-scales resources as needed, and automatically logs and parses values between the different workflow steps.

The demo demonstrates two usages of GenAI:

  • Unstructured data generation: Generating audio data with ground truth metadata to evaluate the analysis.
  • Unstructured data analysis: Turning audio calls into text and tabular features.

The demo contains two notebooks notebook 1 and notebook 2.

Most of the functions are imported from MLRun's hub, which contains a wide range of functions and modules that can be used for a variety of use cases. See also the MLRun hub documentation. All functions used in the demo include links to their source in the hub. All of the python source code is under /src.

⚠️ Important This demo can take up to couple of hours to complete when running without GPUs.

Prerequisites

This demo uses:

  • OpenAI's Whisper — To transcribe the audio calls into text.
  • Flair and Microsoft's Presidio — To recognize PII so it can be filtered out.
  • HuggingFace — The main machine-learning framework to get the model and tokenizer for the features extraction.
  • Vizro — To view the call center DB and transcriptions, and to play the generated conversations.
  • MLRun — the orchestrator to operationalize the workflow. MLRun 1.9 and higher, Python 3.11, with CPU or GPU.
  • SQLAlchemy — Manage the MySQL DB of calls, clients and agents. Installed together with MLRun.
  • SQLite

Installation

This project can run in different development environments:

  • Local computer (using PyCharm, VSCode, Jupyter, etc.)
  • Inside GitHub Codespaces
  • Other managed Jupyter environments

Install the code and the MLRun client

To get started, fork this repo into your GitHub account and clone it into your development environment.

To install the package dependencies (not required in GitHub codespaces) use:

make install-requirements

If you prefer to use Conda, use this instead (to create and configure a conda env):

make conda-env

Make sure you open the notebooks and select the mlrun conda environment

Install or connect to the MLRun service/cluster

The MLRun service and computation can run locally (minimal setup) or over a remote Kubernetes environment.

If your development environment supports Docker and there are sufficient CPU resources (support for Docker setup will be deprecated), run:

make mlrun-docker

The MLRun UI can be viewed in: http://localhost:8060

If your environment is minimal, run mlrun as a process (no UI):

[conda activate mlrun &&] make mlrun-api

For MLRun to run properly, set up your client environment. This is not required when using codespaces, the mlrun conda environment, or iguazio managed notebooks.

Your environment should include MLRUN_ENV_FILE=<absolute path to the ./mlrun.env file> (point to the mlrun .env file in this repo); see mlrun client setup instructions for details.

Note: You can also use a remote MLRun service (over Kubernetes): instead of starting a local mlrun: edit the mlrun.env and specify its address and credentials.

Setup

  • Set run_with_gpu = False, use_sqlite = True, engine = "remote".
  • .env must include OPENAI_API_KEY, OPENAI_API_BASE

Configure the tokens and URL

⚠️ Important Fill in the following variables in your .env file.

Note: The requirement for the OpenAI token will be removed soon in favor of an open-source LLM.

Tokens are required to run the demo end-to-end:

  • OpenAI ChatGPT — To generate conversations, two tokens are required:
    • OPENAI_API_KEY
    • OPENAI_API_BASE

Demo flow

  1. Create the project
  1. Generate the call data
  1. Calls analysis
  1. View the data
  • Notebook: notebook_2_analysis.ipynb
  • Description: View the data and features, as they are collected, in the MLRun UI. Deploy Vizro to visualize the data in the DB.

About

Demo the use of GenAI to transcribe and analyze audio calls

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 10