mirror of
https://github.com/microsoft/autogen.git
synced 2025-10-02 11:37:55 +00:00

* Search directory for list of actors using regex '.*' gets all actors * docs changes * pre-commit fixes * Use ActorInfo from protobuf * pre-commit * Added zmq tests to work on removing sleeps * minor refactor of zmq tests * 1) Change DirSvr to user Broker. 2) Add req-router to broker 3) In ActorConnector use handshake and req/resp to remove sleep * 1) Change DirSvr to user Broker. 2) Add req-router to broker 3) In ActorConnector use handshake and req/resp to remove sleep * move socket creation to thread with recv * move socket creation to thread with recv * Better logging for DirectorySvc * better logging for directory svc * Use logging config * Start removing sleeps * pre-commit * Cleanup monitor socket
8 lines
228 B
Python
8 lines
228 B
Python
# Set the current log level
|
|
LOG_LEVEL = 0
|
|
IGNORED_LOG_CONTEXTS = []
|
|
xpub_url: str = "tcp://127.0.0.1:5555"
|
|
xsub_url: str = "tcp://127.0.0.1:5556"
|
|
router_url: str = "tcp://127.0.0.1:5557"
|
|
dealer_url: str = "tcp://127.0.0.1:5558"
|