A Python Cloud Function for summarizing audio number using Deepgram API.
Example input:
{
"fileUrl": "https://static.deepgram.com/examples/interview_speech-analytics.wav"
}
Example output:
{
"success": true,
"deepgramData": [
{
"summary": "another big problem in the speech analytics space. When customers first bring the software on is that they they are blown away by the fact that an engine can monitor hundreds of Kpis.",
"start_word": 0,
"end_word": 228
}
]
}
List of environment variables used by this cloud function:
- DEEPGRAM_API_KEY - Deepgram API Key
ℹ️ Create your Deepgram API key at console.deepgram.com
- Clone this repository, and enter this function folder:
git clone https://github.com/open-runtimes/examples.git && cd examples
cd python/deepgram-audio-summary
- Enter this function folder and build the code:
docker run --rm --interactive --tty --volume $PWD:/usr/code openruntimes/python:v2-3.10 sh /usr/local/src/build.sh
As a result, a code.tar.gz
file will be generated.
- Start the Open Runtime:
docker run -p 3000:3000 -e INTERNAL_RUNTIME_KEY=secret-key -e INTERNAL_RUNTIME_ENTRYPOINT=main.py --rm --interactive --tty --volume $PWD/code.tar.gz:/tmp/code.tar.gz:ro openruntimes/python:v2-3.10 sh /usr/local/src/start.sh
Make sure to replace
YOUR_API_KEY
without your key. Your function is now listening on port3000
, and you can execute it by sendingPOST
request with appropriate authorization headers. To learn more about runtime, you can visit Python runtime README.
- Run the cURL function to send request.
curl http://localhost:3000/ -H "X-Internal-Challenge: secret-key" -H "Content-Type: application/json" -d '{"payload": {"fileUrl": "https://static.deepgram.com/examples/interview_speech-analytics.wav"}, "variables": {"DEEPGRAM_API_KEY": "<YOUR_API_KEY>"}}'
- This function is designed for use with Appwrite Cloud Functions. You can learn more about it in Appwrite docs.
- This example is compatible with Python 3.10. Other versions may work but are not guaranteed to work as they haven't been tested.