adk-studio 0.6.0

Visual development environment for AI agents built with Rust Agent Development Kit (ADK-Rust)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
mod agent;
mod deploy;
mod project;
mod tool;
mod workflow;

pub use agent::{AgentSchema, AgentType, Position, Route};
pub use deploy::{
    DeployManifest, DeployRiskTier, DeployRuntime, DeploySource, SpatialAppManifest,
    SpatialAppRuntime,
};
pub use project::{ProjectMeta, ProjectSchema, ProjectSettings};
pub use tool::{
    BrowserToolConfig, FunctionParameter, FunctionToolConfig, McpToolConfig, ParamType, ToolConfig,
    ToolSchema, ToolType, builtins,
};
pub use workflow::{Condition, END, Edge, START, WorkflowSchema, WorkflowType};