├── .github └── workflows │ └── ios-build.yml ├── .gitignore ├── .vscode └── settings.json ├── .windsurfrules └── building.mdc ├── Ichi.xcodeproj ├── project.pbxproj └── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── swiftpm │ └── Package.resolved ├── Ichi ├── AVSpeechTTSProvider.swift ├── AppState.swift ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Ichi.entitlements ├── IchiApp.swift ├── KokoroTTSProvider.swift ├── MainView.swift ├── OnDeviceProcessor.swift ├── OnboardingView.swift ├── SettingsView.swift ├── SpeechRecognizer.swift ├── TTSManager.swift ├── TTSProtocol.swift └── Views │ ├── PulsatingCircle.swift │ └── WaveformView.swift ├── LICENSE ├── README.md └── main_image.png /.github/workflows/ios-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrankriyam/Ichi/HEAD/.github/workflows/ios-build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrankriyam/Ichi/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrankriyam/Ichi/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.windsurfrules/building.mdc: -------------------------------------------------------------------------------- 1 | Build and Run Ichi macOS App 2 | -------------------------------------------------------------------------------- /Ichi.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrankriyam/Ichi/HEAD/Ichi.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Ichi.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrankriyam/Ichi/HEAD/Ichi.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Ichi.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrankriyam/Ichi/HEAD/Ichi.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /Ichi/AVSpeechTTSProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrankriyam/Ichi/HEAD/Ichi/AVSpeechTTSProvider.swift -------------------------------------------------------------------------------- /Ichi/AppState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrankriyam/Ichi/HEAD/Ichi/AppState.swift -------------------------------------------------------------------------------- /Ichi/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrankriyam/Ichi/HEAD/Ichi/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Ichi/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrankriyam/Ichi/HEAD/Ichi/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Ichi/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrankriyam/Ichi/HEAD/Ichi/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Ichi/Ichi.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrankriyam/Ichi/HEAD/Ichi/Ichi.entitlements -------------------------------------------------------------------------------- /Ichi/IchiApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrankriyam/Ichi/HEAD/Ichi/IchiApp.swift -------------------------------------------------------------------------------- /Ichi/KokoroTTSProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrankriyam/Ichi/HEAD/Ichi/KokoroTTSProvider.swift -------------------------------------------------------------------------------- /Ichi/MainView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrankriyam/Ichi/HEAD/Ichi/MainView.swift -------------------------------------------------------------------------------- /Ichi/OnDeviceProcessor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrankriyam/Ichi/HEAD/Ichi/OnDeviceProcessor.swift -------------------------------------------------------------------------------- /Ichi/OnboardingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrankriyam/Ichi/HEAD/Ichi/OnboardingView.swift -------------------------------------------------------------------------------- /Ichi/SettingsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrankriyam/Ichi/HEAD/Ichi/SettingsView.swift -------------------------------------------------------------------------------- /Ichi/SpeechRecognizer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrankriyam/Ichi/HEAD/Ichi/SpeechRecognizer.swift -------------------------------------------------------------------------------- /Ichi/TTSManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrankriyam/Ichi/HEAD/Ichi/TTSManager.swift -------------------------------------------------------------------------------- /Ichi/TTSProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrankriyam/Ichi/HEAD/Ichi/TTSProtocol.swift -------------------------------------------------------------------------------- /Ichi/Views/PulsatingCircle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrankriyam/Ichi/HEAD/Ichi/Views/PulsatingCircle.swift -------------------------------------------------------------------------------- /Ichi/Views/WaveformView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrankriyam/Ichi/HEAD/Ichi/Views/WaveformView.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrankriyam/Ichi/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrankriyam/Ichi/HEAD/README.md -------------------------------------------------------------------------------- /main_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrankriyam/Ichi/HEAD/main_image.png --------------------------------------------------------------------------------