rn-ai 0.1.1 → 0.1.3
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 +2 -2
- package/cli.js +5 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# React Native AI CLI
|
|
2
2
|
|
|
3
|
-
Full stack mobile framework for building cross-platform mobile AI apps supporting
|
|
3
|
+
Full stack mobile framework for building cross-platform mobile AI apps supporting LLM real-time / streaming text and chat UIs, image services and natural langauge to images with multiple models, and image processing.
|
|
4
4
|
|
|
5
5
|

|
|
6
6
|
|
|
@@ -8,11 +8,11 @@ Full stack mobile framework for building cross-platform mobile AI apps supportin
|
|
|
8
8
|
|
|
9
9
|
- LLM support for [OpenAI](https://openai.com/) ChatGPT, [Anthropic](https://anthropic.com) Claude, [Cohere](https://cohere.com/) and Cohere Web
|
|
10
10
|
- An array of image models provided by [Fal.ai](https://www.fal.ai/)
|
|
11
|
-
- Image processing with [ByteScale](https://bytescale.com/)
|
|
12
11
|
- Real-time / streaming responses from all providers
|
|
13
12
|
- OpenAI Assistants including code interpreter and retrieval
|
|
14
13
|
- Server proxy to easily enable authentication and authorization with auth provider of choice.
|
|
15
14
|
- Theming (comes out of the box with 4 themes) - easily add additional themes with just a few lines of code.
|
|
15
|
+
- Image processing with [ByteScale](https://bytescale.com/)
|
|
16
16
|
|
|
17
17
|

|
|
18
18
|
|
package/cli.js
CHANGED
|
@@ -91,19 +91,19 @@ EXPO_PUBLIC_PROD_API_URL="https://staging.example.com"
|
|
|
91
91
|
# environment, either PRODUCTION or DEVELOPMENT
|
|
92
92
|
ENVIRONMENT="PRODUCTION"
|
|
93
93
|
|
|
94
|
-
# ByteScale
|
|
94
|
+
# ByteScale secret https://bytescale.com
|
|
95
95
|
BYTESCALE_API_KEY=""
|
|
96
96
|
|
|
97
|
-
# OpenAI
|
|
97
|
+
# OpenAI https://platform.openai.com
|
|
98
98
|
OPENAI_API_KEY=""
|
|
99
99
|
|
|
100
|
-
# Anthropic
|
|
100
|
+
# Anthropic https://console.anthropic.com
|
|
101
101
|
ANTHROPIC_API_KEY=""
|
|
102
102
|
|
|
103
|
-
# Cohere
|
|
103
|
+
# Cohere https://cohere.com
|
|
104
104
|
COHERE_API_KEY=""
|
|
105
105
|
|
|
106
|
-
# FAL
|
|
106
|
+
# FAL AI https://www.fal.ai
|
|
107
107
|
FAL_API_KEY=""
|
|
108
108
|
`
|
|
109
109
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rn-ai",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
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",
|