Skip to main content

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

  1. 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:

  1. Hello World shown above
  2. Many CAP Actors interacting with each other
  3. A pair of interacting AutoGen Agents wrapped in CAP Actors
  4. CAP wrapped AutoGen Agents in a group chat
  5. Two AutoGen Agents running in different processes and communicating through CAP
  6. List all registered agents in CAP
  7. Run Agent in user supplied message loop

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

autogencap_rajan_jedi-0.0.11.tar.gz (3.1 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

autogencap_rajan_jedi-0.0.11-py3-none-any.whl (3.1 MB view details)

Uploaded Python 3

File details

Details for the file autogencap_rajan_jedi-0.0.11.tar.gz.

File metadata

  • Download URL: autogencap_rajan_jedi-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

Hashes for autogencap_rajan_jedi-0.0.11.tar.gz
Algorithm Hash digest
SHA256 dfe17ce2898fd6fd77da8da66273e5d55b842d222b6e960f9ffe0912b6533a44
MD5 328ab1ba22296326322e117d791f494f
BLAKE2b-256 55c711a6bf4b6575a5cb34d248009ce794855bd1ef89687623c6dbb8f6d41ba7

See more details on using hashes here.

File details

Details for the file autogencap_rajan_jedi-0.0.11-py3-none-any.whl.

File metadata

File hashes

Hashes for autogencap_rajan_jedi-0.0.11-py3-none-any.whl
Algorithm Hash digest
SHA256 c5c7a030d13aa63c8af0804c2616e4ee1e10bab60138a77dde1372e36b02b470
MD5 3cc0ab39c06fe4255e90c7196c1c4baf
BLAKE2b-256 7bbc723b412bb337dd0ff952c8e852bae9197d0f3a86a51f62bd6914a2f23bce

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page