mirror of
https://github.com/microsoft/autogen.git
synced 2025-09-27 09:09:18 +00:00

* Core CAP components + Autogen adapter + Demo * Cleanup Readme * C# folder * Cleanup readme * summary_method bug fix * CAN -> CAP * pre-commit fixes * pre-commit fixes * modification of sys path should ignore E402 * fix pre-commit check issues * Updated docs * Clean up docs * more refactoring * better packaging refactor * Refactoring for package changes * Run demo app without autogencap installed or in the path * Remove debug related sleep() * removed CAP in some class names * Investigate a logging framework that supports color in windows * added type hints * remove circular dependency * fixed pre-commit issues * pre-commit ruff issues * removed circular definition * pre-commit fixes * Fix pre-commit issues * pre-commit fixes * updated for _prepare_chat signature changes * Better instructions for demo and some minor refactoring * Added details that explain CAP * Reformat Readme * More ReadMe Formatting * Readme edits * Agent -> Actor * Broker can startup on it's own * Remote AutoGen Agents * Updated docs * 1) StandaloneBroker in demo 2) Removed Autogen only demo options * 1) Agent -> Actor refactor 2) init broker as early * rename user_proxy -> user_proxy_conn * Add DirectorySvc * Standalone demo refactor * Get ActorInfo from DirectorySvc when searching for Actor * Broker cleanup * Proper cleanup and remove debug sleep() * Run one directory service only. * fix paths to run demo apps from command line * Handle keyboard interrupt * Wait for Broker and Directory to start up * Move Terminate AGActor * Accept input from the user in UserProxy * Move sleeps close to operations that bind or connect * Comments * Created an encapsulated CAP Pair for AutoGen pair communication * pre-commit checks * fix pre-commit * Pair should not make assumptions about who is first and who is second * Use task passed into InitiateChat * Standalone directory svc * Fix broken LFS files * Long running DirectorySvc * DirectorySvc does not have a status * Exit DirectorySvc Loop * Debugging Remoting * Reduce frequency of status messages * Debugging remote Actor * roll back git-lfs updates * rollback git-lfs changes * Debug network connectivity * pre-commit fixes * Create a group chat interface familiar to AutoGen GroupChat users * pre-commit fixes
85 lines
2.6 KiB
Python
85 lines
2.6 KiB
Python
from typing import Dict, Optional, Union
|
|
from autogen import Agent
|
|
from ..ActorConnector import ActorConnector
|
|
from ..proto.Autogen_pb2 import GenReplyReq, GenReplyResp, PrepChat, ReceiveReq, Terminate
|
|
|
|
|
|
class AutoGenConnector:
|
|
"""
|
|
A specialized ActorConnector class for sending and receiving Autogen messages
|
|
to/from the CAP system.
|
|
"""
|
|
|
|
def __init__(self, cap_sender: ActorConnector):
|
|
self._can_channel: ActorConnector = cap_sender
|
|
|
|
def close(self):
|
|
"""
|
|
Close the connector.
|
|
"""
|
|
self._can_channel.close()
|
|
|
|
def _send_msg(self, msg):
|
|
"""
|
|
Send a message to CAP.
|
|
"""
|
|
serialized_msg = msg.SerializeToString()
|
|
self._can_channel.send_bin_msg(type(msg).__name__, serialized_msg)
|
|
|
|
def send_gen_reply_req(self):
|
|
"""
|
|
Send a GenReplyReq message to CAP and receive the response.
|
|
"""
|
|
msg = GenReplyReq()
|
|
serialized_msg = msg.SerializeToString()
|
|
_, _, _, resp = self._can_channel.binary_request(type(msg).__name__, serialized_msg)
|
|
gen_reply_resp = GenReplyResp()
|
|
gen_reply_resp.ParseFromString(resp)
|
|
return gen_reply_resp.data
|
|
|
|
def send_receive_req(
|
|
self,
|
|
message: Union[Dict, str],
|
|
sender: Agent,
|
|
request_reply: Optional[bool] = None,
|
|
silent: Optional[bool] = False,
|
|
):
|
|
"""
|
|
Send a ReceiveReq message to CAP.
|
|
"""
|
|
msg = ReceiveReq()
|
|
if isinstance(message, dict):
|
|
for key, value in message.items():
|
|
msg.data_map.data[key] = value
|
|
elif isinstance(message, str):
|
|
msg.data = message
|
|
msg.sender = sender.name
|
|
if request_reply is not None:
|
|
msg.request_reply = request_reply
|
|
if silent is not None:
|
|
msg.silent = silent
|
|
self._send_msg(msg)
|
|
|
|
def send_terminate(self, sender: Agent):
|
|
"""
|
|
Send a Terminate message to CAP.
|
|
"""
|
|
msg = Terminate()
|
|
msg.sender = sender.name
|
|
self._send_msg(msg)
|
|
|
|
def send_prep_chat(self, recipient: "Agent", clear_history: bool, prepare_recipient: bool = True) -> None:
|
|
"""
|
|
Send a PrepChat message to CAP.
|
|
|
|
Args:
|
|
recipient (Agent): _description_
|
|
clear_history (bool): _description_
|
|
prepare_recipient (bool, optional): _description_. Defaults to True.
|
|
"""
|
|
msg = PrepChat()
|
|
msg.recipient = recipient.name
|
|
msg.clear_history = clear_history
|
|
msg.prepare_recipient = prepare_recipient
|
|
self._send_msg(msg)
|