Skip to content

Python: Bump Python version to 1.27.0 for a release. #11358

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Apr 3, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions python/semantic_kernel/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

from semantic_kernel.kernel import Kernel

__version__ = "1.26.1"
__version__ = "1.27.0"

DEFAULT_RC_VERSION = f"{__version__}-rc5"
DEFAULT_RC_VERSION = f"{__version__}-rc1"

__all__ = ["DEFAULT_RC_VERSION", "Kernel", "__version__"]
3 changes: 0 additions & 3 deletions python/semantic_kernel/agents/agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
from semantic_kernel.prompt_template.kernel_prompt_template import KernelPromptTemplate
from semantic_kernel.prompt_template.prompt_template_base import PromptTemplateBase
from semantic_kernel.prompt_template.prompt_template_config import PromptTemplateConfig
from semantic_kernel.utils.feature_stage_decorator import release_candidate
from semantic_kernel.utils.naming import generate_random_ascii_name
from semantic_kernel.utils.validation import AGENT_NAME_REGEX

Expand All @@ -31,7 +30,6 @@
TThreadType = TypeVar("TThreadType", bound="AgentThread")


@release_candidate
class AgentThread(ABC):
"""Base class for agent threads."""

Expand Down Expand Up @@ -107,7 +105,6 @@ async def _on_new_message(
raise NotImplementedError


@release_candidate
class AgentResponseItem(KernelBaseModel, Generic[TMessage]):
"""Class representing a response item from an agent.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@
from semantic_kernel.functions.kernel_function import TEMPLATE_FORMAT_MAP
from semantic_kernel.functions.kernel_plugin import KernelPlugin
from semantic_kernel.prompt_template.prompt_template_config import PromptTemplateConfig
from semantic_kernel.utils.feature_stage_decorator import release_candidate
from semantic_kernel.utils.telemetry.agent_diagnostics.decorators import (
trace_agent_get_response,
trace_agent_invocation,
Expand All @@ -47,7 +46,6 @@
logger: logging.Logger = logging.getLogger(__name__)


@release_candidate
class ChatHistoryAgentThread(AgentThread):
"""Chat History Agent Thread class."""

Expand Down Expand Up @@ -113,7 +111,6 @@ async def reduce(self) -> ChatHistory | None:
return await self._chat_history.reduce()


@release_candidate
class ChatCompletionAgent(Agent):
"""A Chat Completion Agent based on ChatCompletionClientBase."""

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,9 @@
from semantic_kernel.connectors.ai.open_ai.settings.azure_open_ai_settings import AzureOpenAISettings
from semantic_kernel.exceptions.agent_exceptions import AgentInitializationException
from semantic_kernel.utils.authentication.entra_id_authentication import get_entra_auth_token
from semantic_kernel.utils.feature_stage_decorator import release_candidate
from semantic_kernel.utils.telemetry.user_agent import APP_INFO, prepend_semantic_kernel_to_user_agent


@release_candidate
class AzureAssistantAgent(OpenAIAssistantAgent):
"""An Azure Assistant Agent class that extends the OpenAI Assistant Agent class."""

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@
from semantic_kernel.functions.kernel_function import TEMPLATE_FORMAT_MAP
from semantic_kernel.functions.kernel_plugin import KernelPlugin
from semantic_kernel.schema.kernel_json_schema_builder import KernelJsonSchemaBuilder
from semantic_kernel.utils.feature_stage_decorator import release_candidate
from semantic_kernel.utils.naming import generate_random_ascii_name
from semantic_kernel.utils.telemetry.agent_diagnostics.decorators import (
trace_agent_get_response,
Expand All @@ -68,7 +67,6 @@
logger: logging.Logger = logging.getLogger(__name__)


@release_candidate
class AssistantAgentThread(AgentThread):
"""An OpenAI Assistant Agent Thread class."""

Expand Down Expand Up @@ -160,7 +158,6 @@ async def get_messages(self, sort_order: Literal["asc", "desc"] | None = None) -
yield message


@release_candidate
class OpenAIAssistantAgent(Agent):
"""OpenAI Assistant Agent class.

Expand Down
Loading