mirror of
https://github.com/alibaba/higress.git
synced 2026-06-03 01:27:27 +08:00
feat: Enhance ai-cache Plugin with Vector Similarity-Based LLM Cache Recall and Multi-DB Support (#1248)
This commit is contained in:
206
plugins/wasm-go/extensions/ai-cache/vector/milvus.go
Normal file
206
plugins/wasm-go/extensions/ai-cache/vector/milvus.go
Normal file
@@ -0,0 +1,206 @@
|
||||
package vector
|
||||
|
||||
import (
|
||||
"encoding/json"
|
||||
"errors"
|
||||
"fmt"
|
||||
"net/http"
|
||||
|
||||
"github.com/alibaba/higress/plugins/wasm-go/pkg/wrapper"
|
||||
"github.com/tidwall/gjson"
|
||||
)
|
||||
|
||||
type milvusProviderInitializer struct{}
|
||||
|
||||
func (c *milvusProviderInitializer) ValidateConfig(config ProviderConfig) error {
|
||||
if len(config.serviceName) == 0 {
|
||||
return errors.New("[Milvus] serviceName is required")
|
||||
}
|
||||
if len(config.collectionID) == 0 {
|
||||
return errors.New("[Milvus] collectionID is required")
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (c *milvusProviderInitializer) CreateProvider(config ProviderConfig) (Provider, error) {
|
||||
return &milvusProvider{
|
||||
config: config,
|
||||
client: wrapper.NewClusterClient(wrapper.FQDNCluster{
|
||||
FQDN: config.serviceName,
|
||||
Host: config.serviceHost,
|
||||
Port: int64(config.servicePort),
|
||||
}),
|
||||
}, nil
|
||||
}
|
||||
|
||||
type milvusProvider struct {
|
||||
config ProviderConfig
|
||||
client wrapper.HttpClient
|
||||
}
|
||||
|
||||
func (c *milvusProvider) GetProviderType() string {
|
||||
return PROVIDER_TYPE_MILVUS
|
||||
}
|
||||
|
||||
type milvusData struct {
|
||||
Vector []float64 `json:"vector"`
|
||||
Question string `json:"question,omitempty"`
|
||||
Answer string `json:"answer,omitempty"`
|
||||
}
|
||||
|
||||
type milvusInsertRequest struct {
|
||||
CollectionName string `json:"collectionName"`
|
||||
Data []milvusData `json:"data"`
|
||||
}
|
||||
|
||||
func (d *milvusProvider) UploadAnswerAndEmbedding(
|
||||
queryString string,
|
||||
queryEmb []float64,
|
||||
queryAnswer string,
|
||||
ctx wrapper.HttpContext,
|
||||
log wrapper.Log,
|
||||
callback func(ctx wrapper.HttpContext, log wrapper.Log, err error)) error {
|
||||
// 最少需要填写的参数为 collectionName, data 和 Authorization. question, answer 可选
|
||||
// 需要填写 id,否则 v2.4.13-hotfix 提示 invalid syntax: invalid parameter[expected=Int64][actual=]
|
||||
// 如果不填写 id,要在创建 collection 的时候设置 autoId 为 true
|
||||
// 下面是一个例子
|
||||
// {
|
||||
// "collectionName": "higress",
|
||||
// "data": [
|
||||
// {
|
||||
// "question": "这里是问题",
|
||||
// "answer": "这里是答案"
|
||||
// "vector": [
|
||||
// 0.9,
|
||||
// 0.1,
|
||||
// 0.1
|
||||
// ]
|
||||
// }
|
||||
// ]
|
||||
// }
|
||||
requestBody, err := json.Marshal(milvusInsertRequest{
|
||||
CollectionName: d.config.collectionID,
|
||||
Data: []milvusData{
|
||||
{
|
||||
Question: queryString,
|
||||
Answer: queryAnswer,
|
||||
Vector: queryEmb,
|
||||
},
|
||||
},
|
||||
})
|
||||
|
||||
if err != nil {
|
||||
log.Errorf("[Milvus] Failed to marshal upload embedding request body: %v", err)
|
||||
return err
|
||||
}
|
||||
|
||||
return d.client.Post(
|
||||
"/v2/vectordb/entities/insert",
|
||||
[][2]string{
|
||||
{"Content-Type", "application/json"},
|
||||
{"Authorization", fmt.Sprintf("Bearer %s", d.config.apiKey)},
|
||||
},
|
||||
requestBody,
|
||||
func(statusCode int, responseHeaders http.Header, responseBody []byte) {
|
||||
log.Debugf("[Milvus] statusCode:%d, responseBody:%s", statusCode, string(responseBody))
|
||||
callback(ctx, log, err)
|
||||
},
|
||||
d.config.timeout,
|
||||
)
|
||||
}
|
||||
|
||||
type milvusQueryRequest struct {
|
||||
CollectionName string `json:"collectionName"`
|
||||
Data [][]float64 `json:"data"`
|
||||
AnnsField string `json:"annsField"`
|
||||
Limit int `json:"limit"`
|
||||
OutputFields []string `json:"outputFields"`
|
||||
}
|
||||
|
||||
func (d *milvusProvider) QueryEmbedding(
|
||||
emb []float64,
|
||||
ctx wrapper.HttpContext,
|
||||
log wrapper.Log,
|
||||
callback func(results []QueryResult, ctx wrapper.HttpContext, log wrapper.Log, err error)) error {
|
||||
// 最少需要填写的参数为 collectionName, data, annsField. outputFields 为可选参数
|
||||
// 下面是一个例子
|
||||
// {
|
||||
// "collectionName": "quick_setup",
|
||||
// "data": [
|
||||
// [
|
||||
// 0.3580376395471989,
|
||||
// "Unknown type",
|
||||
// 0.18414012509913835,
|
||||
// "Unknown type",
|
||||
// 0.9029438446296592
|
||||
// ]
|
||||
// ],
|
||||
// "annsField": "vector",
|
||||
// "limit": 3,
|
||||
// "outputFields": [
|
||||
// "color"
|
||||
// ]
|
||||
// }
|
||||
requestBody, err := json.Marshal(milvusQueryRequest{
|
||||
CollectionName: d.config.collectionID,
|
||||
Data: [][]float64{emb},
|
||||
AnnsField: "vector",
|
||||
Limit: d.config.topK,
|
||||
OutputFields: []string{
|
||||
"question",
|
||||
"answer",
|
||||
},
|
||||
})
|
||||
if err != nil {
|
||||
log.Errorf("[Milvus] Failed to marshal query embedding: %v", err)
|
||||
return err
|
||||
}
|
||||
|
||||
return d.client.Post(
|
||||
"/v2/vectordb/entities/search",
|
||||
[][2]string{
|
||||
{"Content-Type", "application/json"},
|
||||
{"Authorization", fmt.Sprintf("Bearer %s", d.config.apiKey)},
|
||||
},
|
||||
requestBody,
|
||||
func(statusCode int, responseHeaders http.Header, responseBody []byte) {
|
||||
log.Debugf("[Milvus] Query embedding response: %d, %s", statusCode, responseBody)
|
||||
results, err := d.parseQueryResponse(responseBody, log)
|
||||
if err != nil {
|
||||
err = fmt.Errorf("[Milvus] Failed to parse query response: %v", err)
|
||||
}
|
||||
callback(results, ctx, log, err)
|
||||
},
|
||||
d.config.timeout,
|
||||
)
|
||||
}
|
||||
|
||||
func (d *milvusProvider) parseQueryResponse(responseBody []byte, log wrapper.Log) ([]QueryResult, error) {
|
||||
if !gjson.GetBytes(responseBody, "data.0.distance").Exists() {
|
||||
log.Errorf("[Milvus] No distance found in response body: %s", responseBody)
|
||||
return nil, errors.New("[Milvus] No distance found in response body")
|
||||
}
|
||||
|
||||
if !gjson.GetBytes(responseBody, "data.0.question").Exists() {
|
||||
log.Errorf("[Milvus] No question found in response body: %s", responseBody)
|
||||
return nil, errors.New("[Milvus] No question found in response body")
|
||||
}
|
||||
|
||||
if !gjson.GetBytes(responseBody, "data.0.answer").Exists() {
|
||||
log.Errorf("[Milvus] No answer found in response body: %s", responseBody)
|
||||
return nil, errors.New("[Milvus] No answer found in response body")
|
||||
}
|
||||
|
||||
resultNum := gjson.GetBytes(responseBody, "data.#").Int()
|
||||
results := make([]QueryResult, 0, resultNum)
|
||||
for i := 0; i < int(resultNum); i++ {
|
||||
result := QueryResult{
|
||||
Text: gjson.GetBytes(responseBody, fmt.Sprintf("data.%d.question", i)).String(),
|
||||
Score: gjson.GetBytes(responseBody, fmt.Sprintf("data.%d.distance", i)).Float(),
|
||||
Answer: gjson.GetBytes(responseBody, fmt.Sprintf("data.%d.answer", i)).String(),
|
||||
}
|
||||
results = append(results, result)
|
||||
}
|
||||
|
||||
return results, nil
|
||||
}
|
||||
Reference in New Issue
Block a user