Getting Started with Penguin AI Assistant
This guide will help you set up and run the Penguin AI Assistant on your local machine.
Prerequisites
- Python 3.9 or higher
- pip (Python package manager)
- Git
Installation
-
Clone the repository:
git clone https://github.com/Maximooch/penguin.git
cd penguin -
Create a virtual environment:
python -m venv venv
source venv/bin/activate # On Windows, use `venv\Scripts\activate` -
Install dependencies:
pip install -r requirements.txt
-
Set up your API keys:
- Copy the
.env.example
file to.env
- Edit
.env
and add your API keys for the language models you want to use
- Copy the
Running Penguin AI
To start the Penguin AI Assistant, run:
python main.py
You'll be greeted with a welcome message and can start interacting with the AI.
Basic Usage
- Type your questions or commands and press Enter to send them to the AI.
- Use special commands like
task
,project
, orimage
for specific functionalities. - Type
exit
to end the session.
For more detailed usage instructions, see the Basic Usage guide.
Next Steps
- Explore the Configuration options to customize Penguin AI.
- Learn about Automode for automated task execution.
- Discover how to manage Tasks and Projects.