Logo Lanfrica

OmarTarekFahmy/REDacted

Domaine:

natural language processing

Type de record:

software
Créateur:
Oma
Hôte:
A simple python-based backend used for text sanitization, translation, and summarization using API calls for Vodafone Egypt # REDacted This project is a FastAPI-based microservice that provides three main functionalities: 1. **Sanitization** - Removes sensitive information from text (names, emails, IP addresses, Egyptian phone numbers). 2. **Translation** - Translates text into a target language using OpenAI's GPT models. 3. **Summarization** - Generates a concise summary of the given text using OpenAI's GPT models. 4. **Alerts** - Send an email alert to target address alerting that a user has entered sensitive information alongside user's IP address --- ## 🚀 Features - RESTful API built with FastAPI. - Asynchronous request handling for scalability. - Integration with OpenAI API (`gpt-3.5-turbo` for cost-effective processing). - Environment variable management via `.env`. --- ## 🛠 Installation ### 1. Clone the Repository ```bash git clone github.com cd REDacted ``` ### 2. Create a Virtual Environment ```bash python -m venv venv venv\Scripts\activate ``` ### 3. Install Dependencies ```bash pip install -r requirements.txt ``` ### 4. Set Up Environment Variables Create a .env file in the project root and add: ```bash OPENAI_API_KEY=your_openai_api_key_here ALERT_EMAIL_SENDER=sender_email_here ALERT_EMAIL_RECEIVER=receiver_email_here ALERT_EMAIL_PASSWORD=receiver_password_here ``` ### ▶️ Running the Application ```bash cd app uvicorn main:app --reload ``` ### Supported Actions | `type` value | Description | Required Fields | | ------------ | ------------------------------------ | ------------------------- | | `general` | Removes sensitive info from text | `text` | | `translate` | Translates text into target language after sanitization | `text`, `target_language` | | `summarize` | Summarizes text after sanitization | `text` | ### ✅ Example Requests #### 1. Sanitization ```bash curl -X POST "localhost" \ -H "Content-Type: app …