agents 0.3.0

Facade crate for building typed Rust agents
Documentation
// swift-tools-version: 5.9
import PackageDescription

let package = Package(
    name: "AgentsLLMApple",
    platforms: [
        .macOS(.v10_15),
    ],
    products: [
        .library(
            name: "AgentsLLMApple",
            type: .static,
            targets: ["AgentsLLMApple"]
        ),
    ],
    targets: [
        .target(
            name: "AgentsLLMApple"
        ),
    ]
)