Skip to content

Commit 610adbb

Browse files
committed
project: transfer to vllm-project/semantic-router
Signed-off-by: bitliu <[email protected]>
1 parent a754f6c commit 610adbb

File tree

29 files changed

+69
-69
lines changed

29 files changed

+69
-69
lines changed

candle-binding/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
module github.com/redhat-et/semantic_route/candle-binding
1+
module github.com/vllm-project/semantic-router/candle-binding
22

33
go 1.24.1

docs/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](LICENSE)
44
[![Hugging Face](https://img.shields.io/badge/🤗%20Hugging%20Face-Community-yellow)](https://huggingface.co/LLM-Semantic-Router)
5-
[![Go Report Card](https://goreportcard.com/badge/github.com/redhat-et/semantic_route)](https://goreportcard.com/report/github.com/redhat-et/semantic_route)
5+
[![Go Report Card](https://goreportcard.com/badge/github.com/vllm-project/semantic-router)](https://goreportcard.com/report/github.com/vllm-project/semantic-router)
66

77
An intelligent **Mixture-of-Models (MoM)** router that acts as an Envoy External Processor (ExtProc) to intelligently direct OpenAI API requests to the most suitable backend model from a defined pool. Using BERT-based semantic understanding and classification, it optimizes both performance and cost efficiency.
88

@@ -107,7 +107,7 @@ Explore how classification models are trained, what datasets are used, and the p
107107

108108
## 🤝 Contributing
109109

110-
We welcome contributions! Please see our [Contributing Guide](https://github.com/redhat-et/semantic_router/blob/main/CONTRIBUTING.md) for details.
110+
We welcome contributions! Please see our [Contributing Guide](https://github.com/vllm-project/semantic-router/blob/main/CONTRIBUTING.md) for details.
111111

112112
## 📄 License
113113

mkdocs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
site_name: LLM Semantic Router
22
site_description: Intelligent Mixture-of-Models Router using Envoy ExtProc for LLM Applications
33
site_author: Semantic Router Team
4-
repo_name: redhat-et/semantic_route
5-
repo_url: https://github.com/redhat-et/semantic_router
4+
repo_name: vllm-project/semantic-router
5+
repo_url: https://github.com/vllm-project/semantic-router
66
edit_uri: edit/main/docs/
77

88
theme:

src/semantic_router/cmd/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"os"
99

1010
"github.com/prometheus/client_golang/prometheus/promhttp"
11-
"github.com/redhat-et/semantic_route/semantic_router/pkg/extproc"
11+
"github.com/vllm-project/semantic-router/semantic_router/pkg/extproc"
1212
)
1313

1414
func main() {

src/semantic_router/go.mod

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
module github.com/redhat-et/semantic_route/semantic_router
1+
module github.com/vllm-project/semantic-router/semantic_router
22

33
go 1.24.1
44

55
replace (
6-
github.com/redhat-et/semantic_route/candle-binding => ../../candle-binding
7-
github.com/redhat-et/semantic_route/semantic_router/pkg/config => ./pkg/config
8-
github.com/redhat-et/semantic_route/semantic_router/pkg/extproc => ./pkg/extproc
6+
github.com/vllm-project/semantic-router/candle-binding => ../../candle-binding
7+
github.com/vllm-project/semantic-router/semantic_router/pkg/config => ./pkg/config
8+
github.com/vllm-project/semantic-router/semantic_router/pkg/extproc => ./pkg/extproc
99
)
1010

1111
require (
@@ -14,7 +14,7 @@ require (
1414
github.com/onsi/gomega v1.38.0
1515
github.com/openai/openai-go v1.12.0
1616
github.com/prometheus/client_golang v1.23.0
17-
github.com/redhat-et/semantic_route/candle-binding v0.0.0-00010101000000-000000000000
17+
github.com/vllm-project/semantic-router/candle-binding v0.0.0-00010101000000-000000000000
1818
google.golang.org/grpc v1.71.1
1919
gopkg.in/yaml.v3 v3.0.1
2020
)

src/semantic_router/pkg/cache/cache.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"sync"
99
"time"
1010

11-
candle_binding "github.com/redhat-et/semantic_route/candle-binding"
11+
candle_binding "github.com/vllm-project/semantic-router/candle-binding"
1212
)
1313

1414
// CacheEntry represents a cached request-response pair

src/semantic_router/pkg/cache/cache_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ import (
1010
. "github.com/onsi/ginkgo/v2"
1111
. "github.com/onsi/gomega"
1212

13-
candle "github.com/redhat-et/semantic_route/candle-binding"
14-
"github.com/redhat-et/semantic_route/semantic_router/pkg/cache"
13+
candle "github.com/vllm-project/semantic-router/candle-binding"
14+
"github.com/vllm-project/semantic-router/semantic_router/pkg/cache"
1515
)
1616

1717
func TestCache(t *testing.T) {

src/semantic_router/pkg/config/config_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
. "github.com/onsi/ginkgo/v2"
1010
. "github.com/onsi/gomega"
1111

12-
"github.com/redhat-et/semantic_route/semantic_router/pkg/config"
12+
"github.com/vllm-project/semantic-router/semantic_router/pkg/config"
1313
)
1414

1515
func TestConfig(t *testing.T) {

src/semantic_router/pkg/extproc/caching_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ import (
99

1010
ext_proc "github.com/envoyproxy/go-control-plane/envoy/service/ext_proc/v3"
1111

12-
"github.com/redhat-et/semantic_route/semantic_router/pkg/cache"
13-
"github.com/redhat-et/semantic_route/semantic_router/pkg/config"
14-
"github.com/redhat-et/semantic_route/semantic_router/pkg/extproc"
12+
"github.com/vllm-project/semantic-router/semantic_router/pkg/cache"
13+
"github.com/vllm-project/semantic-router/semantic_router/pkg/config"
14+
"github.com/vllm-project/semantic-router/semantic_router/pkg/extproc"
1515
)
1616

1717
var _ = Describe("Caching Functionality", func() {

src/semantic_router/pkg/extproc/edge_cases_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ import (
1111

1212
ext_proc "github.com/envoyproxy/go-control-plane/envoy/service/ext_proc/v3"
1313

14-
"github.com/redhat-et/semantic_route/semantic_router/pkg/cache"
15-
"github.com/redhat-et/semantic_route/semantic_router/pkg/config"
16-
"github.com/redhat-et/semantic_route/semantic_router/pkg/extproc"
14+
"github.com/vllm-project/semantic-router/semantic_router/pkg/cache"
15+
"github.com/vllm-project/semantic-router/semantic_router/pkg/config"
16+
"github.com/vllm-project/semantic-router/semantic_router/pkg/extproc"
1717
)
1818

1919
var _ = Describe("Edge Cases and Error Conditions", func() {

0 commit comments

Comments
 (0)