LettreAI Documentation
  • Home
  • User Guide
  • Nutshell
  • Manual
  • Examples
  • API
  1. Getting Started
  2. Installation
  • Getting Started
    • AI Task Documentation
    • Installation
    • Quick Start
  • User Guide
    • User Guide
  • Nutshell
    • AI-Task in a Nutshell
  • Manual
    • Core Concepts
    • Configuration
    • Instructions
    • Productions
    • Functions
    • LLM Integration - Claude
  • Examples
    • Basic Examples
    • Advanced Examples
    • Instruction Examples
    • Production Examples
  • Reports
    • AI Task Reports
  • API Reference
    • Pipeline API
    • Engine API
    • Functions API
  • Development
    • Contributing
    • Architecture
  1. Getting Started
  2. Installation

Installation

Installing AI-Task

Prerequisites

  • Python 3.8 or higher
  • pip (Python package installer)

Installation Methods

Using pip

The simplest way to install AI-Task is using pip:

pip install ai-task

From Source

To install from source:

  1. Clone the repository:

    git clone https://github.com/yourusername/ai-task.git
    cd ai-task
  2. Install in development mode:

    pip install -e .

Environment Setup

  1. Set up your API keys:

    # For Anthropic's Claude API
    export ANTHROPIC_API_KEY=your_key_here
  2. Verify the installation:

    python -c "import ai_task; print(ai_task.__version__)"

Next Steps

After installing AI Task, you can:

  • Follow the Quickstart Guide
  • Read the Manual
  • Explore Examples
AI Task Documentation
Quick Start

LettreAI Documentation

 
  • Edit this page
  • Report an issue
  • License: MIT