SIGN IN SIGN UP

Integrate cutting-edge LLM technology quickly and easily into your apps

0 0 94 C#
2023-03-16 19:54:34 -07:00
# Copyright (c) Microsoft. All rights reserved.
from semantic_kernel.memory.memory_query_result import MemoryQueryResult
from semantic_kernel.memory.semantic_text_memory_base import SemanticTextMemoryBase
Python: Add json schema handling. Add experimental tag to OpenAPI and Memory Connectors. (#6335) ### Motivation and Context The Python code base could handle some primitive types for the schema for tool call objects and kernel parameter metadata. However, it couldn't properly handle the more complex JSON schemas for tool call objects. <!-- 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 This PR introduces: - JSON schema handling for KernelParameterMetadata and tool call objects. - Updates to the tool call utils method to properly recurse on the KernelParameterMetadata's stucture. - Adds unit tests for this code. - Add experimental_class/experimental_functions to various parts of the code base like Memory Connectors and OpenAPI plugin. - Fixes #6310 - Fixes #6280 <!-- 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 :smile:
2024-05-20 17:56:30 -04:00
from semantic_kernel.utils.experimental_decorator import experimental_class
2023-03-16 19:54:34 -07:00
Python: Add json schema handling. Add experimental tag to OpenAPI and Memory Connectors. (#6335) ### Motivation and Context The Python code base could handle some primitive types for the schema for tool call objects and kernel parameter metadata. However, it couldn't properly handle the more complex JSON schemas for tool call objects. <!-- 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 This PR introduces: - JSON schema handling for KernelParameterMetadata and tool call objects. - Updates to the tool call utils method to properly recurse on the KernelParameterMetadata's stucture. - Adds unit tests for this code. - Add experimental_class/experimental_functions to various parts of the code base like Memory Connectors and OpenAPI plugin. - Fixes #6310 - Fixes #6280 <!-- 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 :smile:
2024-05-20 17:56:30 -04:00
@experimental_class
2023-03-16 19:54:34 -07:00
class NullMemory(SemanticTextMemoryBase):
async def save_information(
self,
collection: str,
text: str,
id: str,
description: str | None = None,
additional_metadata: str | None = None,
2023-03-16 19:54:34 -07:00
) -> None:
"""Nullifies behavior of SemanticTextMemoryBase save_information."""
return
2023-03-16 19:54:34 -07:00
async def save_reference(
2023-03-16 19:54:34 -07:00
self,
collection: str,
text: str,
external_id: str,
external_source_name: str,
description: str | None = None,
additional_metadata: str | None = None,
2023-03-16 19:54:34 -07:00
) -> None:
"""Nullifies behavior of SemanticTextMemoryBase save_reference."""
return
2023-03-16 19:54:34 -07:00
async def get(self, collection: str, query: str) -> MemoryQueryResult | None:
"""Nullifies behavior of SemanticTextMemoryBase get."""
2023-03-16 19:54:34 -07:00
return None
async def search(
2023-03-16 19:54:34 -07:00
self,
collection: str,
query: str,
limit: int = 1,
min_relevance_score: float = 0.7,
) -> list[MemoryQueryResult]:
"""Nullifies behavior of SemanticTextMemoryBase search."""
2023-03-16 19:54:34 -07:00
return []
async def get_collections(self) -> list[str]:
"""Nullifies behavior of SemanticTextMemoryBase get_collections."""
2023-03-16 19:54:34 -07:00
return []
NullMemory.instance = NullMemory() # type: ignore