diff --git a/README.md b/README.md index ba5a056..dca2133 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # TrintAI -## **Get meaningful insights from audio files in minutes** +## **Gain insights from audio files in minutes** TrintAI is a powerful open source tool for converting speech into text. In addition to its transcription capabilities, it can generate summaries of the audio and detect sentiments and emotions. Using TrintAI you can power your apps with cutting-edge speech recognition. diff --git a/backend/Dockerfile b/backend/Dockerfile deleted file mode 100644 index 8601de0..0000000 --- a/backend/Dockerfile +++ /dev/null @@ -1,22 +0,0 @@ -FROM python:3.11.5 - -RUN apt-get -y update -RUN apt-get install -y ffmpeg - -RUN mkdir /app -RUN chmod +rx /app - -COPY requirements.txt /app/requirements.txt -RUN pip install -r requirements.txt - -COPY * app/ -WORKDIR /app/ - -ENV PYTHONPATH=/app - - -ARG OPENAI_API_KEY - -ENV OPENAI_API_KEY=${OPENAI_API_KEY} - -CMD ["python","-u","main.py"]