swift-apple-intelligence-grpc/Sources/AppleIntelligenceCore/Resources.swift
Mathias Beaulieu-Duncan 638656e7ca Add vision support, gRPC reflection toggle, and chat improvements
- Add Vision framework integration for image analysis (OCR, classification)
- Add image attachment support in chat UI with drag & drop
- Add recent images sidebar from Downloads/Desktop
- Add copy to clipboard button for assistant responses
- Add gRPC reflection service with toggle in settings
- Create proper .proto file and generate Swift code
- Add server restart when toggling reflection setting
- Fix port number formatting in settings (remove comma grouping)
- Update gRPC dependencies to v2.x

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-30 16:18:06 -05:00

10 lines
303 B
Swift

import Foundation
/// Helper for accessing bundled resources
public enum AppleIntelligenceResources {
/// URL to the protobuf descriptor set file for reflection
public static var descriptorSetURL: URL? {
Bundle.module.url(forResource: "apple_intelligence", withExtension: "pb")
}
}