Files
asepharyana-hub-llm-api/src/presentation/state.rs
T
asepharyanaandClaude Code e351d74fa4 refactor(llm-api): implement clean architecture following scraper pattern
Split monolithic 1012-line main.rs into layered hexagonal architecture:
- Domain: entity types and LlmError enum
- Application: prompt building, sampler construction, tool call parsing
- Infrastructure: LlamaEngine wrapping llama-cpp-2 with isolated unsafe transmute
- Presentation: Axum handlers, middleware (auth), error chain, router
- Config: type-safe AppConfig with LazyLock
- Bootstrap: Application struct with build() + run()

Resolves build_sampler/build_sampler_params duplication.
Adds simple web chat UI at GET /.

Co-Authored-By: Claude Code <noreply@anthropic.com>
2026-07-25 15:07:19 +07:00

14 lines
337 B
Rust

//! Application state shared across all handlers.
use std::sync::Arc;
use crate::infrastructure::llama::LlamaEngine;
/// Shared application state injected into every handler via Axum State.
///
/// Contains the infrastructure dependencies that handlers need.
#[derive(Clone)]
pub struct AppState {
pub engine: Arc<LlamaEngine>,
}