Metadata-Version: 2.4
Name: dracula-ai
Version: 0.1.2
Summary: A simple Python library for Google Gemini with memory support.
Author-email: Suleyman Ibis <ibiss.suleymann@gmail.com>
License: MIT
Project-URL: Homepage, https://github.com/yourusername/dracula
Keywords: ai,gemini,chatbot,assistant
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: google-genai

# Dracula 🧛

A simple Python library for Google Gemini with conversation memory.

## Installation

pip install dracula-ai

## Usage

from dracula import Dracula

ai = Dracula(api_key="your-api-key")

response = ai.chat("Hello, who are you?")
print(response)
