Welcome to the AI Toolkit! This guide will help you set up your first project and start exploring our features. Let's begin with the basics:

1. Installation 📦

Follow these steps to install AI Toolkit:

  • Run pip install ai_toolkit in your terminal
  • Verify installation with ai_toolkit --version
  • Create a new project directory: mkdir my_ai_project

Installation Process

2. Configuration ⚙️

Configure your environment by:

  • Creating a config file: config.yaml
  • Setting API keys in the [auth] section
  • Specifying model repositories in [models]
auth:
  api_key: YOUR_API_KEY
models:
  default: "https://github.com/ullrai/models"

3. First Project 🌱

Create your first AI application with:

  1. Initialize a new project: ai_toolkit init
  2. Choose a template: ai_toolkit new --template classification
  3. Run your model: ai_toolkit run

First Project Setup

4. Explore More 🔍

Check out these resources to deepen your understanding:

Would you like to see a demo of the training process?