zuplo 7.1.2 → 7.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.
@@ -36,9 +36,10 @@ To add a custom AI provider to your Zuplo AI Gateway, follow these steps:
36
36
  1. Replace the pre-filled **Provider Name** (`custom`) with a name for your
37
37
  provider. The name is how apps reference the provider's models: a custom
38
38
  provider named `acme-llm` serves models as `acme-llm/<model>`. Names are
39
- lowercase (letters, numbers, dots, dashes, and underscores), and the built-in
40
- provider names (`openai`, `anthropic`, `google`, `mistral`, `xai`,
41
- `moonshot`) are reserved. The name is permanent after creation.
39
+ lowercase (letters, numbers, dots, dashes, and underscores), and Zuplo
40
+ reserves the built-in provider names (`openai`, `anthropic`, `google`,
41
+ `mistral`, `xai`, `moonshot`, `zuplo`, `zuplodemo`, `zuplo-demo`). The name
42
+ is permanent after creation.
42
43
 
43
44
  1. Specify the API URL of the custom provider you are using.
44
45
 
@@ -16,7 +16,8 @@ connecting a Git repository to making your first LLM request through Zuplo.
16
16
  - An account with a supported Git provider that can create repositories (this
17
17
  guide uses GitHub)
18
18
  - An API key for at least one LLM provider (OpenAI, Anthropic, Google, Mistral,
19
- xAI, etc.)
19
+ xAI, etc.)—or none at all, if you start with the free
20
+ [Zuplo Demo provider](./providers.mdx#zuplo-demo)
20
21
 
21
22
  <Stepper>
22
23
 
@@ -34,7 +34,9 @@ To add a new AI provider to your Zuplo AI Gateway, follow these steps:
34
34
 
35
35
  1. Enter the API Key for the selected provider. For instructions on how to
36
36
  create an API key for each provider see the
37
- [provider documentation](./providers.mdx).
37
+ [provider documentation](./providers.mdx). The
38
+ [Zuplo Demo provider](./providers.mdx#zuplo-demo) asks for no API key—your
39
+ gateway authenticates to the demo service itself.
38
40
 
39
41
  1. Select the model or models you want to use with this provider. The available
40
42
  models will depend on the selected provider. This can be changed later.
@@ -19,6 +19,7 @@ Zuplo currently supports the following AI providers:
19
19
  - Google
20
20
  - Mistral
21
21
  - xAI (Grok)
22
+ - [Zuplo Demo](#zuplo-demo)—a free, keyless provider for trying the gateway
22
23
  - OpenAI-compatible [Custom Providers](./custom-providers.mdx) (such as Qwen,
23
24
  Kimi, etc)
24
25
 
@@ -31,6 +32,7 @@ The following capabilities are supported across providers:
31
32
  | Google | ✅ | ✅ | ❌ | ❌ |
32
33
  | Mistral | ✅ | ✅ | ❌ | ❌ |
33
34
  | xAI | ✅ | ✅ | ❌ | ❌ |
35
+ | Zuplo Demo | ✅ | ❌ | ❌ | ❌ |
34
36
  | OpenAI-compatible (Custom) | ✅ | ✅ | ❌ | ❌ |
35
37
 
36
38
  **Responses** is the OpenAI Responses API (`/v1/responses`), and **Messages** is
@@ -43,6 +45,28 @@ Apps reference a provider's models as `providerName/model`—for example
43
45
  name you give the provider configuration. See the
44
46
  [Universal API](./universal-api.mdx).
45
47
 
48
+ ## Zuplo Demo
49
+
50
+ **Zuplo Demo** is a free provider that Zuplo operates so you can try the AI
51
+ Gateway without a provider account. Add it like any other provider—see
52
+ [Managing Providers](./managing-providers.mdx)—but skip the API key: the dialog
53
+ doesn't ask for one, because your gateway authenticates to the demo service
54
+ itself.
55
+
56
+ The provider serves three demo persona models as chat completions, at no cost:
57
+
58
+ - `zuplodemo/pirate`
59
+ - `zuplodemo/wizard`
60
+ - `zuplodemo/space-cowboy`
61
+
62
+ :::caution{title="Not for production use"}
63
+
64
+ Zuplo Demo has daily per-account limits—plenty for exploring the gateway and
65
+ demos, but not for real traffic. Swap in a keyed provider such as OpenAI or
66
+ Anthropic before going live.
67
+
68
+ :::
69
+
46
70
  If you need support for additional providers or capabilities, please contact us
47
71
  at [support@zuplo.com](mailto:support@zuplo.com). We're continually working to
48
72
  add support for more providers based on customer demand.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zuplo",
3
- "version": "7.1.2",
3
+ "version": "7.1.3",
4
4
  "type": "module",
5
5
  "description": "The programmable API Gateway",
6
6
  "author": "Zuplo, Inc.",
@@ -19,9 +19,9 @@
19
19
  "zuplo": "zuplo.js"
20
20
  },
21
21
  "dependencies": {
22
- "@zuplo/cli": "7.1.2",
23
- "@zuplo/core": "7.1.2",
24
- "@zuplo/runtime": "7.1.2",
25
- "@zuplo/test": "7.1.2"
22
+ "@zuplo/cli": "7.1.3",
23
+ "@zuplo/core": "7.1.3",
24
+ "@zuplo/runtime": "7.1.3",
25
+ "@zuplo/test": "7.1.3"
26
26
  }
27
27
  }