Skip to content

Commit c6a5527

Browse files
committed
Auto-commit
1 parent a02fdd4 commit c6a5527

File tree

297 files changed

+3258
-564
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

297 files changed

+3258
-564
lines changed

.github/workflows/docs-deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ jobs:
142142
<a href="/docs/api/">🔧 API</a>
143143
<a href="/docs/developer/">💻 Developer</a>
144144
<a href="/docs/user/">👤 User Guide</a>
145-
<a href="https://github.com/helixagent/helixagent">⭐ GitHub</a>
145+
<a href="https://dev.helix.agent">⭐ GitHub</a>
146146
</div>
147147
148148
<h2>📖 Documentation Sections</h2>
@@ -167,7 +167,7 @@ jobs:
167167
168168
<h2>🔗 Quick Links</h2>
169169
<ul>
170-
<li><a href="https://github.com/helixagent/helixagent">GitHub Repository</a></li>
170+
<li><a href="https://dev.helix.agent">GitHub Repository</a></li>
171171
<li><a href="api/openapi.yaml">OpenAPI Specification</a></li>
172172
<li><a href="architecture.md">Architecture Overview</a></li>
173173
<li><a href="DEVELOPMENT_STATUS.md">Development Status</a></li>

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[![Go Version](https://img.shields.io/badge/Go-1.21+-00ADD1E?style=flat-square&logo=go)](https://golang.org)
44
[![Docker](https://img.shields.io/badge/Docker-Ready-blue?style=flat-square&logo=docker)](https://www.docker.com)
55
[![License](https://img.shields.io/badge/License-MIT-green?style=flat-square)](LICENSE)
6-
[![Tests](https://img.shields.io/badge/Tests-Passing-brightgreen?style=flat-square)](https://github.com/helixagent/helixagent/actions/workflows/tests)
6+
[![Tests](https://img.shields.io/badge/Tests-Passing-brightgreen?style=flat-square)](https://dev.helix.agent/actions/workflows/tests)
77

88
HelixAgent is a production-ready, AI-powered ensemble LLM service that intelligently combines responses from multiple language models to provide the most accurate and reliable outputs.
99

@@ -17,7 +17,7 @@ HelixAgent is a production-ready, AI-powered ensemble LLM service that intellige
1717
### Using Docker (Recommended)
1818
```bash
1919
# Clone the repository
20-
git clone https://github.com/helixagent/helixagent.git
20+
git clone https://dev.helix.agent.git
2121
cd helixagent
2222

2323
# Copy environment configuration
@@ -299,7 +299,7 @@ curl -X POST http://localhost:8080/v1/completions/stream \
299299
package main
300300

301301
import (
302-
"github.com/helixagent/helixagent/internal/plugins"
302+
"dev.helix.agent/internal/plugins"
303303
)
304304

305305
type MyPlugin struct {
@@ -358,7 +358,7 @@ docker-compose --profile optimization up -d
358358

359359
### Usage Example
360360
```go
361-
import "github.com/helixagent/helixagent/internal/optimization"
361+
import "dev.helix.agent/internal/optimization"
362362

363363
// Create and use optimization service
364364
config := optimization.DefaultConfig()
@@ -501,8 +501,8 @@ export REQUEST_LOGGING=true
501501
- **[Quick Start](./docs/guides/quick-start-guide.md)**: Getting started guide
502502

503503
### Community
504-
- **GitHub Discussions**: [Community Support](https://github.com/helixagent/helixagent/discussions)
505-
- **Issues**: [Bug Reports & Feature Requests](https://github.com/helixagent/helixagent/issues)
504+
- **GitHub Discussions**: [Community Support](https://dev.helix.agent/discussions)
505+
- **Issues**: [Bug Reports & Feature Requests](https://dev.helix.agent/issues)
506506
- **Contributing**: [Contribution Guidelines](CONTRIBUTING.md)
507507

508508
### Support

Website/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@
2727
"license": "MIT",
2828
"repository": {
2929
"type": "git",
30-
"url": "https://github.com/helixagent/helixagent.git",
30+
"url": "https://dev.helix.agent.git",
3131
"directory": "Website"
3232
},
3333
"homepage": "https://helixagent.ai",
3434
"bugs": {
35-
"url": "https://github.com/helixagent/helixagent/issues"
35+
"url": "https://dev.helix.agent/issues"
3636
},
3737
"engines": {
3838
"node": ">=16.0.0"

Website/user-manuals/01-getting-started.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ Docker Compose provides the simplest and most reliable way to deploy HelixAgent
7373

7474
```bash
7575
# Clone the repository
76-
git clone https://github.com/helixagent/helixagent.git
76+
git clone https://dev.helix.agent.git
7777
cd helixagent
7878
```
7979

@@ -171,7 +171,7 @@ go version
171171

172172
```bash
173173
# Clone the repository
174-
git clone https://github.com/helixagent/helixagent.git
174+
git clone https://dev.helix.agent.git
175175
cd helixagent
176176

177177
# Download dependencies
@@ -755,8 +755,8 @@ docker-compose logs helixagent | grep -i error
755755
### Getting Help
756756

757757
- **Documentation**: Check the `/docs` directory for detailed guides
758-
- **Issues**: Report bugs at [GitHub Issues](https://github.com/helixagent/helixagent/issues)
759-
- **Community**: Join discussions at [GitHub Discussions](https://github.com/helixagent/helixagent/discussions)
758+
- **Issues**: Report bugs at [GitHub Issues](https://dev.helix.agent/issues)
759+
- **Community**: Join discussions at [GitHub Discussions](https://dev.helix.agent/discussions)
760760
- **Support**: Contact support@helixagent.ai for enterprise support
761761

762762
---

Website/user-manuals/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,4 +56,4 @@ Welcome to the HelixAgent user manual collection. These guides will help you get
5656

5757
## Support
5858

59-
For additional help, visit our [community forums](https://github.com/helixagent/helixagent/discussions) or contact [support@helixagent.ai](mailto:support@helixagent.ai).
59+
For additional help, visit our [community forums](https://dev.helix.agent/discussions) or contact [support@helixagent.ai](mailto:support@helixagent.ai).

Website/video-courses/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,8 +132,8 @@ Welcome to the HelixAgent video course library. These comprehensive courses will
132132
## Support and Resources
133133

134134
- [Documentation](https://helixagent.ai/docs)
135-
- [GitHub Repository](https://github.com/helixagent/helixagent)
136-
- [Community Forums](https://github.com/helixagent/helixagent/discussions)
135+
- [GitHub Repository](https://dev.helix.agent)
136+
- [Community Forums](https://dev.helix.agent/discussions)
137137
- [Support Email](mailto:support@helixagent.ai)
138138

139139
## Certification

Website/video-courses/course-01-fundamentals.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ First, clone the repository. Then, we'll copy the environment example file and c
206206

207207
```bash
208208
# Clone the HelixAgent repository
209-
git clone https://github.com/helixagent/helixagent.git
209+
git clone https://dev.helix.agent.git
210210
cd helixagent
211211
```
212212

@@ -281,7 +281,7 @@ Narration: "We can verify the installation by calling the health endpoint. A suc
281281
DOCKER INSTALLATION STEPS
282282
283283
1. Clone Repository
284-
git clone https://github.com/helixagent/helixagent.git
284+
git clone https://dev.helix.agent.git
285285
286286
2. Configure Environment
287287
cp .env.example .env
@@ -1054,7 +1054,7 @@ Next Steps:
10541054
10551055
Resources:
10561056
- Documentation: docs.helixagent.ai
1057-
- GitHub: github.com/helixagent/helixagent
1057+
- GitHub: dev.helix.agent
10581058
- Support: support@helixagent.ai
10591059
```
10601060

Website/video-courses/course-03-deployment.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1545,7 +1545,7 @@ spec:
15451545
kubectl get deployment helixagent -o jsonpath='{.spec.template.spec.containers[0].image}'
15461546

15471547
# 2. Review release notes
1548-
# https://github.com/helixagent/helixagent/releases
1548+
# https://dev.helix.agent/releases
15491549

15501550
# 3. Update to new version
15511551
kubectl set image deployment/helixagent \
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
module github.com/helixagent/helixagent/challenges/ai_debate_formation
1+
module dev.helix.agent/challenges/ai_debate_formation
22

33
go 1.23
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
module github.com/helixagent/helixagent/challenges/api_quality_test
1+
module dev.helix.agent/challenges/api_quality_test
22

33
go 1.23

0 commit comments

Comments
 (0)