rn-ai 0.2.5 → 0.2.7
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.
- package/README.md +8 -2
- package/cli.js +1 -0
- package/package.json +5 -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
|

|
|
6
8
|
|
|
7
9
|
## Features
|
|
@@ -14,7 +16,7 @@ Full stack framework for building cross-platform mobile AI apps supporting LLM r
|
|
|
14
16
|
- Theming (comes out of the box with 5 themes) - easily add additional themes with just a few lines of code.
|
|
15
17
|
- Image processing with [ByteScale](https://bytescale.com/)
|
|
16
18
|
|
|
17
|
-

|
|
18
20
|
|
|
19
21
|
## Usage
|
|
20
22
|
|
|
@@ -40,4 +42,8 @@ Change into the server directory and run:
|
|
|
40
42
|
|
|
41
43
|
```sh
|
|
42
44
|
npm run dev
|
|
43
|
-
```
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
## Themes preview
|
|
48
|
+
|
|
49
|
+

|
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.
|
|
3
|
+
"version": "0.2.7",
|
|
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",
|
|
@@ -10,6 +10,10 @@
|
|
|
10
10
|
"keywords": ["AI", "OpenAI", "Anthropic", "LLM"],
|
|
11
11
|
"author": "Nader Dabit",
|
|
12
12
|
"license": "MIT",
|
|
13
|
+
"repository": {
|
|
14
|
+
"type": "git",
|
|
15
|
+
"url": "https://github.com/dabit3/react-native-ai"
|
|
16
|
+
},
|
|
13
17
|
"dependencies": {
|
|
14
18
|
"@inquirer/prompts": "^3.1.1",
|
|
15
19
|
"chalk": "^5.3.0",
|