├── .gitignore ├── AI WatchOS Watch App ├── AI_WatchOSApp.swift ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ └── Frame 9-2.png │ └── Contents.json ├── ContentView.swift ├── HomeScreen │ ├── AssistantIcon.swift │ ├── Clock.swift │ ├── GlowEffect.swift │ └── ThinkingIcon.swift ├── Logic │ ├── Microphone.swift │ ├── Result.swift │ └── TTS.swift ├── On First App Open │ └── FirstOpen.swift ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json └── TopBar │ ├── AppSettings.swift │ ├── Settings.swift │ └── TopBar.swift ├── AI-WatchOS-Watch-App-Info.plist ├── AppleInteligenceWatchOS.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ ├── WorkspaceSettings.xcsettings │ │ └── swiftpm │ │ │ └── Package.resolved │ └── xcuserdata │ │ └── jacobmobin.xcuserdatad │ │ └── WorkspaceSettings.xcsettings └── xcuserdata │ └── jacobmobin.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ └── xcschememanagement.plist ├── LICENSE.md ├── PRIVACY.md ├── README.md └── ReadMe ├── ApiKeys.png ├── Demo.mp4 ├── Github1.png ├── Github2.png ├── Header.png └── Header2.png /.gitignore: -------------------------------------------------------------------------------- 1 | config.plist 2 | .env 3 | 4 | -------------------------------------------------------------------------------- /AI WatchOS Watch App/AI_WatchOSApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobamobin/AppleInteligenceWatchOS/HEAD/AI WatchOS Watch App/AI_WatchOSApp.swift -------------------------------------------------------------------------------- /AI WatchOS Watch App/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobamobin/AppleInteligenceWatchOS/HEAD/AI WatchOS Watch App/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /AI WatchOS Watch App/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobamobin/AppleInteligenceWatchOS/HEAD/AI WatchOS Watch App/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /AI WatchOS Watch App/Assets.xcassets/AppIcon.appiconset/Frame 9-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobamobin/AppleInteligenceWatchOS/HEAD/AI WatchOS Watch App/Assets.xcassets/AppIcon.appiconset/Frame 9-2.png -------------------------------------------------------------------------------- /AI WatchOS Watch App/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobamobin/AppleInteligenceWatchOS/HEAD/AI WatchOS Watch App/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /AI WatchOS Watch App/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobamobin/AppleInteligenceWatchOS/HEAD/AI WatchOS Watch App/ContentView.swift -------------------------------------------------------------------------------- /AI WatchOS Watch App/HomeScreen/AssistantIcon.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobamobin/AppleInteligenceWatchOS/HEAD/AI WatchOS Watch App/HomeScreen/AssistantIcon.swift -------------------------------------------------------------------------------- /AI WatchOS Watch App/HomeScreen/Clock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobamobin/AppleInteligenceWatchOS/HEAD/AI WatchOS Watch App/HomeScreen/Clock.swift -------------------------------------------------------------------------------- /AI WatchOS Watch App/HomeScreen/GlowEffect.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobamobin/AppleInteligenceWatchOS/HEAD/AI WatchOS Watch App/HomeScreen/GlowEffect.swift -------------------------------------------------------------------------------- /AI WatchOS Watch App/HomeScreen/ThinkingIcon.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobamobin/AppleInteligenceWatchOS/HEAD/AI WatchOS Watch App/HomeScreen/ThinkingIcon.swift -------------------------------------------------------------------------------- /AI WatchOS Watch App/Logic/Microphone.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobamobin/AppleInteligenceWatchOS/HEAD/AI WatchOS Watch App/Logic/Microphone.swift -------------------------------------------------------------------------------- /AI WatchOS Watch App/Logic/Result.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobamobin/AppleInteligenceWatchOS/HEAD/AI WatchOS Watch App/Logic/Result.swift -------------------------------------------------------------------------------- /AI WatchOS Watch App/Logic/TTS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobamobin/AppleInteligenceWatchOS/HEAD/AI WatchOS Watch App/Logic/TTS.swift -------------------------------------------------------------------------------- /AI WatchOS Watch App/On First App Open/FirstOpen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobamobin/AppleInteligenceWatchOS/HEAD/AI WatchOS Watch App/On First App Open/FirstOpen.swift -------------------------------------------------------------------------------- /AI WatchOS Watch App/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobamobin/AppleInteligenceWatchOS/HEAD/AI WatchOS Watch App/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /AI WatchOS Watch App/TopBar/AppSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobamobin/AppleInteligenceWatchOS/HEAD/AI WatchOS Watch App/TopBar/AppSettings.swift -------------------------------------------------------------------------------- /AI WatchOS Watch App/TopBar/Settings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobamobin/AppleInteligenceWatchOS/HEAD/AI WatchOS Watch App/TopBar/Settings.swift -------------------------------------------------------------------------------- /AI WatchOS Watch App/TopBar/TopBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobamobin/AppleInteligenceWatchOS/HEAD/AI WatchOS Watch App/TopBar/TopBar.swift -------------------------------------------------------------------------------- /AI-WatchOS-Watch-App-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobamobin/AppleInteligenceWatchOS/HEAD/AI-WatchOS-Watch-App-Info.plist -------------------------------------------------------------------------------- /AppleInteligenceWatchOS.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobamobin/AppleInteligenceWatchOS/HEAD/AppleInteligenceWatchOS.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /AppleInteligenceWatchOS.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobamobin/AppleInteligenceWatchOS/HEAD/AppleInteligenceWatchOS.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /AppleInteligenceWatchOS.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobamobin/AppleInteligenceWatchOS/HEAD/AppleInteligenceWatchOS.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /AppleInteligenceWatchOS.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobamobin/AppleInteligenceWatchOS/HEAD/AppleInteligenceWatchOS.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /AppleInteligenceWatchOS.xcodeproj/project.xcworkspace/xcuserdata/jacobmobin.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobamobin/AppleInteligenceWatchOS/HEAD/AppleInteligenceWatchOS.xcodeproj/project.xcworkspace/xcuserdata/jacobmobin.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /AppleInteligenceWatchOS.xcodeproj/xcuserdata/jacobmobin.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobamobin/AppleInteligenceWatchOS/HEAD/AppleInteligenceWatchOS.xcodeproj/xcuserdata/jacobmobin.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /AppleInteligenceWatchOS.xcodeproj/xcuserdata/jacobmobin.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobamobin/AppleInteligenceWatchOS/HEAD/AppleInteligenceWatchOS.xcodeproj/xcuserdata/jacobmobin.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobamobin/AppleInteligenceWatchOS/HEAD/LICENSE.md -------------------------------------------------------------------------------- /PRIVACY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobamobin/AppleInteligenceWatchOS/HEAD/PRIVACY.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobamobin/AppleInteligenceWatchOS/HEAD/README.md -------------------------------------------------------------------------------- /ReadMe/ApiKeys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobamobin/AppleInteligenceWatchOS/HEAD/ReadMe/ApiKeys.png -------------------------------------------------------------------------------- /ReadMe/Demo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobamobin/AppleInteligenceWatchOS/HEAD/ReadMe/Demo.mp4 -------------------------------------------------------------------------------- /ReadMe/Github1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobamobin/AppleInteligenceWatchOS/HEAD/ReadMe/Github1.png -------------------------------------------------------------------------------- /ReadMe/Github2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobamobin/AppleInteligenceWatchOS/HEAD/ReadMe/Github2.png -------------------------------------------------------------------------------- /ReadMe/Header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobamobin/AppleInteligenceWatchOS/HEAD/ReadMe/Header.png -------------------------------------------------------------------------------- /ReadMe/Header2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobamobin/AppleInteligenceWatchOS/HEAD/ReadMe/Header2.png --------------------------------------------------------------------------------