update coact: add autogen/cache

This commit is contained in:
Timothyxxx
2025-08-21 19:03:35 +00:00
parent b14f1c7345
commit 15d9ddb612
8 changed files with 803 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
# Copyright (c) 2023 - 2025, AG2ai, Inc., AG2ai open-source projects maintainers and core contributors
#
# SPDX-License-Identifier: Apache-2.0
#
# Portions derived from https://github.com/microsoft/autogen are under the MIT License.
# SPDX-License-Identifier: MIT
from .abstract_cache_base import AbstractCache
from .cache import Cache
__all__ = ["AbstractCache", "Cache"]