CAP w/ autogen bindings
Project description
Composable Actor Platform (CAP) for AutoGen
I just want to run the remote AutoGen agents!
Python Instructions (Windows, Linux, MacOS):
pip install autogencap-rajan.jedi
- AutoGen require OAI_CONFIG_LIST. AutoGen python requirements: 3.8 <= python <= 3.11
## What is Composable Actor Platform (CAP)?
AutoGen is about Agents and Agent Orchestration. CAP extends AutoGen to allows Agents to communicate via a message bus. CAP, therefore, deals with the space between these components. CAP is a message based, actor platform that allows actors to be composed into arbitrary graphs.
Actors can register themselves with CAP, find other agents, construct arbitrary graphs, send and receive messages independently and many, many, many other things.
```python
# CAP Library
from autogencap.ComponentEnsemble import ComponentEnsemble
from autogencap.Actor import Actor
# A simple Agent
class GreeterAgent(Actor):
def __init__(self):
super().__init__(
agent_name="Greeter",
description="This is the greeter agent, who knows how to greet people.")
# Prints out the message it receives
def on_txt_msg(self, msg):
print(f"Greeter received: {msg}")
return True
ensemble = ComponentEnsemble()
# Create an agent
agent = GreeterAgent()
# Register an agent
ensemble.register(agent) # start message processing
# call on_connect() on all Agents
ensemble.connect()
# Get a channel to the agent
greeter_link = ensemble.find_by_name("Greeter")
#Send a message to the agent
greeter_link.send_txt_msg("Hello World!")
# Cleanup
greeter_link.close()
ensemble.disconnect()
Check out other demos in the py/demo
directory. We show the following:
- Hello World shown above
- Many CAP Actors interacting with each other
- A pair of interacting AutoGen Agents wrapped in CAP Actors
- CAP wrapped AutoGen Agents in a group chat
- Two AutoGen Agents running in different processes and communicating through CAP
- List all registered agents in CAP
- Run Agent in user supplied message loop
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
autogencap-0.0.11.tar.gz
(3.1 MB
view details)
Built Distribution
File details
Details for the file autogencap-0.0.11.tar.gz
.
File metadata
- Download URL: autogencap-0.0.11.tar.gz
- Upload date:
- Size: 3.1 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e34555396cc7b7fd4734a34ed05459797bb8a1616412f389f2a93b7eb9ef8dab |
|
MD5 | 3cf93db6e5cf2a8650972a518afaa5b2 |
|
BLAKE2b-256 | d66d1156d2b5223912d215c3ceab35326023f88305555a8f01cae37cb95a0a55 |
File details
Details for the file autogencap-0.0.11-py3-none-any.whl
.
File metadata
- Download URL: autogencap-0.0.11-py3-none-any.whl
- Upload date:
- Size: 3.1 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6dc9568902fb1705cc32356530b7e3dac4d5a8c4cf4f20dd044dc632d333a908 |
|
MD5 | b4d5f975ea9859d37d2ae357487e3fd9 |
|
BLAKE2b-256 | 47462e0996f75ea4adfd1379c8a9895089a28b33d9e95cd3db706ff2bc4bbe55 |