Files
microsoft--semantic-kernel/python/tests/integration/completions/completion_test_base.py
T
wehub-resource-sync b957a53def
CodeQL / Analyze (csharp) (push) Waiting to run
CodeQL / Analyze (python) (push) Waiting to run
chore: import upstream snapshot with attribution
2026-07-13 13:21:23 +08:00

71 lines
2.7 KiB
Python

# Copyright (c) Microsoft. All rights reserved.
from typing import Any
from semantic_kernel.connectors.ai.chat_completion_client_base import ChatCompletionClientBase
from semantic_kernel.connectors.ai.prompt_execution_settings import PromptExecutionSettings
from semantic_kernel.connectors.ai.text_completion_client_base import TextCompletionClientBase
from semantic_kernel.contents.chat_message_content import ChatMessageContent
from semantic_kernel.kernel import Kernel
ServiceType = ChatCompletionClientBase | TextCompletionClientBase
class CompletionTestBase:
"""Base class for testing completion services."""
def services(self) -> dict[str, tuple["ServiceType", type[PromptExecutionSettings]]]:
"""Return completion services."""
raise NotImplementedError
async def test_completion(
self,
kernel: Kernel,
service_id: str,
services: dict[str, tuple[ServiceType, type[PromptExecutionSettings]]],
execution_settings_kwargs: dict[str, Any],
inputs: list[str | ChatMessageContent | list[ChatMessageContent]],
kwargs: dict[str, Any],
) -> None:
"""Test completion service (Non-streaming).
Args:
kernel (Kernel): Kernel instance.
service_id (str): Service name.
services (dict[str, tuple[ServiceType, type[PromptExecutionSettings]]]): Completion services.
execution_settings_kwargs (dict[str, Any]): Execution settings keyword arguments.
inputs (list[str]): List of input strings.
kwargs (dict[str, Any]): Keyword arguments.
"""
raise NotImplementedError
async def test_streaming_completion(
self,
kernel: Kernel,
service_id: str,
services: dict[str, tuple[ServiceType, type[PromptExecutionSettings]]],
execution_settings_kwargs: dict[str, Any],
inputs: list[str | ChatMessageContent | list[ChatMessageContent]],
kwargs: dict[str, Any],
):
"""Test completion service (Streaming).
Args:
kernel (Kernel): Kernel instance.
service_id (str): Service name.
services (dict[str, tuple[ServiceType, type[PromptExecutionSettings]]]): Completion services.
execution_settings_kwargs (dict[str, Any]): Execution settings keyword arguments.
inputs (list[str]): List of input strings.
kwargs (dict[str, Any]): Keyword arguments.
"""
raise NotImplementedError
def evaluate(self, test_target: Any, **kwargs):
"""Evaluate the response.
Args:
test_target (Any): Test target.
kwargs (dict[str, Any]): Keyword arguments.
"""
raise NotImplementedError