Replace placeholder pages with ToolEmbed component that embeds LangGraph, LangFlow, and Langfuse in iframes when configured, or shows "Not Configured" placeholders when URLs are empty. Add ServiceUrlsContext for passing service URLs through Dioxus context. Add docker-compose services for local development: LangFlow, LangGraph (trial), Langfuse with full dependency stack (Postgres, ClickHouse, Redis, MinIO). Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
16 lines
232 B
Rust
16 lines
232 B
Rust
mod chat;
|
|
mod developer;
|
|
mod news;
|
|
mod organization;
|
|
mod provider;
|
|
mod services;
|
|
mod user;
|
|
|
|
pub use chat::*;
|
|
pub use developer::*;
|
|
pub use news::*;
|
|
pub use organization::*;
|
|
pub use provider::*;
|
|
pub use services::*;
|
|
pub use user::*;
|