mirror of
https://github.com/run-llama/llama_deploy.git
synced 2026-07-25 16:15:22 -04:00
[PR #1] [MERGED] MessageQueue items #197
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/run-llama/llama_deploy/pull/1
Author: @nerdai
Created: 6/5/2024
Status: ✅ Merged
Merged: 6/6/2024
Merged by: @nerdai
Base:
main← Head:nerdai/message-queue📝 Commits (10+)
64d6ac7scaffoldd68bc1cfmt307d5e6wipb6518c1add simple298b759test for simple mq1f4a683add different consumer type to test4865581deregister testdd3b915add publish test24ea6e2infinite loop for passing messages2323a0elock to privateattr📊 Changes
15 files changed (+332 additions, -2 deletions)
View changed files
➕
.vscode/settings.json(+12 -0)📝
agentfile/agent_server/types.py(+1 -1)➕
agentfile/message_consumers/__init__.py(+0 -0)➕
agentfile/message_consumers/base.py(+36 -0)➕
agentfile/message_queues/__init__.py(+0 -0)➕
agentfile/message_queues/base.py(+50 -0)➕
agentfile/message_queues/simple.py(+103 -0)➕
agentfile/messages/__init__.py(+0 -0)➕
agentfile/messages/base.py(+18 -0)📝
poetry.lock(+19 -1)📝
pyproject.toml(+1 -0)➕
tests/__pycache__/__init__.cpython-310.pyc(+0 -0)➕
tests/__pycache__/test_agent_server.cpython-310-pytest-7.4.4.pyc(+0 -0)➕
tests/message_queue_consumers/test_base.py(+0 -0)➕
tests/message_queues/test_simple.py(+92 -0)📄 Description
This PR adds the first working version of our MessageQueue and related absractions.
BaseMessageQueue,SimpleMessageQueueBaseMessageBaseMessageQueueConsumer🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.