9201ef759e
CI / lint (push) Waiting to run
CI / mypy (push) Waiting to run
CI / docs (push) Waiting to run
CI / test on 3.10 (standard) (push) Waiting to run
CI / test on 3.11 (standard) (push) Waiting to run
CI / test on 3.12 (standard) (push) Waiting to run
CI / test on 3.10 (all-extras) (push) Waiting to run
CI / test on 3.11 (all-extras) (push) Waiting to run
CI / test on 3.12 (all-extras) (push) Waiting to run
CI / test on 3.13 (all-extras) (push) Waiting to run
CI / test on 3.14 (pydantic-evals) (push) Waiting to run
CI / test on 3.13 (standard) (push) Waiting to run
CI / test on 3.14 (standard) (push) Waiting to run
CI / test on 3.14 (all-extras) (push) Waiting to run
CI / test on 3.10 (pydantic-ai-slim) (push) Waiting to run
CI / test on 3.11 (pydantic-ai-slim) (push) Waiting to run
CI / test on 3.12 (pydantic-ai-slim) (push) Waiting to run
CI / test on 3.13 (pydantic-ai-slim) (push) Waiting to run
CI / test on 3.14 (pydantic-ai-slim) (push) Waiting to run
CI / test on 3.10 (pydantic-evals) (push) Waiting to run
CI / test on 3.11 (pydantic-evals) (push) Waiting to run
CI / test on 3.12 (pydantic-evals) (push) Waiting to run
CI / test on 3.13 (pydantic-evals) (push) Waiting to run
CI / test on 3.10 (lowest-versions) (push) Waiting to run
CI / test on 3.11 (lowest-versions) (push) Waiting to run
CI / test on 3.12 (lowest-versions) (push) Waiting to run
CI / test on 3.13 (lowest-versions) (push) Waiting to run
CI / test on 3.14 (lowest-versions) (push) Waiting to run
CI / test examples on 3.11 (push) Waiting to run
CI / test examples on 3.12 (push) Waiting to run
CI / test examples on 3.13 (push) Waiting to run
CI / test examples on 3.14 (push) Waiting to run
CI / coverage (push) Blocked by required conditions
CI / check (push) Blocked by required conditions
CI / deploy-docs (push) Blocked by required conditions
CI / deploy-docs-preview (push) Blocked by required conditions
CI / build release artifacts (push) Blocked by required conditions
CI / publish to PyPI (push) Blocked by required conditions
CI / Send tweet (push) Blocked by required conditions
Harness Compat / harness compat (push) Failing after 0s
35 lines
1.0 KiB
Python
35 lines
1.0 KiB
Python
from __future__ import annotations as _annotations
|
|
|
|
import pytest
|
|
|
|
from pydantic_ai.exceptions import UserError
|
|
|
|
from ..conftest import TestEnv, try_import
|
|
|
|
with try_import() as imports_successful:
|
|
from voyageai.client_async import AsyncClient
|
|
|
|
from pydantic_ai.providers.voyageai import VoyageAIProvider
|
|
|
|
|
|
pytestmark = pytest.mark.skipif(not imports_successful(), reason='voyageai not installed')
|
|
|
|
|
|
def test_voyageai_provider() -> None:
|
|
provider = VoyageAIProvider(api_key='api-key')
|
|
assert provider.name == 'voyageai'
|
|
assert provider.base_url == 'https://api.voyageai.com/v1'
|
|
assert isinstance(provider.client, AsyncClient)
|
|
|
|
|
|
def test_voyageai_provider_need_api_key(env: TestEnv) -> None:
|
|
env.remove('VOYAGE_API_KEY')
|
|
with pytest.raises(UserError, match='VOYAGE_API_KEY'):
|
|
VoyageAIProvider()
|
|
|
|
|
|
def test_voyageai_provider_pass_voyageai_client() -> None:
|
|
voyageai_client = AsyncClient(api_key='test-api-key')
|
|
provider = VoyageAIProvider(voyageai_client=voyageai_client)
|
|
assert provider.client == voyageai_client
|