aether-core 0.1.3

Core library for AI-powered code injection framework
Documentation

Aether Core

Core library for AI-powered dynamic code injection framework.

This crate provides the foundational components for template management, code injection, and transformation logic.

Features

  • Template parsing and management
  • Slot-based code injection
  • Dynamic code transformation
  • Extensible provider trait for AI backends

Example

use aether_core::{Template, Slot, InjectionContext};

let template = Template::new("{{AI:generate_button}}")
    .with_slot("generate_button", "Create a submit button");

let result = template.render_with_ai(&provider).await?;