Skip to content

GospelNoteAI API allows users to record sermons, transcribe them using AI, summarize key points, extract Bible references, and save the results locally and on the backend server. The API also manages user authentication, sermon retrieval, and synchronization between the mobile app and the server.

Notifications You must be signed in to change notification settings

greatdaveo/GospelNoteAI

Repository files navigation

Gospel Note AI API

This is the API for the Gospel Note AI mobile application. It is built with FastAPI and provides functionality for sermon transcription, summarization, Bible reference extraction, and storage. The API also manages user authentication, sermon retrieval, and synchronization between the mobile app and the server.

Features

  • User registration and authentication with JWT tokens
  • Audio file upload and transcription
  • Sermon summarization and automatic Bible reference extraction
  • Save, update, and delete sermons in the database
  • Retrieve sermons for the authenticated user
  • Secure routes using token-based authentication
  • PostgreSQL database with SQLAlchemy ORM

Tech Stack

  • Backend Framework: FastAPI
  • Database: PostgreSQL
  • ORM: SQLAlchemy
  • Authentication: JWT
  • Audio Transcription: OpenAI Whisper
  • Summarization & Reference Extraction: OpenAI GPT model
  • Storage: PostgreSQL Database & Local storage
  • Environment Management: Python-dotenv

Setup and Installation

  1. Clone the repository
git clone https://github.com/greatdaveo/SermonNote.git
cd server
  1. Create and activate virtual environment
python -m venv venv
source venv/bin/activate   # macOS/Linux
venv\Scripts\activate      # Windows
  1. Install dependencies
pip install -r requirements.txt
  1. Set up environment variables
Create a .env file in your directory with:
DATABASE_URL=database_url
JWT_SECRET_KEY=your_secret_key
JWT_ALGORITHM=HS256
OPENAI_API_KEY=your_openai_key
  1. Run the server
uvicorn main:app --reload
  1. API Documentation Once running, access:

👨‍💻 Developed By

Olowomeye David GitHub LinkedIn


About

GospelNoteAI API allows users to record sermons, transcribe them using AI, summarize key points, extract Bible references, and save the results locally and on the backend server. The API also manages user authentication, sermon retrieval, and synchronization between the mobile app and the server.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages