Skip to content

Latest commit

 

History

History
26 lines (21 loc) · 998 Bytes

README.md

File metadata and controls

26 lines (21 loc) · 998 Bytes

AI Blog Generator using LLama 2 Model

LLama 2 Model

Introduction

This Python script provides a user-friendly interface for generating blog content using the LLama 2 language model. It utilizes Streamlit for the interface, allowing users to easily input their desired blog topic and generate content.

Model Details

The LLama 2 model used in this project can be found on Hugging Face. It is a powerful language model capable of generating coherent text based on given prompts.

Setup

Follow these steps to set up the project:

  1. Create a virtual environment:
    conda create -n ai-blog-venv python=3.10
    conda activate ai-blog-venv
  2. Install dependencies:
    pip install -r requirements.txt
  3. Run the streamlit app:
    streamlit run app.py