Files
openclaw/apps/shared/OpenClawMLXTTSProtocol/Package.swift
Vincent Koc 96b1be10f5 feat(macos): keep MLX TTS model resident (#104200)
* test(macos): cover MLX helper packaging

* feat(macos): define framed MLX TTS protocol

* feat(macos): keep MLX TTS model resident

* feat(macos): reuse MLX TTS helper transport

* fix(macos): preserve MLX TTS fallback lifecycle

* chore(swift): lint MLX TTS protocol sources

* fix(macos): keep MLX helper input nonblocking

* test(macos): cover forced MLX helper shutdown

* fix(macos): fall back after MLX memory eviction

* fix(macos): discard canceled MLX audio
2026-07-11 13:45:27 +08:00

19 lines
467 B
Swift

// swift-tools-version: 6.2
import PackageDescription
let package = Package(
name: "OpenClawMLXTTSProtocol",
platforms: [
.macOS(.v15),
],
products: [
.library(name: "OpenClawMLXTTSProtocol", targets: ["OpenClawMLXTTSProtocol"]),
],
targets: [
.target(name: "OpenClawMLXTTSProtocol"),
.testTarget(
name: "OpenClawMLXTTSProtocolTests",
dependencies: ["OpenClawMLXTTSProtocol"]),
])