├── .gitignore ├── LICENSE ├── README.md ├── SmolLens.xcodeproj ├── project.pbxproj └── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── swiftpm │ └── Package.resolved └── SmolLens ├── AppIntents ├── AppIntentsProvider.swift ├── OpenSmolLensIntent.swift ├── SmolLensEntity.swift └── SmolLensVisualQuery.swift ├── Assets.xcassets ├── AccentColor.colorset │ └── Contents.json ├── AppIcon.appiconset │ └── Contents.json └── Contents.json ├── Extensions └── UIImage.swift ├── ModelLoader.swift ├── Preview Content └── Preview Assets.xcassets │ └── Contents.json ├── Services ├── CameraService.swift ├── ImageAnalysisService.swift └── VLMService.swift ├── SmolLens.entitlements ├── SmolLensApp.swift └── Views ├── CameraContainerView.swift ├── CameraControlsView.swift ├── CameraView.swift ├── LibraryButton.swift ├── OnboardingView.swift └── ResultView.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrankriyam/SmolLens/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrankriyam/SmolLens/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrankriyam/SmolLens/HEAD/README.md -------------------------------------------------------------------------------- /SmolLens.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrankriyam/SmolLens/HEAD/SmolLens.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SmolLens.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrankriyam/SmolLens/HEAD/SmolLens.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SmolLens.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrankriyam/SmolLens/HEAD/SmolLens.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /SmolLens/AppIntents/AppIntentsProvider.swift: -------------------------------------------------------------------------------- 1 | import AppIntents 2 | -------------------------------------------------------------------------------- /SmolLens/AppIntents/OpenSmolLensIntent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrankriyam/SmolLens/HEAD/SmolLens/AppIntents/OpenSmolLensIntent.swift -------------------------------------------------------------------------------- /SmolLens/AppIntents/SmolLensEntity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrankriyam/SmolLens/HEAD/SmolLens/AppIntents/SmolLensEntity.swift -------------------------------------------------------------------------------- /SmolLens/AppIntents/SmolLensVisualQuery.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrankriyam/SmolLens/HEAD/SmolLens/AppIntents/SmolLensVisualQuery.swift -------------------------------------------------------------------------------- /SmolLens/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrankriyam/SmolLens/HEAD/SmolLens/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /SmolLens/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrankriyam/SmolLens/HEAD/SmolLens/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SmolLens/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrankriyam/SmolLens/HEAD/SmolLens/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /SmolLens/Extensions/UIImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrankriyam/SmolLens/HEAD/SmolLens/Extensions/UIImage.swift -------------------------------------------------------------------------------- /SmolLens/ModelLoader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrankriyam/SmolLens/HEAD/SmolLens/ModelLoader.swift -------------------------------------------------------------------------------- /SmolLens/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrankriyam/SmolLens/HEAD/SmolLens/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /SmolLens/Services/CameraService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrankriyam/SmolLens/HEAD/SmolLens/Services/CameraService.swift -------------------------------------------------------------------------------- /SmolLens/Services/ImageAnalysisService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrankriyam/SmolLens/HEAD/SmolLens/Services/ImageAnalysisService.swift -------------------------------------------------------------------------------- /SmolLens/Services/VLMService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrankriyam/SmolLens/HEAD/SmolLens/Services/VLMService.swift -------------------------------------------------------------------------------- /SmolLens/SmolLens.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrankriyam/SmolLens/HEAD/SmolLens/SmolLens.entitlements -------------------------------------------------------------------------------- /SmolLens/SmolLensApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrankriyam/SmolLens/HEAD/SmolLens/SmolLensApp.swift -------------------------------------------------------------------------------- /SmolLens/Views/CameraContainerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrankriyam/SmolLens/HEAD/SmolLens/Views/CameraContainerView.swift -------------------------------------------------------------------------------- /SmolLens/Views/CameraControlsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrankriyam/SmolLens/HEAD/SmolLens/Views/CameraControlsView.swift -------------------------------------------------------------------------------- /SmolLens/Views/CameraView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrankriyam/SmolLens/HEAD/SmolLens/Views/CameraView.swift -------------------------------------------------------------------------------- /SmolLens/Views/LibraryButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrankriyam/SmolLens/HEAD/SmolLens/Views/LibraryButton.swift -------------------------------------------------------------------------------- /SmolLens/Views/OnboardingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrankriyam/SmolLens/HEAD/SmolLens/Views/OnboardingView.swift -------------------------------------------------------------------------------- /SmolLens/Views/ResultView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrankriyam/SmolLens/HEAD/SmolLens/Views/ResultView.swift --------------------------------------------------------------------------------