diff --git a/mobile/README.md b/mobile/README.md index 03178d486..f5bf719c3 100644 --- a/mobile/README.md +++ b/mobile/README.md @@ -80,4 +80,10 @@ This example shows how to use ORT to do speech recognition using the [Whisper](h This is an example React Native Expo project which demonstrates basic usage of ORT such as loading onnx models and creating inference sessions, etc. -- [React Native Basic Sample](examples/React_Native/ort-rn-basic-usage/) \ No newline at end of file +- [React Native Basic Sample](examples/React_Native/ort-rn-basic-usage/) + +### Phi-3 Sample + +This is a basic Phi-3 (Android for now) example application with ONNX Runtime mobile and ONNX Runtime Generate() API with support for efficiently running generative AI models. This app demonstrates the usage of phi-3 model in a simple question answering chatbot mode. + +- [Android Phi-3](examples/phi-3/android) diff --git a/mobile/examples/phi-3/android/app/src/main/jniLibs/arm64-v8a/libonnxruntime-genai.so b/mobile/examples/phi-3/android/app/src/main/jniLibs/arm64-v8a/libonnxruntime-genai.so old mode 100644 new mode 100755 index 3a360fcce..f5e6e6e05 Binary files a/mobile/examples/phi-3/android/app/src/main/jniLibs/arm64-v8a/libonnxruntime-genai.so and b/mobile/examples/phi-3/android/app/src/main/jniLibs/arm64-v8a/libonnxruntime-genai.so differ diff --git a/mobile/examples/phi-3/android/app/src/main/jniLibs/arm64-v8a/libonnxruntime.so b/mobile/examples/phi-3/android/app/src/main/jniLibs/arm64-v8a/libonnxruntime.so index 14d4c5faa..c14976892 100644 Binary files a/mobile/examples/phi-3/android/app/src/main/jniLibs/arm64-v8a/libonnxruntime.so and b/mobile/examples/phi-3/android/app/src/main/jniLibs/arm64-v8a/libonnxruntime.so differ diff --git a/mobile/examples/phi-3/android/app/src/main/jniLibs/arm64-v8a/libonnxruntime4j_jni.so b/mobile/examples/phi-3/android/app/src/main/jniLibs/arm64-v8a/libonnxruntime4j_jni.so index ac975152d..f75540a19 100644 Binary files a/mobile/examples/phi-3/android/app/src/main/jniLibs/arm64-v8a/libonnxruntime4j_jni.so and b/mobile/examples/phi-3/android/app/src/main/jniLibs/arm64-v8a/libonnxruntime4j_jni.so differ diff --git a/mobile/examples/phi-3/android/app/src/main/jniLibs/x86_64/libonnxruntime-genai.so b/mobile/examples/phi-3/android/app/src/main/jniLibs/x86_64/libonnxruntime-genai.so old mode 100644 new mode 100755 index 24828ccc0..f986355ab Binary files a/mobile/examples/phi-3/android/app/src/main/jniLibs/x86_64/libonnxruntime-genai.so and b/mobile/examples/phi-3/android/app/src/main/jniLibs/x86_64/libonnxruntime-genai.so differ diff --git a/mobile/examples/phi-3/android/app/src/main/jniLibs/x86_64/libonnxruntime.so b/mobile/examples/phi-3/android/app/src/main/jniLibs/x86_64/libonnxruntime.so index 4f4b6d070..c14976892 100644 Binary files a/mobile/examples/phi-3/android/app/src/main/jniLibs/x86_64/libonnxruntime.so and b/mobile/examples/phi-3/android/app/src/main/jniLibs/x86_64/libonnxruntime.so differ diff --git a/mobile/examples/phi-3/android/app/src/main/jniLibs/x86_64/libonnxruntime4j_jni.so b/mobile/examples/phi-3/android/app/src/main/jniLibs/x86_64/libonnxruntime4j_jni.so index a34325a94..f75540a19 100644 Binary files a/mobile/examples/phi-3/android/app/src/main/jniLibs/x86_64/libonnxruntime4j_jni.so and b/mobile/examples/phi-3/android/app/src/main/jniLibs/x86_64/libonnxruntime4j_jni.so differ