pbesa 4.0.0__tar.gz → 4.0.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {pbesa-4.0.0 → pbesa-4.0.1}/PKG-INFO +3 -2
- pbesa-4.0.1/pbesa/cognitive.py +705 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/pbesa/mas.py +7 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/pbesa/models.py +5 -7
- pbesa-4.0.1/pbesa/social/dialog.py +203 -0
- pbesa-4.0.1/pbesa/social/prompts.py +40 -0
- pbesa-4.0.1/pbesa/social/selected_dispatcher_team.py +373 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/pbesa.egg-info/PKG-INFO +3 -2
- {pbesa-4.0.0 → pbesa-4.0.1}/pbesa.egg-info/SOURCES.txt +2 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/setup.py +1 -1
- pbesa-4.0.0/pbesa/cognitive.py +0 -438
- pbesa-4.0.0/pbesa/social/dialog.py +0 -153
- {pbesa-4.0.0 → pbesa-4.0.1}/.gitignore +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/LICENSE +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/LICENSE.txt +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/MANIFEST +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/README.md +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/examples/django/helloworld/db.sqlite3 +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/examples/django/helloworld/helloworld/__init__.py +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/examples/django/helloworld/helloworld/__pycache__/__init__.cpython-36.pyc +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/examples/django/helloworld/helloworld/__pycache__/pbesa.cpython-36.pyc +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/examples/django/helloworld/helloworld/__pycache__/settings.cpython-36.pyc +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/examples/django/helloworld/helloworld/__pycache__/urls.cpython-36.pyc +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/examples/django/helloworld/helloworld/__pycache__/wsgi.cpython-36.pyc +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/examples/django/helloworld/helloworld/asgi.py +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/examples/django/helloworld/helloworld/pbesa.py +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/examples/django/helloworld/helloworld/settings.py +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/examples/django/helloworld/helloworld/urls.py +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/examples/django/helloworld/helloworld/wsgi.py +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/examples/django/helloworld/manage.py +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/examples/django/helloworld/translate/__init__.py +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/examples/django/helloworld/translate/__pycache__/__init__.cpython-36.pyc +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/examples/django/helloworld/translate/__pycache__/admin.cpython-36.pyc +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/examples/django/helloworld/translate/__pycache__/apps.cpython-36.pyc +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/examples/django/helloworld/translate/__pycache__/models.cpython-36.pyc +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/examples/django/helloworld/translate/__pycache__/urls.cpython-36.pyc +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/examples/django/helloworld/translate/__pycache__/views.cpython-36.pyc +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/examples/django/helloworld/translate/admin.py +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/examples/django/helloworld/translate/apps.py +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/examples/django/helloworld/translate/mas/controller/__pycache__/translatecontroller.cpython-36.pyc +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/examples/django/helloworld/translate/mas/controller/__pycache__/translatedelegate.cpython-36.pyc +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/examples/django/helloworld/translate/mas/controller/__pycache__/translateresponse.cpython-36.pyc +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/examples/django/helloworld/translate/mas/controller/translatecontroller.py +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/examples/django/helloworld/translate/mas/controller/translatedelegate.py +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/examples/django/helloworld/translate/mas/controller/translateresponse.py +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/examples/django/helloworld/translate/mas/worker/__pycache__/translatetask.cpython-36.pyc +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/examples/django/helloworld/translate/mas/worker/__pycache__/workeragent.cpython-36.pyc +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/examples/django/helloworld/translate/mas/worker/translatetask.py +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/examples/django/helloworld/translate/mas/worker/workeragent.py +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/examples/django/helloworld/translate/migrations/__init__.py +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/examples/django/helloworld/translate/migrations/__pycache__/__init__.cpython-36.pyc +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/examples/django/helloworld/translate/models.py +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/examples/django/helloworld/translate/tests.py +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/examples/django/helloworld/translate/urls.py +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/examples/django/helloworld/translate/views.py +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/examples/remote/mas/controller/__pycache__/countercontroller.cpython-36.pyc +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/examples/remote/mas/controller/__pycache__/counterdelegate.cpython-36.pyc +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/examples/remote/mas/controller/__pycache__/counterresponse.cpython-36.pyc +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/examples/remote/mas/controller/__pycache__/translatecontroller.cpython-36.pyc +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/examples/remote/mas/controller/__pycache__/translatedelegate.cpython-36.pyc +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/examples/remote/mas/controller/__pycache__/translateresponse.cpython-36.pyc +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/examples/remote/mas/controller/countercontroller.py +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/examples/remote/mas/controller/counterdelegate.py +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/examples/remote/mas/controller/counterresponse.py +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/examples/remote/mas/worker/__pycache__/counteragent.cpython-36.pyc +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/examples/remote/mas/worker/__pycache__/countertask.cpython-36.pyc +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/examples/remote/mas/worker/__pycache__/translatetask.cpython-36.pyc +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/examples/remote/mas/worker/__pycache__/workeragent.cpython-36.pyc +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/examples/remote/mas/worker/counteragent.py +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/examples/remote/mas/worker/countertask.py +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/examples/remote/remote_a.py +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/examples/remote/remote_b.py +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/examples/remote/remote_c.py +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/pbesa/__init__.py +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/pbesa/kernel/__init__.py +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/pbesa/kernel/adapter.py +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/pbesa/kernel/agent.py +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/pbesa/kernel/io/__init__.py +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/pbesa/kernel/io/system_file.py +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/pbesa/kernel/io/tcp_server.py +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/pbesa/kernel/res/__init__.py +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/pbesa/kernel/res/__pycache__/__init__.cpython-36.pyc +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/pbesa/kernel/res/__pycache__/__init__.cpython-37.pyc +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/pbesa/kernel/res/__pycache__/__init__.cpython-38.pyc +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/pbesa/kernel/res/__pycache__/__init__.cpython-39.pyc +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/pbesa/kernel/res/conf.json +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/pbesa/kernel/util.py +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/pbesa/kernel/world.py +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/pbesa/remote/__init__.py +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/pbesa/remote/adm_listener.py +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/pbesa/remote/adm_listener_handler.py +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/pbesa/remote/exceptions.py +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/pbesa/remote/remote_adm.py +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/pbesa/remote/remote_adm_handler.py +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/pbesa/social/__init__.py +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/pbesa/social/collaborative_team.py +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/pbesa/social/delegator.py +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/pbesa/social/delegator_team.py +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/pbesa/social/dispatcher_team.py +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/pbesa/social/templates.py +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/pbesa/social/worker.py +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/pbesa.egg-info/dependency_links.txt +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/pbesa.egg-info/requires.txt +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/pbesa.egg-info/top_level.txt +0 -0
- {pbesa-4.0.0 → pbesa-4.0.1}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.2
|
2
2
|
Name: pbesa
|
3
|
-
Version: 4.0.
|
3
|
+
Version: 4.0.1
|
4
4
|
License-File: LICENSE
|
5
5
|
License-File: LICENSE.txt
|
6
6
|
Requires-Dist: pymongo==4.6.3
|
@@ -8,3 +8,4 @@ Requires-Dist: requests==2.32.3
|
|
8
8
|
Requires-Dist: azure-ai-projects==1.0.0b6
|
9
9
|
Requires-Dist: azure-ai-inference==1.0.0b9
|
10
10
|
Requires-Dist: azure-identity==1.20.0
|
11
|
+
Dynamic: requires-dist
|