123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- import os
- import pytest
- from core.model_runtime.entities.text_embedding_entities import TextEmbeddingResult
- from core.model_runtime.errors.validate import CredentialsValidateFailedError
- from core.model_runtime.model_providers.hunyuan.text_embedding.text_embedding import HunyuanTextEmbeddingModel
- def test_validate_credentials():
- model = HunyuanTextEmbeddingModel()
- with pytest.raises(CredentialsValidateFailedError):
- model.validate_credentials(
- model='hunyuan-embedding',
- credentials={
- 'secret_id': 'invalid_key',
- 'secret_key': 'invalid_key'
- }
- )
- model.validate_credentials(
- model='hunyuan-embedding',
- credentials={
- 'secret_id': os.environ.get('HUNYUAN_SECRET_ID'),
- 'secret_key': os.environ.get('HUNYUAN_SECRET_KEY')
- }
- )
- def test_invoke_model():
- model = HunyuanTextEmbeddingModel()
- result = model.invoke(
- model='hunyuan-embedding',
- credentials={
- 'secret_id': os.environ.get('HUNYUAN_SECRET_ID'),
- 'secret_key': os.environ.get('HUNYUAN_SECRET_KEY')
- },
- texts=[
- "hello",
- "world"
- ],
- user="abc-123"
- )
- assert isinstance(result, TextEmbeddingResult)
- assert len(result.embeddings) == 2
- assert result.usage.total_tokens == 6
- def test_get_num_tokens():
- model = HunyuanTextEmbeddingModel()
- num_tokens = model.get_num_tokens(
- model='hunyuan-embedding',
- credentials={
- 'secret_id': os.environ.get('HUNYUAN_SECRET_ID'),
- 'secret_key': os.environ.get('HUNYUAN_SECRET_KEY')
- },
- texts=[
- "hello",
- "world"
- ]
- )
- assert num_tokens == 2
- def test_max_chunks():
- model = HunyuanTextEmbeddingModel()
- result = model.invoke(
- model='hunyuan-embedding',
- credentials={
- 'secret_id': os.environ.get('HUNYUAN_SECRET_ID'),
- 'secret_key': os.environ.get('HUNYUAN_SECRET_KEY')
- },
- texts=[
- "hello",
- "world",
- "hello",
- "world",
- "hello",
- "world",
- "hello",
- "world",
- "hello",
- "world",
- "hello",
- "world",
- "hello",
- "world",
- "hello",
- "world",
- "hello",
- "world",
- "hello",
- "world",
- "hello",
- "world",
- ]
- )
- assert isinstance(result, TextEmbeddingResult)
- assert len(result.embeddings) == 22
|