Skip to content

Commit a204be8

Browse files
authored
Python: Bump Python version to 0.4.1. Make TextMemorySkill attributes ClassVar. (#4001)
Bump Python version to 0.4.1. Make TextMemorySkill attributes ClassVar. ### Motivation and Context Bumping Python version to 0.4.1 for next release. Fix TextMemorySkill attribute error to make it be a ClassVar after upgrading to Pydantic 2.0. <!-- Thank you for your contribution to the semantic-kernel repo! Please help reviewers and future users, providing the following information: 1. Why is this change required? 2. What problem does it solve? 3. What scenario does it contribute to? 4. If it fixes an open issue, please link to the issue here. --> ### Description <!-- Describe your changes, the overall approach, the underlying design. These notes will help understanding how your code works. Thanks! --> ### Contribution Checklist <!-- Before submitting this PR, please make sure: --> - [X] The code builds clean without any errors or warnings - [X] The PR follows the [SK Contribution Guidelines](https://github.com/microsoft/semantic-kernel/blob/main/CONTRIBUTING.md) and the [pre-submission formatting script](https://github.com/microsoft/semantic-kernel/blob/main/CONTRIBUTING.md#development-scripts) raises no violations - [X] All unit tests pass, and I have added new tests where possible - [X] I didn't break anyone 😄 --------- Co-authored-by: Evan Mattson <[email protected]>
1 parent 3249099 commit a204be8

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

python/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "semantic-kernel"
3-
version = "0.4.0.dev"
3+
version = "0.4.1.dev"
44
description = ""
55
authors = ["Microsoft <[email protected]>"]
66
readme = "pip/README.md"

python/semantic_kernel/core_skills/text_memory_skill.py

+8-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Copyright (c) Microsoft. All rights reserved.
22
import json
33
import typing as t
4+
from typing import ClassVar
45

56
from semantic_kernel.sk_pydantic import SKBaseModel
67
from semantic_kernel.skill_definition import sk_function, sk_function_context_parameter
@@ -10,13 +11,13 @@
1011

1112

1213
class TextMemorySkill(SKBaseModel):
13-
COLLECTION_PARAM: str = "collection"
14-
RELEVANCE_PARAM: str = "relevance"
15-
KEY_PARAM: str = "key"
16-
LIMIT_PARAM: str = "limit"
17-
DEFAULT_COLLECTION: str = "generic"
18-
DEFAULT_RELEVANCE: float = 0.75
19-
DEFAULT_LIMIT: int = 1
14+
COLLECTION_PARAM: ClassVar[str] = "collection"
15+
RELEVANCE_PARAM: ClassVar[str] = "relevance"
16+
KEY_PARAM: ClassVar[str] = "key"
17+
LIMIT_PARAM: ClassVar[str] = "limit"
18+
DEFAULT_COLLECTION: ClassVar[str] = "generic"
19+
DEFAULT_RELEVANCE: ClassVar[float] = 0.75
20+
DEFAULT_LIMIT: ClassVar[int] = 1
2021

2122
# @staticmethod
2223
@sk_function(

0 commit comments

Comments
 (0)