/* * Copyright 2025 CloudWeGo 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 knowledgeindexing import ( "context" "log" "os" "github.com/cloudwego/eino-ext/components/embedding/ark" "github.com/cloudwego/eino/components/embedding" ) func defaultArkEmbeddingConfig(ctx context.Context) (*ark.EmbeddingConfig, error) { config := &ark.EmbeddingConfig{ BaseURL: "https://ark.cn-beijing.volces.com/api/v3", APIKey: os.Getenv("ARK_API_KEY"), Model: os.Getenv("ARK_EMBEDDING_MODEL"), } log.Printf("model: %v", config.Model) return config, nil } func NewArkEmbedding(ctx context.Context, config *ark.EmbeddingConfig) (eb embedding.Embedder, err error) { if config == nil { config, err = defaultArkEmbeddingConfig(ctx) if err != nil { return nil, err } } eb, err = ark.NewEmbedder(ctx, config) if err != nil { return nil, err } return eb, nil }