Skip to content

Latest commit

Β 

History

History
96 lines (70 loc) Β· 2.87 KB

File metadata and controls

96 lines (70 loc) Β· 2.87 KB

Release v1.0.0

πŸŽ‰ Initial Release - Pre-built Client Included

This release includes a pre-built client application so you can clone and run immediately without needing to build the frontend yourself.

πŸ“¦ Quick Start

Super Simple Setup (Recommended)

  1. Clone the repository:

    git clone https://github.com/databricks-solutions/project-0xfffff.git
    cd project-0xfffff
  2. Download the pre-built client:

    • Go to the Releases page
    • Download client-build.tar.gz from the latest release
    • Extract it:
    tar -xzf client-build.tar.gz -C client/build/
  3. Run the server:

    uv run uvicorn server.app:app --reload --port 8000
  4. Open your browser:

    http://localhost:8000
    

Build Client Yourself (For Development Only)

If you want to modify the client or rebuild from source:

cd client
npm install
npm run build
cd ..
uv run uvicorn server.app:app --reload --port 8000

✨ Features in This Release

Core Functionality

  • Workshop Management: Create and manage annotation workshops
  • Discovery Phase: Users explore traces and identify patterns
  • Annotation Phase: Rate traces based on custom rubrics
  • IRR Analysis: Calculate inter-rater reliability metrics
  • MLflow Integration: Import traces from MLflow experiments

Key Fixes & Improvements

  1. Annotation Editing - Users can edit previous ratings with smart change detection
  2. Authentication Fix - Resolved "permission denied" errors requiring page refresh
  3. Comment Handling - Multi-line comments with proper newline preservation
  4. Rubric Format - Fixed question parsing with improved delimiter
  5. Trace Randomization - Per-user randomized but consistent trace ordering
  6. MLflow Deeplink Fix - Removed trailing slash causing deeplink hangs

πŸ“‹ Requirements

  • Python 3.10+
  • uv (Python package installer)
  • Modern web browser

πŸ”§ Configuration

See the main README.md for detailed configuration options including:

  • Database setup
  • Databricks integration
  • Authentication configuration
  • Workshop creation

πŸ“š Documentation

πŸ› Known Issues

None at this time. Please report issues on GitHub.

πŸ“ License

See LICENSE.md for details.