Skip to content
This repository was archived by the owner on Jul 16, 2024. It is now read-only.

docs: update uagents #341

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion uAgents
Submodule uAgents updated 49 files
+4 −4 .github/workflows/ci-tests.yml
+1 −0 .pylintrc
+18 −1 docs/installation.md
+14 −8 docs/protocol.md
+38 −3 docs/remote-agents.md
+0 −17 examples/01-basic/main.py
+12 −0 examples/01-first-agent/main.py
+17 −0 examples/02-interval-task/main.py
+0 −37 examples/02-simple-protocol/main.py
+22 −0 examples/03-multiple-agents/main.py
+0 −89 examples/04-booking-protocol/main.py
+7 −4 examples/04-storage/main.py
+0 −54 examples/05-booking-protocol-split/main.py
+0 −24 examples/05-booking-protocol-split/protocols/book.py
+0 −31 examples/05-booking-protocol-split/protocols/query.py
+28 −0 examples/05-send-msg/main.py
+0 −0 examples/06-send-tokens/main.py
+2 −4 examples/07-msg-verification/main.py
+0 −36 examples/07-remote-agents/agent1.py
+0 −34 examples/07-remote-agents/agent2.py
+38 −0 examples/08-local-network-interaction/agent1.py
+30 −0 examples/08-local-network-interaction/agent2.py
+0 −34 examples/08-remote-agents-registration/agent1.py
+0 −30 examples/08-remote-agents-registration/agent2.py
+10 −6 examples/09-booking-protocol-demo/query.py
+2 −0 examples/09-booking-protocol-demo/restaurant.py
+1 −1 examples/10-cleaning-demo/cleaner.py
+1 −1 examples/10-cleaning-demo/user.py
+45 −0 examples/12-remote-agents/agent1.py
+32 −0 examples/12-remote-agents/agent2.py
+1,083 −780 poetry.lock
+7 −3 pyproject.toml
+156 −81 src/uagents/agent.py
+26 −9 src/uagents/asgi.py
+8 −2 src/uagents/config.py
+50 −13 src/uagents/context.py
+0 −0 src/uagents/contrib/__init__.py
+0 −0 src/uagents/contrib/protocols/__init__.py
+26 −0 src/uagents/contrib/protocols/protocol_query.py
+11 −3 src/uagents/dispatch.py
+10 −3 src/uagents/envelope.py
+2 −1 src/uagents/mailbox.py
+133 −5 src/uagents/network.py
+15 −7 src/uagents/query.py
+52 −10 src/uagents/resolver.py
+2 −2 tests/test_agent.py
+120 −31 tests/test_agent_registration.py
+0 −10 tests/test_basic.py
+57 −56 tests/test_server.py