Skip to content

etang-ai21/Maestro-Testing

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Maestro-Testing

Assets for testing maestro

Prerequisites

  • Python 3.12 or higher
  • uv - A fast Python package installer and resolver

Installing uv

If you don't have uv installed, you can install it with:

curl -LsSf https://astral.sh/uv/install.sh | sh

Or on macOS with Homebrew:

brew install uv

Getting Started

  1. Clone the repository (if you haven't already):

    git clone <repository-url>
    cd Maestro-Testing
  2. Initialize the project:

    ./init.sh

    This script will:

    • Check if uv is installed
    • Create a virtual environment in .venv (if it doesn't exist)
    • Install all dependencies from pyproject.toml
  3. Activate the virtual environment:

    source .venv/bin/activate
  4. Start coding! 🚀

Project Structure

Maestro-Testing/
├── .venv/              # Virtual environment (created by init.sh)
├── .python-version     # Python version specification (3.12)
├── pyproject.toml      # Project dependencies and configuration
├── init.sh             # Project initialization script
└── README.md           # This file

Dependencies

This project uses the following packages:

  • ai21 - AI21 Labs Python SDK

Common Commands

Sync dependencies

uv sync

Add a new dependency

uv add <package-name>

Remove a dependency

uv remove <package-name>

Run Python

# Make sure virtual environment is activated
source .venv/bin/activate
python your_script.py

About

Assets for testing maestro

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors