runagent 0.1.49

RunAgent SDK for Rust - Client SDK for interacting with deployed AI agents
Documentation
1
2
3
4
5
6
7
8
9
//! Minimal database module for agent lookups
//!
//! This module provides a simple database interface for looking up local agent
//! metadata (host, port) by agent ID. This allows connecting to agents without
//! explicitly specifying the address.

pub mod service;

pub use service::DatabaseService;