This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
print('hello') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import speech_recognition as sr | |
import librosa | |
import numpy as np | |
from transformers import pipeline, AutoModelForAudioClassification, AutoFeatureExtractor | |
import openai | |
import sounddevice as sd | |
import io | |
import os | |
import requests | |
from dotenv import load_dotenv |
NewerOlder