Jawad Ali Yousafzai commited on
Commit
a84e269
·
2 Parent(s): e0309a2 601fb1d

Merge remote changes with local files

Browse files
Files changed (4) hide show
  1. .gitattributes +37 -0
  2. .gitignore +26 -0
  3. README.md +84 -0
  4. package.json +42 -1
.gitattributes CHANGED
@@ -1,8 +1,45 @@
 
1
  Rhubarb-Lip-Sync-1.14.0-Windows/extras/EsotericSoftwareSpine/*.jar filter=lfs diff=lfs merge=lfs -text
2
  Rhubarb-Lip-Sync-1.14.0-Windows/res/sphinx/acoustic-model/* filter=lfs diff=lfs merge=lfs -text
3
  Rhubarb-Lip-Sync-1.14.0-Windows/res/sphinx/en-us.lm.bin filter=lfs diff=lfs merge=lfs -text
4
  *.jar filter=lfs diff=lfs merge=lfs -text
5
  *.bin filter=lfs diff=lfs merge=lfs -text
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6
  Rhubarb-Lip-Sync-1.14.0-Windows/** filter=lfs diff=lfs merge=lfs -text
7
  *.wav filter=lfs diff=lfs merge=lfs -text
8
  *.fbx filter=lfs diff=lfs merge=lfs -text
 
1
+ <<<<<<< HEAD
2
  Rhubarb-Lip-Sync-1.14.0-Windows/extras/EsotericSoftwareSpine/*.jar filter=lfs diff=lfs merge=lfs -text
3
  Rhubarb-Lip-Sync-1.14.0-Windows/res/sphinx/acoustic-model/* filter=lfs diff=lfs merge=lfs -text
4
  Rhubarb-Lip-Sync-1.14.0-Windows/res/sphinx/en-us.lm.bin filter=lfs diff=lfs merge=lfs -text
5
  *.jar filter=lfs diff=lfs merge=lfs -text
6
  *.bin filter=lfs diff=lfs merge=lfs -text
7
+ =======
8
+ *.7z filter=lfs diff=lfs merge=lfs -text
9
+ *.arrow filter=lfs diff=lfs merge=lfs -text
10
+ *.bz2 filter=lfs diff=lfs merge=lfs -text
11
+ *.ckpt filter=lfs diff=lfs merge=lfs -text
12
+ *.ftz filter=lfs diff=lfs merge=lfs -text
13
+ *.gz filter=lfs diff=lfs merge=lfs -text
14
+ *.h5 filter=lfs diff=lfs merge=lfs -text
15
+ *.joblib filter=lfs diff=lfs merge=lfs -text
16
+ *.lfs.* filter=lfs diff=lfs merge=lfs -text
17
+ *.mlmodel filter=lfs diff=lfs merge=lfs -text
18
+ *.model filter=lfs diff=lfs merge=lfs -text
19
+ *.msgpack filter=lfs diff=lfs merge=lfs -text
20
+ *.npy filter=lfs diff=lfs merge=lfs -text
21
+ *.npz filter=lfs diff=lfs merge=lfs -text
22
+ *.onnx filter=lfs diff=lfs merge=lfs -text
23
+ *.ot filter=lfs diff=lfs merge=lfs -text
24
+ *.parquet filter=lfs diff=lfs merge=lfs -text
25
+ *.pb filter=lfs diff=lfs merge=lfs -text
26
+ *.pickle filter=lfs diff=lfs merge=lfs -text
27
+ *.pkl filter=lfs diff=lfs merge=lfs -text
28
+ *.pt filter=lfs diff=lfs merge=lfs -text
29
+ *.pth filter=lfs diff=lfs merge=lfs -text
30
+ *.rar filter=lfs diff=lfs merge=lfs -text
31
+ *.safetensors filter=lfs diff=lfs merge=lfs -text
32
+ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
+ *.tar.* filter=lfs diff=lfs merge=lfs -text
34
+ *.tar filter=lfs diff=lfs merge=lfs -text
35
+ *.tflite filter=lfs diff=lfs merge=lfs -text
36
+ *.tgz filter=lfs diff=lfs merge=lfs -text
37
+ *.wasm filter=lfs diff=lfs merge=lfs -text
38
+ *.xz filter=lfs diff=lfs merge=lfs -text
39
+ *.zip filter=lfs diff=lfs merge=lfs -text
40
+ *.zst filter=lfs diff=lfs merge=lfs -text
41
+ *tfevents* filter=lfs diff=lfs merge=lfs -text
42
+ >>>>>>> 601fb1de6c4d68f8dbc1519e0193a88cdb8675f0
43
  Rhubarb-Lip-Sync-1.14.0-Windows/** filter=lfs diff=lfs merge=lfs -text
44
  *.wav filter=lfs diff=lfs merge=lfs -text
45
  *.fbx filter=lfs diff=lfs merge=lfs -text
.gitignore CHANGED
@@ -1,3 +1,4 @@
 
1
  # Dependencies
2
  node_modules/
3
  /.pnp
@@ -66,3 +67,28 @@ Thumbs.db
66
 
67
  # Rhubarb (keep the executable but ignore temp files)
68
  Rhubarb-Lip-Sync-*/temp/
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <<<<<<< HEAD
2
  # Dependencies
3
  node_modules/
4
  /.pnp
 
67
 
68
  # Rhubarb (keep the executable but ignore temp files)
69
  Rhubarb-Lip-Sync-*/temp/
70
+ =======
71
+ # See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
72
+
73
+ # dependencies
74
+ /node_modules
75
+ /.pnp
76
+ .pnp.js
77
+
78
+ # testing
79
+ /coverage
80
+
81
+ # production
82
+ /build
83
+
84
+ # misc
85
+ .DS_Store
86
+ .env.local
87
+ .env.development.local
88
+ .env.test.local
89
+ .env.production.local
90
+
91
+ npm-debug.log*
92
+ yarn-debug.log*
93
+ yarn-error.log*
94
+ >>>>>>> 601fb1de6c4d68f8dbc1519e0193a88cdb8675f0
README.md CHANGED
@@ -1,3 +1,4 @@
 
1
  # 🤖 Talking Avatar with AI
2
 
3
  An interactive 3D talking avatar powered by AI that can have natural conversations with users. The avatar features realistic lip-sync, facial expressions, and animations.
@@ -200,3 +201,86 @@ For questions or support, please open an issue on GitHub.
200
  ---
201
 
202
  **Made with ❤️ by [Your Name]**
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <<<<<<< HEAD
2
  # 🤖 Talking Avatar with AI
3
 
4
  An interactive 3D talking avatar powered by AI that can have natural conversations with users. The avatar features realistic lip-sync, facial expressions, and animations.
 
201
  ---
202
 
203
  **Made with ❤️ by [Your Name]**
204
+ =======
205
+ ---
206
+ title: HealAvatar
207
+ emoji: 🐠
208
+ colorFrom: indigo
209
+ colorTo: red
210
+ sdk: static
211
+ pinned: false
212
+ app_build_command: npm run build
213
+ app_file: build/index.html
214
+ ---
215
+
216
+ # Getting Started with Create React App
217
+
218
+ This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
219
+
220
+ ## Available Scripts
221
+
222
+ In the project directory, you can run:
223
+
224
+ ### `npm start`
225
+
226
+ Runs the app in the development mode.\
227
+ Open [http://localhost:3000](http://localhost:3000) to view it in your browser.
228
+
229
+ The page will reload when you make changes.\
230
+ You may also see any lint errors in the console.
231
+
232
+ ### `npm test`
233
+
234
+ Launches the test runner in the interactive watch mode.\
235
+ See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.
236
+
237
+ ### `npm run build`
238
+
239
+ Builds the app for production to the `build` folder.\
240
+ It correctly bundles React in production mode and optimizes the build for the best performance.
241
+
242
+ The build is minified and the filenames include the hashes.\
243
+ Your app is ready to be deployed!
244
+
245
+ See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.
246
+
247
+ ### `npm run eject`
248
+
249
+ **Note: this is a one-way operation. Once you `eject`, you can't go back!**
250
+
251
+ If you aren't satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.
252
+
253
+ Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you're on your own.
254
+
255
+ You don't have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn't feel obligated to use this feature. However we understand that this tool wouldn't be useful if you couldn't customize it when you are ready for it.
256
+
257
+ ## Learn More
258
+
259
+ You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).
260
+
261
+ To learn React, check out the [React documentation](https://reactjs.org/).
262
+
263
+ ### Code Splitting
264
+
265
+ This section has moved here: [https://facebook.github.io/create-react-app/docs/code-splitting](https://facebook.github.io/create-react-app/docs/code-splitting)
266
+
267
+ ### Analyzing the Bundle Size
268
+
269
+ This section has moved here: [https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size](https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size)
270
+
271
+ ### Making a Progressive Web App
272
+
273
+ This section has moved here: [https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app](https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app)
274
+
275
+ ### Advanced Configuration
276
+
277
+ This section has moved here: [https://facebook.github.io/create-react-app/docs/advanced-configuration](https://facebook.github.io/create-react-app/docs/advanced-configuration)
278
+
279
+ ### Deployment
280
+
281
+ This section has moved here: [https://facebook.github.io/create-react-app/docs/deployment](https://facebook.github.io/create-react-app/docs/deployment)
282
+
283
+ ### `npm run build` fails to minify
284
+
285
+ This section has moved here: [https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify](https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify)
286
+ >>>>>>> 601fb1de6c4d68f8dbc1519e0193a88cdb8675f0
package.json CHANGED
@@ -1,4 +1,5 @@
1
  {
 
2
  "name": "digital-human",
3
  "version": "1.0.0",
4
  "main": "index.js",
@@ -16,4 +17,44 @@
16
  "nodemon": "^3.0.3",
17
  "npm-run-all": "^4.1.5"
18
  }
19
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  {
2
+ <<<<<<< HEAD
3
  "name": "digital-human",
4
  "version": "1.0.0",
5
  "main": "index.js",
 
17
  "nodemon": "^3.0.3",
18
  "npm-run-all": "^4.1.5"
19
  }
20
+ }
21
+ =======
22
+ "name": "react-template",
23
+ "version": "0.1.0",
24
+ "private": true,
25
+ "dependencies": {
26
+ "@testing-library/dom": "^10.4.0",
27
+ "@testing-library/jest-dom": "^6.6.3",
28
+ "@testing-library/react": "^16.3.0",
29
+ "@testing-library/user-event": "^13.5.0",
30
+ "react": "^19.1.0",
31
+ "react-dom": "^19.1.0",
32
+ "react-scripts": "5.0.1",
33
+ "web-vitals": "^2.1.4"
34
+ },
35
+ "scripts": {
36
+ "start": "react-scripts start",
37
+ "build": "react-scripts build",
38
+ "test": "react-scripts test",
39
+ "eject": "react-scripts eject"
40
+ },
41
+ "eslintConfig": {
42
+ "extends": [
43
+ "react-app",
44
+ "react-app/jest"
45
+ ]
46
+ },
47
+ "browserslist": {
48
+ "production": [
49
+ ">0.2%",
50
+ "not dead",
51
+ "not op_mini all"
52
+ ],
53
+ "development": [
54
+ "last 1 chrome version",
55
+ "last 1 firefox version",
56
+ "last 1 safari version"
57
+ ]
58
+ }
59
+ }
60
+ >>>>>>> 601fb1de6c4d68f8dbc1519e0193a88cdb8675f0