bbcf0c74bb
- 19 Swift source files (~4900 lines) - Complete UI with SwiftUI (MainView, SettingsView, MessageBubble, InputBar) - Inference layer (LlmEngine, Agent, ToolCalling, ConversationContext) - Services (Audio, TTS, WebSearch, ModelDownload, Storage) - Build system: Makefile, Package.swift, Podfile - Documentation: BUILD.md, plan.md, PROJECT_STATUS.md - Ready for Xcode build - just need LiteRT dependency added
25 lines
529 B
Ruby
25 lines
529 B
Ruby
platform :ios, '15.0'
|
|
|
|
use_frameworks!
|
|
|
|
target 'SleepyAgent' do
|
|
# TensorFlow Lite / LiteRT
|
|
pod 'TensorFlowLiteSwift', '~> 2.16.0'
|
|
|
|
# If LiteRT-LM has a specific pod, use that instead:
|
|
# pod 'LiteRT', '~> 0.10.0'
|
|
|
|
target 'SleepyAgentTests' do
|
|
inherit! :search_paths
|
|
# Pods for testing
|
|
end
|
|
end
|
|
|
|
post_install do |installer|
|
|
installer.pods_project.targets.each do |target|
|
|
target.build_configurations.each do |config|
|
|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '15.0'
|
|
end
|
|
end
|
|
end
|