MaxKB/apps/models_provider/impl/gemini_model_provider/model/embedding.py
2025-04-17 18:01:33 +08:00

23 lines
609 B
Python
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# coding=utf-8
"""
@project: MaxKB
@Author
@file embedding.py
@date2024/7/12 17:44
@desc:
"""
from typing import Dict
from langchain_google_genai import GoogleGenerativeAIEmbeddings
from models_provider.base_model_provider import MaxKBBaseModel
class GeminiEmbeddingModel(MaxKBBaseModel, GoogleGenerativeAIEmbeddings):
@staticmethod
def new_instance(model_type, model_name, model_credential: Dict[str, object], **model_kwargs):
return GeminiEmbeddingModel(
google_api_key=model_credential.get('api_key'),
model=model_name,
)