21 lines
786 B
Python
21 lines
786 B
Python
# 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 ...assistant_agent import ConversableAgent
|
|
|
|
|
|
class AgentCapability:
|
|
"""Base class for composable capabilities that can be added to an agent."""
|
|
|
|
def __init__(self):
|
|
pass
|
|
|
|
def add_to_agent(self, agent: ConversableAgent):
|
|
"""Adds a particular capability to the given agent. Must be implemented by the capability subclass.
|
|
An implementation will typically call agent.register_hook() one or more times. See teachability.py as an example.
|
|
"""
|
|
raise NotImplementedError
|