├── .bundle └── config ├── .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 │ │ │ └── navedmerchant │ │ │ └── jotitnow │ │ │ ├── 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-night │ │ └── colors.xml │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── app.json ├── assets ├── logo.png ├── screenshot1.png ├── screenshot2.png └── screenshot3.png ├── babel.config.js ├── components ├── ChatMessage.tsx └── NoteItem.tsx ├── index.js ├── ios ├── .xcode.env ├── JotItNow.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── JotItNow.xcscheme ├── JotItNow.xcworkspace │ └── contents.xcworkspacedata ├── JotItNow │ ├── AppDelegate.h │ ├── AppDelegate.mm │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── 1024.png │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── SplashScreenBackground.colorset │ │ │ └── Contents.json │ ├── Info.plist │ ├── JotItNow-Bridging-Header.h │ ├── JotItNow.entitlements │ ├── LaunchScreen.storyboard │ ├── PrivacyInfo.xcprivacy │ ├── main.m │ └── noop-file.swift ├── JotItNowTests │ ├── Info.plist │ └── JotItNowTests.m ├── Podfile └── Podfile.lock ├── jest.config.js ├── metro.config.js ├── package.json ├── screens ├── ChatScreen.tsx ├── NoteListScreen.tsx ├── RecordScreen.tsx ├── Styles.ts └── SummarizeScreen.tsx ├── services ├── database.ts ├── llama.ts └── vector.ts ├── store ├── chatSlice.ts ├── noteSlice.ts ├── store.ts └── uiSlice.ts └── tsconfig.json /.bundle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/JotItNow/HEAD/.bundle/config -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native', 4 | }; 5 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/JotItNow/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/JotItNow/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/JotItNow/HEAD/App.tsx -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/JotItNow/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/JotItNow/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/JotItNow/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/JotItNow/HEAD/__tests__/App.test.tsx -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/JotItNow/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/JotItNow/HEAD/android/app/debug.keystore -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/JotItNow/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/JotItNow/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/JotItNow/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/navedmerchant/jotitnow/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/JotItNow/HEAD/android/app/src/main/java/com/navedmerchant/jotitnow/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/java/com/navedmerchant/jotitnow/MainApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/JotItNow/HEAD/android/app/src/main/java/com/navedmerchant/jotitnow/MainApplication.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/JotItNow/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/JotItNow/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/JotItNow/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/JotItNow/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/JotItNow/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/JotItNow/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/JotItNow/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/JotItNow/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/JotItNow/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/JotItNow/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/JotItNow/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/colors.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/JotItNow/HEAD/android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/JotItNow/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/JotItNow/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/JotItNow/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/JotItNow/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/JotItNow/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/JotItNow/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/JotItNow/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/JotItNow/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/JotItNow/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/JotItNow/HEAD/app.json -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/JotItNow/HEAD/assets/logo.png -------------------------------------------------------------------------------- /assets/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/JotItNow/HEAD/assets/screenshot1.png -------------------------------------------------------------------------------- /assets/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/JotItNow/HEAD/assets/screenshot2.png -------------------------------------------------------------------------------- /assets/screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/JotItNow/HEAD/assets/screenshot3.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/JotItNow/HEAD/babel.config.js -------------------------------------------------------------------------------- /components/ChatMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/JotItNow/HEAD/components/ChatMessage.tsx -------------------------------------------------------------------------------- /components/NoteItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/JotItNow/HEAD/components/NoteItem.tsx -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/JotItNow/HEAD/index.js -------------------------------------------------------------------------------- /ios/.xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/JotItNow/HEAD/ios/.xcode.env -------------------------------------------------------------------------------- /ios/JotItNow.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/JotItNow/HEAD/ios/JotItNow.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/JotItNow.xcodeproj/xcshareddata/xcschemes/JotItNow.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/JotItNow/HEAD/ios/JotItNow.xcodeproj/xcshareddata/xcschemes/JotItNow.xcscheme -------------------------------------------------------------------------------- /ios/JotItNow.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/JotItNow/HEAD/ios/JotItNow.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/JotItNow/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/JotItNow/HEAD/ios/JotItNow/AppDelegate.h -------------------------------------------------------------------------------- /ios/JotItNow/AppDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/JotItNow/HEAD/ios/JotItNow/AppDelegate.mm -------------------------------------------------------------------------------- /ios/JotItNow/Images.xcassets/AppIcon.appiconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/JotItNow/HEAD/ios/JotItNow/Images.xcassets/AppIcon.appiconset/1024.png -------------------------------------------------------------------------------- /ios/JotItNow/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/JotItNow/HEAD/ios/JotItNow/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/JotItNow/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/JotItNow/HEAD/ios/JotItNow/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/JotItNow/Images.xcassets/SplashScreenBackground.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/JotItNow/HEAD/ios/JotItNow/Images.xcassets/SplashScreenBackground.colorset/Contents.json -------------------------------------------------------------------------------- /ios/JotItNow/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/JotItNow/HEAD/ios/JotItNow/Info.plist -------------------------------------------------------------------------------- /ios/JotItNow/JotItNow-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/JotItNow/HEAD/ios/JotItNow/JotItNow-Bridging-Header.h -------------------------------------------------------------------------------- /ios/JotItNow/JotItNow.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/JotItNow/HEAD/ios/JotItNow/JotItNow.entitlements -------------------------------------------------------------------------------- /ios/JotItNow/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/JotItNow/HEAD/ios/JotItNow/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/JotItNow/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/JotItNow/HEAD/ios/JotItNow/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /ios/JotItNow/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/JotItNow/HEAD/ios/JotItNow/main.m -------------------------------------------------------------------------------- /ios/JotItNow/noop-file.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/JotItNow/HEAD/ios/JotItNow/noop-file.swift -------------------------------------------------------------------------------- /ios/JotItNowTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/JotItNow/HEAD/ios/JotItNowTests/Info.plist -------------------------------------------------------------------------------- /ios/JotItNowTests/JotItNowTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/JotItNow/HEAD/ios/JotItNowTests/JotItNowTests.m -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/JotItNow/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/JotItNow/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | preset: 'react-native', 3 | }; 4 | -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/JotItNow/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/JotItNow/HEAD/package.json -------------------------------------------------------------------------------- /screens/ChatScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/JotItNow/HEAD/screens/ChatScreen.tsx -------------------------------------------------------------------------------- /screens/NoteListScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/JotItNow/HEAD/screens/NoteListScreen.tsx -------------------------------------------------------------------------------- /screens/RecordScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/JotItNow/HEAD/screens/RecordScreen.tsx -------------------------------------------------------------------------------- /screens/Styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/JotItNow/HEAD/screens/Styles.ts -------------------------------------------------------------------------------- /screens/SummarizeScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/JotItNow/HEAD/screens/SummarizeScreen.tsx -------------------------------------------------------------------------------- /services/database.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/JotItNow/HEAD/services/database.ts -------------------------------------------------------------------------------- /services/llama.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/JotItNow/HEAD/services/llama.ts -------------------------------------------------------------------------------- /services/vector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/JotItNow/HEAD/services/vector.ts -------------------------------------------------------------------------------- /store/chatSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/JotItNow/HEAD/store/chatSlice.ts -------------------------------------------------------------------------------- /store/noteSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/JotItNow/HEAD/store/noteSlice.ts -------------------------------------------------------------------------------- /store/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/JotItNow/HEAD/store/store.ts -------------------------------------------------------------------------------- /store/uiSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/JotItNow/HEAD/store/uiSlice.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navedmerchant/JotItNow/HEAD/tsconfig.json --------------------------------------------------------------------------------