- Introduced a new Chinese version of the README (README_CN.md) to provide localized documentation for AgentOS. - Refactored the NPU bridge to utilize Unix domain sockets instead of HTTP loopback, enhancing security and performance. - Updated the NPU backend to include a server socket configuration, ensuring proper communication over Unix sockets. - Modified the Ntex client to support both network and Unix socket transports, improving flexibility in backend communication. - Adjusted validation logic to enforce the use of Unix sockets for local model endpoints, rejecting loopback HTTP addresses. - Enhanced error messages and documentation throughout the codebase to clarify the new socket-based architecture.
22 lines
471 B
TOML
22 lines
471 B
TOML
[package]
|
|
name = "agentos-npu"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
|
|
[dependencies]
|
|
agentos-candle.workspace = true
|
|
agentos-inference.workspace = true
|
|
agentos-protocol.workspace = true
|
|
async-trait.workspace = true
|
|
calculet-calrt.workspace = true
|
|
calculet-pcie-abi.workspace = true
|
|
rustix.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
tokio.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|