You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
81 lines
2.2 KiB
81 lines
2.2 KiB
/*
|
|
* Copyright 2025 coze-dev Authors
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
package oceanbase
|
|
|
|
import (
|
|
"context"
|
|
"os"
|
|
"strconv"
|
|
|
|
"github.com/coze-dev/coze-studio/backend/infra/contract/document/searchstore"
|
|
"github.com/coze-dev/coze-studio/backend/infra/contract/embedding"
|
|
"github.com/coze-dev/coze-studio/backend/pkg/logs"
|
|
)
|
|
|
|
func CreateOceanBaseVectorStore(
|
|
config Config,
|
|
embedding embedding.Embedder,
|
|
) (searchstore.Manager, error) {
|
|
factory := NewFactory(&config)
|
|
|
|
manager, err := factory.CreateManager(context.Background(), embedding)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
logs.Infof("Successfully created OceanBase vector store with type: %s", searchstore.TypeVectorStore)
|
|
return manager, nil
|
|
}
|
|
|
|
func CreateOceanBaseVectorStoreWithEnv(
|
|
embedding embedding.Embedder,
|
|
) (searchstore.Manager, error) {
|
|
config := Config{
|
|
Host: getEnv("OCEANBASE_HOST", "localhost"),
|
|
Port: getEnvAsInt("OCEANBASE_PORT", 2881),
|
|
User: getEnv("OCEANBASE_USER", "root"),
|
|
Password: getEnv("OCEANBASE_PASSWORD", ""),
|
|
Database: getEnv("OCEANBASE_DATABASE", "test"),
|
|
}
|
|
|
|
return CreateOceanBaseVectorStore(config, embedding)
|
|
}
|
|
|
|
func getEnv(key, defaultValue string) string {
|
|
if value := os.Getenv(key); value != "" {
|
|
return value
|
|
}
|
|
return defaultValue
|
|
}
|
|
|
|
func getEnvAsInt(key string, defaultValue int) int {
|
|
if value := os.Getenv(key); value != "" {
|
|
if intValue, err := strconv.Atoi(value); err == nil {
|
|
return intValue
|
|
}
|
|
}
|
|
return defaultValue
|
|
}
|
|
|
|
func getEnvAsBool(key string, defaultValue bool) bool {
|
|
if value := os.Getenv(key); value != "" {
|
|
if boolValue, err := strconv.ParseBool(value); err == nil {
|
|
return boolValue
|
|
}
|
|
}
|
|
return defaultValue
|
|
}
|
|
|