gitextract_weqk_mf7/ ├── .gitignore ├── AIProxyAnthropic/ │ ├── AIProxyAnthropic/ │ │ ├── AIProxyAnthropicApp.swift │ │ ├── AppConstants.swift │ │ ├── Assets.xcassets/ │ │ │ ├── AccentColor.colorset/ │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── anthropic.imageset/ │ │ │ │ └── Contents.json │ │ │ └── climber.imageset/ │ │ │ └── Contents.json │ │ ├── ContentView.swift │ │ ├── MessageRequestView.swift │ │ ├── Preview Content/ │ │ │ └── Preview Assets.xcassets/ │ │ │ └── Contents.json │ │ ├── ToolsView.swift │ │ └── VisionView.swift │ └── AIProxyAnthropic.xcodeproj/ │ └── project.pbxproj ├── AIProxyDeepL/ │ ├── AIProxyDeepL/ │ │ ├── AIProxyDeepLApp.swift │ │ ├── AppConstants.swift │ │ ├── Assets.xcassets/ │ │ │ ├── AccentColor.colorset/ │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ └── deepl.imageset/ │ │ │ └── Contents.json │ │ ├── ContentView.swift │ │ ├── Preview Content/ │ │ │ └── Preview Assets.xcassets/ │ │ │ └── Contents.json │ │ └── TranslationView.swift │ └── AIProxyDeepL.xcodeproj/ │ └── project.pbxproj ├── AIProxyFal/ │ ├── AIProxyFal/ │ │ ├── AIProxyFalApp.swift │ │ ├── AppConstants.swift │ │ ├── Assets.xcassets/ │ │ │ ├── AccentColor.colorset/ │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ └── fal.imageset/ │ │ │ └── Contents.json │ │ ├── ContentView.swift │ │ ├── Preview Content/ │ │ │ └── Preview Assets.xcassets/ │ │ │ └── Contents.json │ │ └── TextToImageView.swift │ └── AIProxyFal.xcodeproj/ │ └── project.pbxproj ├── AIProxyGemini/ │ ├── AIProxyGemini/ │ │ ├── AIProxyGeminiApp.swift │ │ ├── AppConstants.swift │ │ ├── Assets.xcassets/ │ │ │ ├── AccentColor.colorset/ │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ └── icon.imageset/ │ │ │ └── Contents.json │ │ ├── ContentView.swift │ │ ├── Preview Content/ │ │ │ └── Preview Assets.xcassets/ │ │ │ └── Contents.json │ │ └── TextGenerationView.swift │ └── AIProxyGemini.xcodeproj/ │ └── project.pbxproj ├── AIProxyGroq/ │ ├── AIProxyGroq/ │ │ ├── AIProxyGroqApp.swift │ │ ├── AppConstants.swift │ │ ├── Assets.xcassets/ │ │ │ ├── AccentColor.colorset/ │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ └── groq.imageset/ │ │ │ └── Contents.json │ │ ├── ChatView.swift │ │ ├── ContentView.swift │ │ ├── Preview Content/ │ │ │ └── Preview Assets.xcassets/ │ │ │ └── Contents.json │ │ └── StreamingChatView.swift │ └── AIProxyGroq.xcodeproj/ │ └── project.pbxproj ├── AIProxyOpenAI/ │ ├── AIProxyOpenAI/ │ │ ├── AIProxyOpenAIApp.swift │ │ ├── AppConstants.swift │ │ ├── Assets.xcassets/ │ │ │ ├── AccentColor.colorset/ │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── openai.imageset/ │ │ │ │ └── Contents.json │ │ │ └── surfer.imageset/ │ │ │ └── Contents.json │ │ ├── ChatView.swift │ │ ├── ContentView.swift │ │ ├── DalleView.swift │ │ ├── MultiModalChatView.swift │ │ ├── Preview Content/ │ │ │ └── Preview Assets.xcassets/ │ │ │ └── Contents.json │ │ ├── StreamingChatView.swift │ │ └── TextToSpeechView.swift │ └── AIProxyOpenAI.xcodeproj/ │ └── project.pbxproj ├── AIProxyReplicate/ │ ├── AIProxyReplicate/ │ │ ├── AIProxyReplicateApp.swift │ │ ├── AppConstants.swift │ │ ├── Assets.xcassets/ │ │ │ ├── AccentColor.colorset/ │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ └── replicate.imageset/ │ │ │ └── Contents.json │ │ ├── ContentView.swift │ │ ├── ImageGenView.swift │ │ └── Preview Content/ │ │ └── Preview Assets.xcassets/ │ │ └── Contents.json │ └── AIProxyReplicate.xcodeproj/ │ └── project.pbxproj ├── AIProxyStabilityAI/ │ ├── AIProxyStabilityAI/ │ │ ├── AIProxyStabilityAIApp.swift │ │ ├── AppConstants.swift │ │ ├── Assets.xcassets/ │ │ │ ├── AccentColor.colorset/ │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ └── stability.imageset/ │ │ │ └── Contents.json │ │ ├── ContentView.swift │ │ ├── ImageGenView.swift │ │ └── Preview Content/ │ │ └── Preview Assets.xcassets/ │ │ └── Contents.json │ └── AIProxyStabilityAI.xcodeproj/ │ └── project.pbxproj ├── AIProxyTogetherAI/ │ ├── AIProxyTogetherAI/ │ │ ├── AIProxyTogetherAIApp.swift │ │ ├── AppConstants.swift │ │ ├── Assets.xcassets/ │ │ │ ├── AccentColor.colorset/ │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ └── togetherai.imageset/ │ │ │ └── Contents.json │ │ ├── ChatView.swift │ │ ├── ContentView.swift │ │ ├── JSONResponseView.swift │ │ ├── Preview Content/ │ │ │ └── Preview Assets.xcassets/ │ │ │ └── Contents.json │ │ └── StreamingChatView.swift │ └── AIProxyTogetherAI.xcodeproj/ │ └── project.pbxproj ├── Demos/ │ ├── AIColorPalette/ │ │ ├── AIColorPalette/ │ │ │ ├── AIColorPaletteApp.swift │ │ │ ├── AIProxyIntegration.swift │ │ │ ├── Assets.xcassets/ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ └── palm.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── ColorData.swift │ │ │ ├── ColorDetailView.swift │ │ │ ├── ContentView.swift │ │ │ ├── Preview Content/ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ └── Contents.json │ │ │ ├── Ripple.metal │ │ │ └── Ripple.swift │ │ ├── AIColorPalette.xcodeproj/ │ │ │ └── project.pbxproj │ │ └── README.md │ ├── Chat/ │ │ ├── Chat/ │ │ │ ├── AppConstants.swift │ │ │ ├── AppLogger.swift │ │ │ ├── Assets.xcassets/ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── ChatApp.swift │ │ │ ├── ChatBubble.swift │ │ │ ├── ChatDataLoader.swift │ │ │ ├── ChatInputView.swift │ │ │ ├── ChatManager.swift │ │ │ ├── ChatMessage.swift │ │ │ ├── ChatView.swift │ │ │ └── Preview Content/ │ │ │ └── Preview Assets.xcassets/ │ │ │ └── Contents.json │ │ └── Chat.xcodeproj/ │ │ └── project.pbxproj │ ├── Classifier/ │ │ ├── Classifier/ │ │ │ ├── AppConstants.swift │ │ │ ├── AppLogger.swift │ │ │ ├── Assets.xcassets/ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── CameraControlsView.swift │ │ │ ├── CameraDataLoader.swift │ │ │ ├── CameraFrameManager.swift │ │ │ ├── CameraView.swift │ │ │ ├── ClassifierApp.swift │ │ │ ├── ClassifierDataLoader.swift │ │ │ ├── ClassifierManager.swift │ │ │ ├── ClassifierView.swift │ │ │ └── Preview Content/ │ │ │ └── Preview Assets.xcassets/ │ │ │ └── Contents.json │ │ └── Classifier.xcodeproj/ │ │ └── project.pbxproj │ ├── EmojiPuzzleMaker/ │ │ ├── EmojiPuzzleMaker/ │ │ │ ├── Assets.xcassets/ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── ContentView.swift │ │ │ ├── EmojiPuzzleMakerApp.swift │ │ │ └── Preview Content/ │ │ │ └── Preview Assets.xcassets/ │ │ │ └── Contents.json │ │ └── EmojiPuzzleMaker.xcodeproj/ │ │ └── project.pbxproj │ ├── FilmFinder/ │ │ ├── FilmFinder/ │ │ │ ├── AppConstants.swift │ │ │ ├── Assets.xcassets/ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── ContentView.swift │ │ │ ├── FilmFinderApp.swift │ │ │ ├── GenreSelectorView.swift │ │ │ ├── GetStartedTip.swift │ │ │ ├── Info.plist │ │ │ ├── Movie.swift │ │ │ ├── MovieDetailsView.swift │ │ │ ├── Preview Content/ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ └── Contents.json │ │ │ ├── Ripple.metal │ │ │ └── Ripple.swift │ │ └── FilmFinder.xcodeproj/ │ │ └── project.pbxproj │ ├── PuLIDDemo/ │ │ ├── PuLIDDemo/ │ │ │ ├── AppConstants.swift │ │ │ ├── Assets.xcassets/ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ └── pulid.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── ContentView.swift │ │ │ ├── Info.plist │ │ │ ├── Preview Content/ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ └── Contents.json │ │ │ ├── PuLIDDemoApp.swift │ │ │ ├── Ripple.metal │ │ │ └── Ripple.swift │ │ └── PuLIDDemo.xcodeproj/ │ │ └── project.pbxproj │ ├── Stickers/ │ │ ├── Stickers/ │ │ │ ├── AppConstants.swift │ │ │ ├── AppLogger.swift │ │ │ ├── Assets.xcassets/ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── ButtonStyles.swift │ │ │ ├── Preview Content/ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ └── Contents.json │ │ │ ├── StickerDataLoader.swift │ │ │ ├── StickerImageView.swift │ │ │ ├── StickerInputView.swift │ │ │ ├── StickerLoadingView.swift │ │ │ ├── StickerManager.swift │ │ │ ├── StickerView.swift │ │ │ └── StickersApp.swift │ │ └── Stickers.xcodeproj/ │ │ └── project.pbxproj │ ├── Transcriber/ │ │ ├── Transcriber/ │ │ │ ├── AppConstants.swift │ │ │ ├── AppLogger.swift │ │ │ ├── Assets.xcassets/ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── AudioFileWriter.swift │ │ │ ├── AudioRecorder.swift │ │ │ ├── AudioRecording.swift │ │ │ ├── ButtonStyles.swift │ │ │ ├── FileUtils.swift │ │ │ ├── MicrophoneSampleVendor.swift │ │ │ ├── ModelContext+Extensions.swift │ │ │ ├── NoRecordingsView.swift │ │ │ ├── Preview Content/ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ └── Contents.json │ │ │ ├── RecordingRowView.swift │ │ │ ├── TranscribedAudioRecording.swift │ │ │ ├── TranscriberApp.swift │ │ │ ├── TranscriberDataLoader.swift │ │ │ ├── TranscriberManager.swift │ │ │ └── TranscriberView.swift │ │ └── Transcriber.xcodeproj/ │ │ └── project.pbxproj │ ├── Translator/ │ │ ├── Translator/ │ │ │ ├── AppConstants.swift │ │ │ ├── AppLogger.swift │ │ │ ├── Assets.xcassets/ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── BottomTranslateView.swift │ │ │ ├── ButtonStyles.swift │ │ │ ├── Preview Content/ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ └── Contents.json │ │ │ ├── TopTranslateView.swift │ │ │ ├── TranslateView.swift │ │ │ ├── TranslationDataLoader.swift │ │ │ └── TranslatorApp.swift │ │ └── Translator.xcodeproj/ │ │ └── project.pbxproj │ └── Trivia/ │ ├── Trivia/ │ │ ├── AppConstants.swift │ │ ├── AppLogger.swift │ │ ├── Assets.xcassets/ │ │ │ ├── AccentColor.colorset/ │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Preview Content/ │ │ │ └── Preview Assets.xcassets/ │ │ │ └── Contents.json │ │ ├── TriviaAnswerPicker.swift │ │ ├── TriviaApp.swift │ │ ├── TriviaCardData.swift │ │ ├── TriviaCardView.swift │ │ ├── TriviaDataLoader.swift │ │ ├── TriviaFormView.swift │ │ ├── TriviaManager.swift │ │ └── TriviaView.swift │ └── Trivia.xcodeproj/ │ └── project.pbxproj └── README.md