Post Generator AI is a Python-based project that uses AI to generate engaging posts for social media platforms like LinkedIn. This tool can help you save time, improve content quality, and maintain consistency in your posts.
- Generate professional LinkedIn posts using AI
- Customize content according to your requirements
- Supports multiple topics and post styles
- Easy-to-use Python scripts
AI_LinkDin_Post_Generator/ ├── data/ # Dataset or input data files ├── pycache/ # Python cache files ├── few_shot.py # Few-shot learning examples ├── llm_helper.py # Helper functions for AI model ├── main.py # Main script to run the generator ├── post_generator.py # Core post generation logic ├── preprocessing.py # Preprocessing scripts ├── .env # Environment variables ├── .gitignore # Git ignore file ├── requirements.txt # Python dependencies └── README.md # Project documentation
markdown Copy code
- Python 3.8+
- Install dependencies using:
pip install -r requirements.txt
Usage
Clone the repository:
bash
Copy code
git clone https://github.com/your-username/Post_Generator_AI.git
cd Post_Generator_AI
Install dependencies:
bash
Copy code
pip install -r requirements.txt
Run the main script:
bash
Copy code
python main.py
Follow the prompts to generate posts.
Contribution
Feel free to fork the repository and submit pull requests. Any contributions are welcome!
License
This project is licensed under the MIT License. See the LICENSE file for details.
yaml
Copy code
---
### **2. .gitignore**
```gitignore
# Python cache
__pycache__/
*.py[cod]
*.pyo
# Environment variables
.env
# Data files
data/
# OS files
.DS_Store
Thumbs.db
# IDE files
.vscode/
.idea/
# Gradle or Java files (if accidentally included)
.gradle/
*.class
*.jar
3. requirements.txt
txt
Copy code
# Core dependencies for AI post generation
openai
python-dotenv
transformers
torch
✅ Steps to Push to GitHub Safely
Initialize Git in your project folder
bash
Copy code
cd D:/Sudeep/Projects/AI_Linkdin_Posts
git init
Add remote
bash
Copy code
git remote add origin https://github.com/7Lion10/Post_Generator_AI.git
Add all files and commit
bash
Copy code
git add .
git commit -m "Initial commit with complete project structure"
Push to GitHub
bash
Copy code
git push -u origin main