mirror of
https://github.com/langgenius/dify-plugin-sdks.git
synced 2026-07-22 10:25:23 -04:00
c6f83a63e1
* chore: fix ruff issue * feat(oauth): implement OAuth * feat(invoke-message): refactor message handling and introduce InvokeMessage class * feat(plugin-oauth): add credential_id and credential_type to tool parameters * feat(plugin-oauth): add credential_id and credential_type to tool parameters * chore: update dify_plugin version to 0.5.0b4 and clean up github.yaml * chore: update plugin version to 0.1.2 in manifest.yaml * feat(session): session context and tool backwards invocation credential support * feat(oauth): session context and tool backwards invocation credential support * feat: update README and requirements for OAuth support in version 0.4.2 * feat: add .gitignore to exclude IDE files and secret keys * chore: apply ruff * feat: bump version to 0.4.2b1 * feat: update GitHub plugin configuration for OAuth support and improve credential handling * feat: update .gitignore to exclude dify plugin files and public keys * feat: fix credential validation for GitHub API and bump version to 0.2.1 * feat: update GitHub plugin to support multiple access tokens and bump version to 0.2.5 * chore: apply ruff * feat: add ToolProviderOAuthError for improved OAuth error handling in GitHub plugin * chore: apply ruff * chore: bump version to 0.4.2 * chore: update examples sdk version to 0.4.2 * fix: thread deadlock in PluginRunner when running tests without gevent monkey patching * feat: add support for refreshing OAuth credentials in Plugin and GitHub provider * feat: refactor OAuth credential handling to return structured OAuthCredentials object * apply ruff * feat: refactor OAuth credential handling to use ToolOAuthCredentials for improved structure * feat: reorganize imports in __init__.py for improved clarity and structure * feat: add Microsoft To Do plugin for refresh token example * chore: apply ruff * fix: update author in GitHub configuration and clean up Microsoft To Do schema * chore: bump version to 0.4.2b2 in pyproject.toml * feat: update Microsoft To Do plugin to handle OAuth token encoding and version bump * feat:remove inelegant example * chore: update dify_plugin version to 0.4.2 * chore: bump version to 0.4.2 in pyproject.toml --------- Co-authored-by: Yeuoly <admin@srmxy.cn>
219 lines
7.0 KiB
Python
219 lines
7.0 KiB
Python
import base64
|
|
import time
|
|
from typing import Union
|
|
|
|
import numpy as np
|
|
import tiktoken
|
|
from openai import OpenAI
|
|
|
|
from dify_plugin import TextEmbeddingModel
|
|
from dify_plugin.entities.model import EmbeddingInputType, PriceType
|
|
from dify_plugin.entities.model.text_embedding import (
|
|
EmbeddingUsage,
|
|
TextEmbeddingResult,
|
|
)
|
|
from dify_plugin.errors.model import CredentialsValidateFailedError
|
|
|
|
from ..common_openai import _CommonOpenAI
|
|
|
|
|
|
class OpenAITextEmbeddingModel(_CommonOpenAI, TextEmbeddingModel):
|
|
"""
|
|
Model class for OpenAI text embedding model.
|
|
"""
|
|
|
|
def _invoke(
|
|
self,
|
|
model: str,
|
|
credentials: dict,
|
|
texts: list[str],
|
|
user: str | None = None,
|
|
input_type: EmbeddingInputType = EmbeddingInputType.DOCUMENT,
|
|
) -> TextEmbeddingResult:
|
|
"""
|
|
Invoke text embedding model
|
|
|
|
:param model: model name
|
|
:param credentials: model credentials
|
|
:param texts: texts to embed
|
|
:param user: unique user id
|
|
:return: embeddings result
|
|
"""
|
|
# transform credentials to kwargs for model instance
|
|
credentials_kwargs = self._to_credential_kwargs(credentials)
|
|
# init model client
|
|
client = OpenAI(**credentials_kwargs)
|
|
|
|
extra_model_kwargs = {}
|
|
if user:
|
|
extra_model_kwargs["user"] = user
|
|
|
|
extra_model_kwargs["encoding_format"] = "base64"
|
|
|
|
# get model properties
|
|
context_size = self._get_context_size(model, credentials)
|
|
max_chunks = self._get_max_chunks(model, credentials)
|
|
|
|
embeddings: list[list[float]] = [[] for _ in range(len(texts))]
|
|
tokens = []
|
|
indices = []
|
|
used_tokens = 0
|
|
|
|
try:
|
|
enc = tiktoken.encoding_for_model(model)
|
|
except KeyError:
|
|
enc = tiktoken.get_encoding("cl100k_base")
|
|
|
|
for i, text in enumerate(texts):
|
|
token = enc.encode(text)
|
|
for j in range(0, len(token), context_size):
|
|
tokens += [token[j : j + context_size]]
|
|
indices += [i]
|
|
|
|
batched_embeddings = []
|
|
_iter = range(0, len(tokens), max_chunks)
|
|
|
|
for i in _iter:
|
|
# call embedding model
|
|
embeddings_batch, embedding_used_tokens = self._embedding_invoke(
|
|
model=model,
|
|
client=client,
|
|
texts=tokens[i : i + max_chunks],
|
|
extra_model_kwargs=extra_model_kwargs,
|
|
)
|
|
|
|
used_tokens += embedding_used_tokens
|
|
batched_embeddings += embeddings_batch
|
|
|
|
results: list[list[list[float]]] = [[] for _ in range(len(texts))]
|
|
num_tokens_in_batch: list[list[int]] = [[] for _ in range(len(texts))]
|
|
for i in range(len(indices)):
|
|
results[indices[i]].append(batched_embeddings[i])
|
|
num_tokens_in_batch[indices[i]].append(len(tokens[i]))
|
|
|
|
for i in range(len(texts)):
|
|
_result = results[i]
|
|
if len(_result) == 0:
|
|
embeddings_batch, embedding_used_tokens = self._embedding_invoke(
|
|
model=model,
|
|
client=client,
|
|
texts="",
|
|
extra_model_kwargs=extra_model_kwargs,
|
|
)
|
|
|
|
used_tokens += embedding_used_tokens
|
|
average = embeddings_batch[0]
|
|
else:
|
|
average = np.average(_result, axis=0, weights=num_tokens_in_batch[i])
|
|
embeddings[i] = (average / np.linalg.norm(average)).tolist() # type: ignore
|
|
|
|
# calc usage
|
|
usage = self._calc_response_usage(model=model, credentials=credentials, tokens=used_tokens)
|
|
|
|
return TextEmbeddingResult(embeddings=embeddings, usage=usage, model=model)
|
|
|
|
def get_num_tokens(self, model: str, credentials: dict, texts: list[str]) -> list[int]:
|
|
"""
|
|
Get number of tokens for given prompt messages
|
|
|
|
:param model: model name
|
|
:param credentials: model credentials
|
|
:param texts: texts to embed
|
|
:return:
|
|
"""
|
|
if len(texts) == 0:
|
|
return []
|
|
|
|
try:
|
|
enc = tiktoken.encoding_for_model(model)
|
|
except KeyError:
|
|
enc = tiktoken.get_encoding("cl100k_base")
|
|
|
|
total_num_tokens = []
|
|
for text in texts:
|
|
# calculate the number of tokens in the encoded text
|
|
tokenized_text = enc.encode(text)
|
|
total_num_tokens.append(len(tokenized_text))
|
|
|
|
return total_num_tokens
|
|
|
|
def validate_credentials(self, model: str, credentials: dict) -> None:
|
|
"""
|
|
Validate model credentials
|
|
|
|
:param model: model name
|
|
:param credentials: model credentials
|
|
:return:
|
|
"""
|
|
try:
|
|
# transform credentials to kwargs for model instance
|
|
credentials_kwargs = self._to_credential_kwargs(credentials)
|
|
client = OpenAI(**credentials_kwargs)
|
|
|
|
# call embedding model
|
|
self._embedding_invoke(model=model, client=client, texts=["ping"], extra_model_kwargs={})
|
|
except Exception as ex:
|
|
raise CredentialsValidateFailedError(str(ex)) from ex
|
|
|
|
def _embedding_invoke(
|
|
self,
|
|
model: str,
|
|
client: OpenAI,
|
|
texts: Union[list[str], str],
|
|
extra_model_kwargs: dict,
|
|
) -> tuple[list[list[float]], int]:
|
|
"""
|
|
Invoke embedding model
|
|
|
|
:param model: model name
|
|
:param client: model client
|
|
:param texts: texts to embed
|
|
:param extra_model_kwargs: extra model kwargs
|
|
:return: embeddings and used tokens
|
|
"""
|
|
# call embedding model
|
|
response = client.embeddings.create(
|
|
input=texts,
|
|
model=model,
|
|
**extra_model_kwargs,
|
|
)
|
|
|
|
if "encoding_format" in extra_model_kwargs and extra_model_kwargs["encoding_format"] == "base64":
|
|
# decode base64 embedding
|
|
return (
|
|
[list(np.frombuffer(base64.b64decode(data.embedding), dtype="float32")) for data in response.data], # type: ignore
|
|
response.usage.total_tokens,
|
|
)
|
|
|
|
return [data.embedding for data in response.data], response.usage.total_tokens
|
|
|
|
def _calc_response_usage(self, model: str, credentials: dict, tokens: int) -> EmbeddingUsage:
|
|
"""
|
|
Calculate response usage
|
|
|
|
:param model: model name
|
|
:param credentials: model credentials
|
|
:param tokens: input tokens
|
|
:return: usage
|
|
"""
|
|
# get input price info
|
|
input_price_info = self.get_price(
|
|
model=model,
|
|
credentials=credentials,
|
|
price_type=PriceType.INPUT,
|
|
tokens=tokens,
|
|
)
|
|
|
|
# transform usage
|
|
usage = EmbeddingUsage(
|
|
tokens=tokens,
|
|
total_tokens=tokens,
|
|
unit_price=input_price_info.unit_price,
|
|
price_unit=input_price_info.unit,
|
|
total_price=input_price_info.total_amount,
|
|
currency=input_price_info.currency,
|
|
latency=time.perf_counter() - self.started_at,
|
|
)
|
|
|
|
return usage
|