├── .eslintrc.js ├── .gitignore ├── .prettierrc.js ├── .watchmanconfig ├── App.tsx ├── Gemfile ├── LICENSE ├── README.md ├── __tests__ └── App.test.tsx ├── android ├── app │ ├── build.gradle │ ├── debug.keystore │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── mydeviceai │ │ │ ├── MainActivity.kt │ │ │ └── MainApplication.kt │ │ └── res │ │ ├── drawable │ │ └── rn_edit_text_material.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── app.json ├── babel.config.js ├── index.js ├── ios ├── .xcode.env ├── MyDeviceAI.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── MyDeviceAI.xcscheme ├── MyDeviceAI.xcworkspace │ └── contents.xcworkspacedata ├── MyDeviceAI │ ├── AppDelegate.h │ ├── AppDelegate.mm │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-60@2x 1.png │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-60@3x.png │ │ │ ├── Icon-Notification@3x.png │ │ │ ├── Icon-Small-40.png │ │ │ ├── Icon-Small-40@2x.png │ │ │ ├── Icon-Small@2x.png │ │ │ ├── Icon-Small@3x.png │ │ │ └── MyDeviceAI.png │ │ ├── AppIconMain.appiconset │ │ │ ├── 1024.png │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── MyDeviceAI.imageset │ │ │ ├── Contents.json │ │ │ └── MyDeviceAI.png │ ├── Info.plist │ ├── LaunchScreen.storyboard │ ├── PrivacyInfo.xcprivacy │ └── main.m ├── MyDeviceAITests │ ├── Info.plist │ └── MyDeviceAITests.m ├── Podfile └── Podfile.lock ├── jest.config.js ├── metro.config.js ├── package.json ├── prob.diff ├── src ├── ChatUI.tsx ├── Styles.ts ├── components │ ├── ConnectionDropdownModal.tsx │ ├── ConnectionStatusIcon.tsx │ ├── EmptyState.tsx │ ├── SearchingIndicator.tsx │ ├── StreamingThinkingIndicator.tsx │ ├── ThinkingContent.tsx │ ├── ThumbnailGallery.tsx │ └── TypingIndicator.tsx ├── connection │ ├── RemoteConnectionContext.tsx │ └── RemoteConnectionManager.ts ├── constants │ └── SuggestedPrompts.ts ├── db │ ├── DatabaseContext.tsx │ └── DatabaseHelper.ts ├── drawer │ └── CustomDrawerContent.tsx ├── images │ ├── MyDeviceAI-NoBG.png │ └── MyDeviceAI.png ├── model │ └── Message.ts ├── screens │ ├── AdvancedSettingsScreen.tsx │ ├── ChatScreen.tsx │ ├── ContextSettings.tsx │ ├── ImageGalleryScreen.tsx │ └── SettingsScreen.tsx ├── search │ ├── BraveSearch.ts │ └── SearXNG.ts ├── types │ └── RemoteConnection.ts └── utils │ ├── ArrayUtils.ts │ ├── ToastUtils.ts │ ├── Utils.ts │ └── textdecoder │ └── index.ts └── tsconfig.json /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native', 4 | }; 5 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/App.tsx -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/__tests__/App.test.tsx -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/android/app/debug.keystore -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/mydeviceai/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/android/app/src/main/java/com/mydeviceai/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/java/com/mydeviceai/MainApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/android/app/src/main/java/com/mydeviceai/MainApplication.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/android/app/src/main/res/drawable/rn_edit_text_material.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/app.json -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/babel.config.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/index.js -------------------------------------------------------------------------------- /ios/.xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/ios/.xcode.env -------------------------------------------------------------------------------- /ios/MyDeviceAI.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/ios/MyDeviceAI.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/MyDeviceAI.xcodeproj/xcshareddata/xcschemes/MyDeviceAI.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/ios/MyDeviceAI.xcodeproj/xcshareddata/xcschemes/MyDeviceAI.xcscheme -------------------------------------------------------------------------------- /ios/MyDeviceAI.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/ios/MyDeviceAI.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/MyDeviceAI/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/ios/MyDeviceAI/AppDelegate.h -------------------------------------------------------------------------------- /ios/MyDeviceAI/AppDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/ios/MyDeviceAI/AppDelegate.mm -------------------------------------------------------------------------------- /ios/MyDeviceAI/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/ios/MyDeviceAI/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/MyDeviceAI/Images.xcassets/AppIcon.appiconset/Icon-60@2x 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/ios/MyDeviceAI/Images.xcassets/AppIcon.appiconset/Icon-60@2x 1.png -------------------------------------------------------------------------------- /ios/MyDeviceAI/Images.xcassets/AppIcon.appiconset/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/ios/MyDeviceAI/Images.xcassets/AppIcon.appiconset/Icon-60@2x.png -------------------------------------------------------------------------------- /ios/MyDeviceAI/Images.xcassets/AppIcon.appiconset/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/ios/MyDeviceAI/Images.xcassets/AppIcon.appiconset/Icon-60@3x.png -------------------------------------------------------------------------------- /ios/MyDeviceAI/Images.xcassets/AppIcon.appiconset/Icon-Notification@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/ios/MyDeviceAI/Images.xcassets/AppIcon.appiconset/Icon-Notification@3x.png -------------------------------------------------------------------------------- /ios/MyDeviceAI/Images.xcassets/AppIcon.appiconset/Icon-Small-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/ios/MyDeviceAI/Images.xcassets/AppIcon.appiconset/Icon-Small-40.png -------------------------------------------------------------------------------- /ios/MyDeviceAI/Images.xcassets/AppIcon.appiconset/Icon-Small-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/ios/MyDeviceAI/Images.xcassets/AppIcon.appiconset/Icon-Small-40@2x.png -------------------------------------------------------------------------------- /ios/MyDeviceAI/Images.xcassets/AppIcon.appiconset/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/ios/MyDeviceAI/Images.xcassets/AppIcon.appiconset/Icon-Small@2x.png -------------------------------------------------------------------------------- /ios/MyDeviceAI/Images.xcassets/AppIcon.appiconset/Icon-Small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/ios/MyDeviceAI/Images.xcassets/AppIcon.appiconset/Icon-Small@3x.png -------------------------------------------------------------------------------- /ios/MyDeviceAI/Images.xcassets/AppIcon.appiconset/MyDeviceAI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/ios/MyDeviceAI/Images.xcassets/AppIcon.appiconset/MyDeviceAI.png -------------------------------------------------------------------------------- /ios/MyDeviceAI/Images.xcassets/AppIconMain.appiconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/ios/MyDeviceAI/Images.xcassets/AppIconMain.appiconset/1024.png -------------------------------------------------------------------------------- /ios/MyDeviceAI/Images.xcassets/AppIconMain.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/ios/MyDeviceAI/Images.xcassets/AppIconMain.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/MyDeviceAI/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/ios/MyDeviceAI/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/MyDeviceAI/Images.xcassets/MyDeviceAI.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/ios/MyDeviceAI/Images.xcassets/MyDeviceAI.imageset/Contents.json -------------------------------------------------------------------------------- /ios/MyDeviceAI/Images.xcassets/MyDeviceAI.imageset/MyDeviceAI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/ios/MyDeviceAI/Images.xcassets/MyDeviceAI.imageset/MyDeviceAI.png -------------------------------------------------------------------------------- /ios/MyDeviceAI/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/ios/MyDeviceAI/Info.plist -------------------------------------------------------------------------------- /ios/MyDeviceAI/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/ios/MyDeviceAI/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/MyDeviceAI/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/ios/MyDeviceAI/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /ios/MyDeviceAI/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/ios/MyDeviceAI/main.m -------------------------------------------------------------------------------- /ios/MyDeviceAITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/ios/MyDeviceAITests/Info.plist -------------------------------------------------------------------------------- /ios/MyDeviceAITests/MyDeviceAITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/ios/MyDeviceAITests/MyDeviceAITests.m -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | preset: 'react-native', 3 | }; 4 | -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/package.json -------------------------------------------------------------------------------- /prob.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/prob.diff -------------------------------------------------------------------------------- /src/ChatUI.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/src/ChatUI.tsx -------------------------------------------------------------------------------- /src/Styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/src/Styles.ts -------------------------------------------------------------------------------- /src/components/ConnectionDropdownModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/src/components/ConnectionDropdownModal.tsx -------------------------------------------------------------------------------- /src/components/ConnectionStatusIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/src/components/ConnectionStatusIcon.tsx -------------------------------------------------------------------------------- /src/components/EmptyState.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/src/components/EmptyState.tsx -------------------------------------------------------------------------------- /src/components/SearchingIndicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/src/components/SearchingIndicator.tsx -------------------------------------------------------------------------------- /src/components/StreamingThinkingIndicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/src/components/StreamingThinkingIndicator.tsx -------------------------------------------------------------------------------- /src/components/ThinkingContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/src/components/ThinkingContent.tsx -------------------------------------------------------------------------------- /src/components/ThumbnailGallery.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/src/components/ThumbnailGallery.tsx -------------------------------------------------------------------------------- /src/components/TypingIndicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/src/components/TypingIndicator.tsx -------------------------------------------------------------------------------- /src/connection/RemoteConnectionContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/src/connection/RemoteConnectionContext.tsx -------------------------------------------------------------------------------- /src/connection/RemoteConnectionManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/src/connection/RemoteConnectionManager.ts -------------------------------------------------------------------------------- /src/constants/SuggestedPrompts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/src/constants/SuggestedPrompts.ts -------------------------------------------------------------------------------- /src/db/DatabaseContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/src/db/DatabaseContext.tsx -------------------------------------------------------------------------------- /src/db/DatabaseHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/src/db/DatabaseHelper.ts -------------------------------------------------------------------------------- /src/drawer/CustomDrawerContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/src/drawer/CustomDrawerContent.tsx -------------------------------------------------------------------------------- /src/images/MyDeviceAI-NoBG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/src/images/MyDeviceAI-NoBG.png -------------------------------------------------------------------------------- /src/images/MyDeviceAI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/src/images/MyDeviceAI.png -------------------------------------------------------------------------------- /src/model/Message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/src/model/Message.ts -------------------------------------------------------------------------------- /src/screens/AdvancedSettingsScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/src/screens/AdvancedSettingsScreen.tsx -------------------------------------------------------------------------------- /src/screens/ChatScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/src/screens/ChatScreen.tsx -------------------------------------------------------------------------------- /src/screens/ContextSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/src/screens/ContextSettings.tsx -------------------------------------------------------------------------------- /src/screens/ImageGalleryScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/src/screens/ImageGalleryScreen.tsx -------------------------------------------------------------------------------- /src/screens/SettingsScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/src/screens/SettingsScreen.tsx -------------------------------------------------------------------------------- /src/search/BraveSearch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/src/search/BraveSearch.ts -------------------------------------------------------------------------------- /src/search/SearXNG.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/src/search/SearXNG.ts -------------------------------------------------------------------------------- /src/types/RemoteConnection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/src/types/RemoteConnection.ts -------------------------------------------------------------------------------- /src/utils/ArrayUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/src/utils/ArrayUtils.ts -------------------------------------------------------------------------------- /src/utils/ToastUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/src/utils/ToastUtils.ts -------------------------------------------------------------------------------- /src/utils/Utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/src/utils/Utils.ts -------------------------------------------------------------------------------- /src/utils/textdecoder/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/src/utils/textdecoder/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/MyDeviceAI/HEAD/tsconfig.json --------------------------------------------------------------------------------