iaurora 1.0.19 → 1.0.21

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 (2) hide show
  1. package/README.md +16 -15
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,17 +1,18 @@
1
1
  <p align="center">
2
2
  <svg viewBox="0 0 32 32" width="96" height="96" fill="none" xmlns="http://www.w3.org/2000/svg">
3
- <style>
4
- .w1 { stroke-dasharray: 40; stroke-dashoffset: 40; animation: draw 1.8s ease forwards; }
5
- .w2 { stroke-dasharray: 50; stroke-dashoffset: 50; animation: draw 2.2s ease 0.3s forwards; }
6
- .w3 { stroke-dasharray: 35; stroke-dashoffset: 35; animation: draw 1.6s ease 0.6s forwards; }
7
- .dot { animation: pulse 2.5s ease-in-out infinite; }
8
- @keyframes draw { to { stroke-dashoffset: 0; } }
9
- @keyframes pulse { 0%,100% { opacity: 1; transform-origin: 16px 16px; } 50% { opacity: 0.5; r: 2.8; } }
10
- </style>
11
- <path class="w1" 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"/>
12
- <path class="w2" 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"/>
13
- <path class="w3" 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"/>
14
- <circle class="dot" cx="16" cy="16" r="2.2" fill="#6AD87A"/>
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>
15
16
  </svg>
16
17
  </p>
17
18
 
@@ -24,7 +25,7 @@
24
25
  <a href="https://codecov.io/gh/aurorallm/aurora"><img src="https://codecov.io/gh/aurorallm/aurora/branch/main/graph/badge.svg" alt="codecov" height="20"></a>
25
26
  <a href="https://github.com/aurorallm/aurora"><img src="https://img.shields.io/github/stars/aurorallm/aurora" alt="GitHub Stars" height="20"></a>
26
27
  <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>
27
- <img src="https://img.shields.io/docker/pulls/aurorallm/aurora" alt="Docker Pulls" height="20">
28
+ <img src="https://img.shields.io/docker/pulls/aurorahq/aurora" alt="Docker Pulls" height="20">
28
29
  <a href="https://app.getpostman.com/run-collection/31642484-2ba0e658-4dcd-49f4-845a-0c7ed745b916?action=collection%2Ffork&source=rip_markdown&collection-url=entityId%3D31642484-2ba0e658-4dcd-49f4-845a-0c7ed745b916%26entityType%3Dcollection%26workspaceId%3D63e853c8-9aec-477f-909c-7f02f543150e"><img src="https://run.pstmn.io/button.svg" alt="Run In Postman" height="20"></a>
29
30
  <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>
30
31
  </p>
@@ -52,7 +53,7 @@ npm install -g iaurora
52
53
  docker run --rm -p 8080:8080 \
53
54
  -e AURORA_MASTER_KEY="your-key" \
54
55
  -e GROQ_API_KEY="gsk_..." \
55
- aurorallm/aurora
56
+ aurorahq/aurora
56
57
  ```
57
58
 
58
59
  **2. Init and start**
@@ -74,7 +75,7 @@ curl http://localhost:8080/v1/chat/completions \
74
75
 
75
76
  The dashboard is at `http://localhost:8080/admin/dashboard`.
76
77
 
77
- **Setup guides:** [npm](https://www.npmjs.com/package/iaurora) · [Docker](https://hub.docker.com/r/aurorallm/aurora) · [Source](https://github.com/aurorallm/aurora)
78
+ **Setup guides:** [npm](https://www.npmjs.com/package/iaurora) · [Docker](https://hub.docker.com/r/aurorahq/aurora) · [Source](https://github.com/aurorallm/aurora)
78
79
 
79
80
  ---
80
81
 
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.0.19",
2
+ "version": "1.0.21",
3
3
  "author": "SantiagoDePolonia",
4
4
  "license": "Apache-2.0",
5
5
  "files": [