You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The pattern for building multi-agent apps to be orchestrated by Docker Compose or Kubernetes involves the following steps:
Build a multi-agent app Python package containing three modules: core_services, agent_services, additional_services
Any service built in those modules also contain its launch() logic and gets executed if __name__ == "__main__"
This allows for a single Docker image for all of the services, and we just need to use a command that points to the correct service in order to build that service in Docker Compose or Kubernetes.
The code in the examples: kafka/pig-latin-translation or rabbitmq/multi-agent-app-rabbitmq utilize this pattern and feel a tad heavy. The point of this issue is to slim down the process/code for these examples and generally our method for building multi-agent apps for deployment.
The text was updated successfully, but these errors were encountered:
The pattern for building multi-agent apps to be orchestrated by Docker Compose or Kubernetes involves the following steps:
core_services
,agent_services
,additional_services
launch()
logic and gets executed if__name__ == "__main__"
The code in the examples:
kafka/pig-latin-translation
orrabbitmq/multi-agent-app-rabbitmq
utilize this pattern and feel a tad heavy. The point of this issue is to slim down the process/code for these examples and generally our method for building multi-agent apps for deployment.The text was updated successfully, but these errors were encountered: