feat: 新增 Computer Use Agent 初步支持

This commit is contained in:
mofeng-git
2026-06-15 22:24:40 +08:00
parent 5c98aea7e3
commit 4b7be20fe0
20 changed files with 2518 additions and 2 deletions

View File

@@ -6,12 +6,14 @@ pub use crate::rustdesk::config::RustDeskConfig;
mod atx;
mod common;
mod computer_use;
mod hid;
mod stream;
mod web;
pub use atx::*;
pub use common::*;
pub use computer_use::*;
pub use hid::*;
pub use stream::*;
pub use web::*;
@@ -30,6 +32,7 @@ pub struct AppConfig {
pub audio: AudioConfig,
pub stream: StreamConfig,
pub web: WebConfig,
pub computer_use: ComputerUseConfig,
pub extensions: ExtensionsConfig,
pub rustdesk: RustDeskConfig,
pub rtsp: RtspConfig,