2024-01-02 23:42:00 +08:00
|
|
|
import os
|
|
|
|
|
|
|
|
import pytest
|
2024-04-18 20:24:05 +08:00
|
|
|
|
2024-01-02 23:42:00 +08:00
|
|
|
from core.model_runtime.entities.text_embedding_entities import TextEmbeddingResult
|
|
|
|
from core.model_runtime.errors.validate import CredentialsValidateFailedError
|
|
|
|
from core.model_runtime.model_providers.minimax.text_embedding.text_embedding import MinimaxTextEmbeddingModel
|
|
|
|
|
2024-01-12 12:34:01 +08:00
|
|
|
|
2024-01-02 23:42:00 +08:00
|
|
|
def test_validate_credentials():
|
|
|
|
model = MinimaxTextEmbeddingModel()
|
|
|
|
|
|
|
|
with pytest.raises(CredentialsValidateFailedError):
|
|
|
|
model.validate_credentials(
|
2024-08-23 23:52:25 +08:00
|
|
|
model="embo-01",
|
|
|
|
credentials={"minimax_api_key": "invalid_key", "minimax_group_id": os.environ.get("MINIMAX_GROUP_ID")},
|
2024-01-02 23:42:00 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
model.validate_credentials(
|
2024-08-23 23:52:25 +08:00
|
|
|
model="embo-01",
|
2024-01-02 23:42:00 +08:00
|
|
|
credentials={
|
2024-08-23 23:52:25 +08:00
|
|
|
"minimax_api_key": os.environ.get("MINIMAX_API_KEY"),
|
|
|
|
"minimax_group_id": os.environ.get("MINIMAX_GROUP_ID"),
|
|
|
|
},
|
2024-01-02 23:42:00 +08:00
|
|
|
)
|
|
|
|
|
2024-08-23 23:52:25 +08:00
|
|
|
|
2024-01-02 23:42:00 +08:00
|
|
|
def test_invoke_model():
|
|
|
|
model = MinimaxTextEmbeddingModel()
|
|
|
|
|
|
|
|
result = model.invoke(
|
2024-08-23 23:52:25 +08:00
|
|
|
model="embo-01",
|
2024-01-02 23:42:00 +08:00
|
|
|
credentials={
|
2024-08-23 23:52:25 +08:00
|
|
|
"minimax_api_key": os.environ.get("MINIMAX_API_KEY"),
|
|
|
|
"minimax_group_id": os.environ.get("MINIMAX_GROUP_ID"),
|
2024-01-02 23:42:00 +08:00
|
|
|
},
|
2024-08-23 23:52:25 +08:00
|
|
|
texts=["hello", "world"],
|
|
|
|
user="abc-123",
|
2024-01-02 23:42:00 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
assert isinstance(result, TextEmbeddingResult)
|
|
|
|
assert len(result.embeddings) == 2
|
|
|
|
assert result.usage.total_tokens == 16
|
|
|
|
|
2024-08-23 23:52:25 +08:00
|
|
|
|
2024-01-02 23:42:00 +08:00
|
|
|
def test_get_num_tokens():
|
|
|
|
model = MinimaxTextEmbeddingModel()
|
|
|
|
|
|
|
|
num_tokens = model.get_num_tokens(
|
2024-08-23 23:52:25 +08:00
|
|
|
model="embo-01",
|
2024-01-02 23:42:00 +08:00
|
|
|
credentials={
|
2024-08-23 23:52:25 +08:00
|
|
|
"minimax_api_key": os.environ.get("MINIMAX_API_KEY"),
|
|
|
|
"minimax_group_id": os.environ.get("MINIMAX_GROUP_ID"),
|
2024-01-02 23:42:00 +08:00
|
|
|
},
|
2024-08-23 23:52:25 +08:00
|
|
|
texts=["hello", "world"],
|
2024-01-02 23:42:00 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
assert num_tokens == 2
|