iaurora 1.0.25 → 1.0.27

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 CHANGED
@@ -1,22 +1,8 @@
1
1
  <p align="center">
2
- <svg viewBox="0 0 32 32" width="96" height="96" fill="none" xmlns="http://www.w3.org/2000/svg">
3
- <path d="M4 20 C8 12, 14 10, 16 16 C18 22, 24 20, 28 12" stroke="#6AD87A" stroke-width="1.8" stroke-linecap="round" fill="none" opacity="0.5" stroke-dasharray="40" stroke-dashoffset="40">
4
- <animate attributeName="stroke-dashoffset" from="40" to="0" dur="1.8s" fill="freeze"/>
5
- </path>
6
- <path d="M2 24 C8 14, 14 8, 16 18 C18 28, 24 22, 30 14" stroke="#6AD87A" stroke-width="1.8" stroke-linecap="round" fill="none" opacity="0.35" stroke-dasharray="50" stroke-dashoffset="50">
7
- <animate attributeName="stroke-dashoffset" from="50" to="0" dur="2.2s" begin="0.3s" fill="freeze"/>
8
- </path>
9
- <path d="M6 16 C10 10, 14 12, 16 14 C18 16, 22 14, 26 10" stroke="#6AD87A" stroke-width="1.8" stroke-linecap="round" fill="none" opacity="0.65" stroke-dasharray="35" stroke-dashoffset="35">
10
- <animate attributeName="stroke-dashoffset" from="35" to="0" dur="1.6s" begin="0.6s" fill="freeze"/>
11
- </path>
12
- <circle cx="16" cy="16" r="2.2" fill="#6AD87A">
13
- <animate attributeName="opacity" values="1;0.5;1" dur="2.5s" repeatCount="indefinite"/>
14
- <animate attributeName="r" values="2.2;2.8;2.2" dur="2.5s" repeatCount="indefinite"/>
15
- </circle>
16
- </svg>
2
+ <img src="https://raw.githubusercontent.com/aurorallm/aurora/main/docs/assets/aurora-logo-animated.svg" width="96" height="96" alt="Aurora Logo">
17
3
  </p>
18
4
 
19
- <h1 align="center">Aurora Gateway</h1>
5
+ <h1 align="center">Aurora Gateway OSS — Open-Source AI Gateway | OpenAI &amp; Anthropic Compatible API</h1>
20
6
 
21
7
  <p align="center">
22
8
  <a href="LICENSE"><img src="https://img.shields.io/github/license/aurorallm/aurora" alt="License" height="20"></a>
@@ -26,21 +12,20 @@
26
12
  <a href="https://github.com/aurorallm/aurora"><img src="https://img.shields.io/github/stars/aurorallm/aurora" alt="GitHub Stars" height="20"></a>
27
13
  <a href="https://discord.gg/YJPrfR9uh"><img src="https://dcbadge.limes.pink/api/server/https://discord.gg/YJPrfR9uh?style=flat" alt="Discord" height="20"></a>
28
14
  <img src="https://img.shields.io/docker/pulls/aurorahq/aurora" alt="Docker Pulls" height="20">
29
- <a href="https://artifacthub.io/packages/search?repo=aurora"><img src="https://img.shields.io/endpoint?url=https://artifacthub.io/badge/repository/aurora" alt="Artifact Hub" height="20"></a>
15
+ <a href="https://artifacthub.io/packages/search?repo=aurora-gateway"><img src="https://img.shields.io/endpoint?url=https://artifacthub.io/badge/repository/aurora-gateway" alt="Artifact Hub" height="20"></a>
30
16
  </p>
31
17
 
32
- ## One gateway. Every provider. Open source.
18
+ <p align="center"><b>Open-source LLM gateway (OSS edition). One API for every AI provider.</b></p>
33
19
 
34
- Route AI traffic through a single OpenAI- and Anthropic-compatible API.
35
- Self-hosted. No vendor lock-in. Full source visibility.
20
+ <p align="center">Self-hosted. No vendor lock-in. 30+ LLM providers supported.</p>
36
21
 
37
22
  <a href="https://raw.githubusercontent.com/aurorallm/aurora/main/docs/assets/dashboard-overview.png">
38
- <img src="https://raw.githubusercontent.com/aurorallm/aurora/main/docs/assets/dashboard-overview.png" alt="Aurora dashboard" width="100%">
23
+ <img src="https://raw.githubusercontent.com/aurorallm/aurora/main/docs/assets/dashboard-overview.png" alt="Aurora open-source AI gateway admin dashboard showing provider stats and usage metrics" width="100%">
39
24
  </a>
40
25
 
41
26
  ## Quick Start
42
27
 
43
- **Go from zero to running in under a minute.**
28
+ Start routing AI traffic in 60 seconds.
44
29
 
45
30
  <img src="https://raw.githubusercontent.com/aurorallm/aurora/main/docs/assets/install.gif" alt="Install demo" style="max-width:100%;border-radius:12px;margin:12px 0;">
46
31
 
@@ -82,7 +67,39 @@ curl http://localhost:8080/v1/chat/completions \
82
67
 
83
68
  The dashboard is at `http://localhost:8080/admin/dashboard`.
84
69
 
85
- **Setup guides:** [npm](https://www.npmjs.com/package/iaurora) · [Docker](https://hub.docker.com/r/aurorahq/aurora) · [Source](https://github.com/aurorallm/aurora)
70
+ **Setup guides:** [npm](https://www.npmjs.com/package/iaurora) · [Docker](https://hub.docker.com/r/aurorahq/aurora) · [Helm/Kubernetes](https://github.com/aurorallm/aurora/tree/main/helm) · [Source](https://github.com/aurorallm/aurora)
71
+
72
+ ---
73
+
74
+ ## Kubernetes (Helm)
75
+
76
+ Deploy on any Kubernetes cluster with the [Helm chart](https://github.com/aurorallm/aurora/tree/main/helm).
77
+
78
+ ```bash
79
+ # Quick dev — Groq, no Redis, no auth
80
+ helm install aurora ./helm \
81
+ --namespace aurora --create-namespace \
82
+ --set image.tag=1.0.25 \
83
+ --set providers.groq.apiKey="gsk_your_key_here" \
84
+ --set providers.groq.enabled=true \
85
+ --set redis.enabled=false \
86
+ --set auth.masterKey=""
87
+ ```
88
+
89
+ ```bash
90
+ # Production — multiple providers, auth, Redis
91
+ helm upgrade --install aurora ./helm \
92
+ --namespace aurora --create-namespace \
93
+ --set image.tag=1.0.25 \
94
+ --set auth.masterKey="your-secure-key" \
95
+ --set providers.openai.apiKey="sk-..." \
96
+ --set providers.openai.enabled=true \
97
+ --set providers.anthropic.apiKey="sk-ant-..." \
98
+ --set providers.anthropic.enabled=true \
99
+ --set redis.enabled=true
100
+ ```
101
+
102
+ **Full Helm documentation:** [helm/README.md](https://github.com/aurorallm/aurora/tree/main/helm/README.md)
86
103
 
87
104
  ---
88
105
 
@@ -98,8 +115,8 @@ The Enterprise edition is a separate distribution with a signed license.
98
115
  </a>
99
116
 
100
117
  <div align="center">
101
- <a href="https://discord.com/invite/YJPrfR9uh">
102
- <img src="https://img.shields.io/badge/Contact%20Us-Enterprise-5865F2?style=for-the-badge&logo=discord&logoColor=white" alt="Contact Us" width="200" style="margin-top:5px;"/>
118
+ <a href="mailto:team.auroragate@gmail.com?subject=Aurora%20Enterprise%20Inquiry" style="display:block;margin-top:5px;">
119
+ <img src="https://img.shields.io/badge/Email%20Us-Enterprise-5865F2?style=for-the-badge&logo=gmail&logoColor=white" alt="Email Aurora Enterprise" width="200"/>
103
120
  </a>
104
121
  </div>
105
122
 
package/bin/aurora.exe CHANGED
Binary file
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.0.25",
2
+ "version": "1.0.27",
3
3
  "author": "Aurora Gateway",
4
4
  "license": "Apache-2.0",
5
5
  "files": [