Skip to content

Release v1.0.0

Latest

Choose a tag to compare

@github-actions github-actions released this 29 Apr 08:08
· 9 commits to main since this release
fa8c18c

[1.0.0]

🚀 Major Features

  • Chat-based AI interface (ai_agent chat)

    • Conversational assistant with rich media support (images, files, JSON, code)
    • Inline file uploads (PNG, JPG, TIFF, DICOM, NIfTI)
    • Tool recommendation cards and execution traces
    • Debug sidebar with conversation state and previews
    • Persistent multi-turn conversation context
  • Tool execution workflow

    • Button-based approval system for safe tool execution
    • Inline “Tool Recommendation” UI with contextual actions
    • Downloadable results section for tool outputs
    • Separation of preview vs original result files
  • Tooling system (MCP integration)

    • Centralized tool registry with dynamic lookup
    • Catalog-to-tool name mapping
    • Lazy loading for heavy tools
    • First integrated tool: 3D lung segmentation (HuggingFace Space)

🧠 Retrieval & Agent Improvements

  • Iterative retrieval with retry for low-result queries
  • Alternative search tool (search_alternative) for agent-driven refinement
  • Batch repository verification via repo_info_batch
  • Improved agent prompt and structured output reliability

⚙️ Configuration & Model Support

  • YAML-based configuration (config.yaml)
    • Supports OpenAI, EPFL, and OpenAI-compatible APIs
  • Configurable:
    • Agent model
    • Embedding backend
    • Reranker backend
  • Type-safe config loading via Pydantic

🎨 UI & UX

  • Redesigned layout with:
    • Header banner and Imaging Plaza branding
    • Chat panel + sidebar separation
  • Tool analytics:
    • Execution frequency charts
    • Timeline visualization
  • Improved file handling and previews

⚡ Performance Improvements

  • Startup catalog pre-embedding (FAISS warm start)
  • Metadata caching for images
  • Preview generation caching
  • Agent instance caching for custom models
  • Repository info caching with TTL + deduplication
  • Port pre-selection to avoid UI startup retries

🏗️ Architecture

  • Modular structure:
    • handlers.py, components.py, state.py, formatters.py, visualizations.py
  • Core interface:
    • respond(message, files, state)
  • Clear separation of UI, agent logic, and tool execution
  • MCP tools moved to dedicated subpackage

🧹 Cleanup & Simplification

  • Removed:
    • Legacy non-agent pipeline
    • Fast mode
    • Text-based tool approval
    • Refine intent system
    • Deprecated CLI (ai_agent ui)
  • Simplified UI state management
  • Standardized import paths (ai_agent.*)

🛠️ Fixes

  • Fixed startup refresh issues and duplicate sync
  • Improved structured output validation reliability
  • Prevented retrieval query drift
  • Fixed FAISS rebuild when embeddings change
  • Resolved Gradio compatibility issues
  • Fixed race conditions and duplicate history entries
  • Ensured consistent UI event outputs