rn-ai 0.2.6 → 0.2.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/README.md +2 -0
  2. package/cli.js +1 -0
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  Full stack framework for building cross-platform mobile AI apps supporting LLM real-time / streaming text and chat UIs, image services and natural language to images with multiple models, and image processing.
4
4
 
5
+ > Check out the video tutorial [here](https://www.youtube.com/watch?v=zf3NnTU5pr4)
6
+
5
7
  ![React Native AI](https://i.imgur.com/AOOgBM0.png)
6
8
 
7
9
  ## Features
package/cli.js CHANGED
@@ -150,6 +150,7 @@ FAL_API_KEY="${fal_api_key}"
150
150
  await execa('git', ['clone', repoUrl, appName])
151
151
  try {
152
152
  await execa('rm', ['-r', `${appName}/cli`])
153
+ await execa('rm', ['-rf', `${appName}/.git`])
153
154
  } catch (err) {}
154
155
 
155
156
  let packageJson = fs.readFileSync(`${appName}/server/package.json`, 'utf8')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rn-ai",
3
- "version": "0.2.6",
3
+ "version": "0.2.8",
4
4
  "description": "Full stack mobile framework for building cross-platform mobile AI apps supporting image processing, real-time / streaming text and chat UIs, and image uploads with multiple service providers.",
5
5
  "type": "module",
6
6
  "bin": "cli.js",