hyperpocket 0.3.6__tar.gz → 0.4.0__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/PKG-INFO +4 -1
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/provider.py +2 -0
- hyperpocket-0.4.0/hyperpocket/auth/weaviate/context.py +12 -0
- hyperpocket-0.4.0/hyperpocket/auth/weaviate/token_context.py +11 -0
- hyperpocket-0.4.0/hyperpocket/auth/weaviate/token_handler.py +68 -0
- hyperpocket-0.4.0/hyperpocket/auth/weaviate/token_schema.py +7 -0
- hyperpocket-0.4.0/hyperpocket/auth/zinc/context.py +12 -0
- hyperpocket-0.4.0/hyperpocket/auth/zinc/token_context.py +11 -0
- hyperpocket-0.4.0/hyperpocket/auth/zinc/token_handler.py +64 -0
- hyperpocket-0.4.0/hyperpocket/auth/zinc/token_schema.py +7 -0
- hyperpocket-0.4.0/hyperpocket/cli/eject.py +14 -0
- hyperpocket-0.4.0/hyperpocket/cli/pull.py +13 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/config/settings.py +2 -1
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/pocket_core.py +41 -68
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/pocket_main.py +37 -16
- hyperpocket-0.4.0/hyperpocket/repository/__init__.py +4 -0
- hyperpocket-0.4.0/hyperpocket/repository/repository.py +8 -0
- hyperpocket-0.4.0/hyperpocket/repository/tool_reference.py +28 -0
- hyperpocket-0.4.0/hyperpocket/server/auth/weaviate.py +27 -0
- hyperpocket-0.4.0/hyperpocket/server/auth/zinc.py +27 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/server/server.py +127 -61
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/session/in_memory.py +13 -3
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/tool/__init__.py +0 -3
- hyperpocket-0.4.0/hyperpocket/tool/dock/__init__.py +3 -0
- hyperpocket-0.4.0/hyperpocket/tool/dock/dock.py +34 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/tool/function/__init__.py +1 -1
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/tool/function/tool.py +62 -32
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/tool/tool.py +1 -9
- hyperpocket-0.4.0/hyperpocket/tool_like.py +6 -0
- hyperpocket-0.4.0/hyperpocket/util/generate_slug.py +4 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/util/json_schema_to_model.py +5 -1
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/pyproject.toml +10 -1
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/tests/test_pocket_core.py +1 -1
- hyperpocket-0.4.0/tests/tool/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/uv.lock +75 -8
- hyperpocket-0.3.6/hyperpocket/cli/eject.py +0 -19
- hyperpocket-0.3.6/hyperpocket/cli/pull.py +0 -18
- hyperpocket-0.3.6/hyperpocket/cli/sync.py +0 -17
- hyperpocket-0.3.6/hyperpocket/repository/__init__.py +0 -5
- hyperpocket-0.3.6/hyperpocket/repository/lock.py +0 -240
- hyperpocket-0.3.6/hyperpocket/repository/lockfile.py +0 -62
- hyperpocket-0.3.6/hyperpocket/repository/repository.py +0 -43
- hyperpocket-0.3.6/hyperpocket/server/tool/__init__.py +0 -10
- hyperpocket-0.3.6/hyperpocket/server/tool/dto/script.py +0 -33
- hyperpocket-0.3.6/hyperpocket/server/tool/wasm.py +0 -46
- hyperpocket-0.3.6/hyperpocket/tool/wasm/README.md +0 -166
- hyperpocket-0.3.6/hyperpocket/tool/wasm/__init__.py +0 -3
- hyperpocket-0.3.6/hyperpocket/tool/wasm/browser.py +0 -63
- hyperpocket-0.3.6/hyperpocket/tool/wasm/invoker.py +0 -41
- hyperpocket-0.3.6/hyperpocket/tool/wasm/script.py +0 -134
- hyperpocket-0.3.6/hyperpocket/tool/wasm/templates/__init__.py +0 -35
- hyperpocket-0.3.6/hyperpocket/tool/wasm/templates/node.py +0 -87
- hyperpocket-0.3.6/hyperpocket/tool/wasm/templates/python.py +0 -93
- hyperpocket-0.3.6/hyperpocket/tool/wasm/tool.py +0 -163
- hyperpocket-0.3.6/hyperpocket/tool_like.py +0 -5
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/.gitignore +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/README.md +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/README.md +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/activeloop/README.md +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/activeloop/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/activeloop/context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/activeloop/token_context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/activeloop/token_handler.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/activeloop/token_schema.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/adobe/README.md +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/adobe/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/adobe/context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/adobe/token_context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/adobe/token_handler.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/adobe/token_schema.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/affinity/README.md +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/affinity/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/affinity/context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/affinity/token_context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/affinity/token_handler.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/affinity/token_schema.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/agentql/README.md +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/agentql/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/agentql/context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/agentql/token_context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/agentql/token_handler.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/agentql/token_schema.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/ahrefs/README.md +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/ahrefs/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/ahrefs/context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/ahrefs/token_context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/ahrefs/token_handler.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/ahrefs/token_schema.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/airtable/README.md +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/airtable/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/airtable/context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/airtable/token_context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/airtable/token_handler.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/airtable/token_schema.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/alchemy/README.md +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/alchemy/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/alchemy/context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/alchemy/token_context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/alchemy/token_handler.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/alchemy/token_schema.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/altoviz/README.md +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/altoviz/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/altoviz/context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/altoviz/token_context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/altoviz/token_handler.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/altoviz/token_schema.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/apitoken/README.md +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/apitoken/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/apitoken/context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/apitoken/token_context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/apitoken/token_handler.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/apitoken/token_schema.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/asana/README.md +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/asana/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/asana/context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/asana/oauth2_context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/asana/oauth2_handler.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/asana/oauth2_schema.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/bamboohr/README.md +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/bamboohr/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/bamboohr/context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/bamboohr/token_context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/bamboohr/token_handler.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/bamboohr/token_schema.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/bitbucket/README.md +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/bitbucket/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/bitbucket/context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/bitbucket/oauth2_context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/bitbucket/oauth2_handler.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/bitbucket/oauth2_schema.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/bitwarden/README.md +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/bitwarden/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/bitwarden/context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/bitwarden/token_context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/bitwarden/token_handler.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/bitwarden/token_schema.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/brevo/README.md +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/brevo/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/brevo/context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/brevo/token_context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/brevo/token_handler.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/brevo/token_schema.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/brex/README.md +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/brex/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/brex/context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/brex/token_context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/brex/token_handler.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/brex/token_schema.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/cal/README.md +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/cal/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/cal/context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/cal/token_context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/cal/token_handler.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/cal/token_schema.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/calendly/README.md +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/calendly/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/calendly/context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/calendly/oauth2_context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/calendly/oauth2_handler.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/calendly/oauth2_schema.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/canvas/README.md +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/canvas/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/canvas/context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/canvas/token_context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/canvas/token_handler.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/canvas/token_schema.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/clickup/README.md +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/clickup/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/clickup/context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/clickup/token_context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/clickup/token_handler.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/clickup/token_schema.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/cloudflare/README.md +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/cloudflare/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/cloudflare/context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/cloudflare/token_context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/cloudflare/token_handler.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/cloudflare/token_schema.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/dailybot/README.md +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/dailybot/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/dailybot/context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/dailybot/token_context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/dailybot/token_handler.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/dailybot/token_schema.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/datadog/README.md +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/datadog/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/datadog/context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/datadog/token_context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/datadog/token_handler.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/datadog/token_schema.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/discord/README.md +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/discord/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/discord/context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/discord/oauth2_context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/discord/oauth2_handler.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/discord/oauth2_schema.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/discord/token_context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/discord/token_handler.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/discord/token_schema.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/discordbot/README.md +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/discordbot/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/discordbot/context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/discordbot/token_context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/discordbot/token_handler.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/discordbot/token_schema.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/elevenlabs/README.md +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/elevenlabs/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/elevenlabs/context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/elevenlabs/token_context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/elevenlabs/token_handler.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/elevenlabs/token_schema.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/exa/README.md +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/exa/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/exa/context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/exa/token_context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/exa/token_handler.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/exa/token_schema.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/facebook/README.md +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/facebook/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/facebook/context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/facebook/oauth2_context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/facebook/oauth2_handler.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/facebook/oauth2_schema.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/finage/README.md +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/finage/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/finage/context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/finage/token_context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/finage/token_handler.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/finage/token_schema.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/github/README.md +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/github/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/github/context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/github/oauth2_context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/github/oauth2_handler.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/github/oauth2_schema.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/github/token_context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/github/token_handler.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/github/token_schema.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/google/README.md +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/google/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/google/context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/google/oauth2_context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/google/oauth2_handler.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/google/oauth2_schema.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/gumloop/README.md +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/gumloop/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/gumloop/context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/gumloop/token_context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/gumloop/token_handler.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/gumloop/token_schema.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/handler.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/happyrobot/README.md +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/happyrobot/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/happyrobot/context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/happyrobot/token_context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/happyrobot/token_handler.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/happyrobot/token_schema.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/heygen/README.md +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/heygen/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/heygen/context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/heygen/token_context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/heygen/token_handler.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/heygen/token_schema.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/hubspot/README.md +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/hubspot/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/hubspot/context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/hubspot/oauth2_context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/hubspot/oauth2_handler.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/hubspot/oauth2_schema.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/hubspot/token_context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/hubspot/token_handler.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/hubspot/token_schema.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/jira/README.md +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/jira/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/jira/context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/jira/oauth2_context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/jira/oauth2_handler.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/jira/oauth2_schema.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/jira/token_context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/jira/token_handler.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/jira/token_schema.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/klaviyo/README.md +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/klaviyo/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/klaviyo/context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/klaviyo/token_context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/klaviyo/token_handler.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/klaviyo/token_schema.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/lever/README.md +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/lever/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/lever/context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/lever/token_context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/lever/token_handler.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/lever/token_schema.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/lever_sandbox/README.md +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/lever_sandbox/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/lever_sandbox/context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/lever_sandbox/token_context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/lever_sandbox/token_handler.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/lever_sandbox/token_schema.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/linear/README.md +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/linear/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/linear/context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/linear/oauth2_context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/linear/oauth2_handler.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/linear/oauth2_schema.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/linear/token_context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/linear/token_handler.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/linear/token_schema.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/linkedin/README.md +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/linkedin/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/linkedin/context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/linkedin/oauth2_context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/linkedin/oauth2_handler.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/linkedin/oauth2_schema.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/listennotes/README.md +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/listennotes/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/listennotes/context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/listennotes/token_context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/listennotes/token_handler.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/listennotes/token_schema.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/mailchimp/README.md +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/mailchimp/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/mailchimp/context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/mailchimp/oauth2_context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/mailchimp/oauth2_handler.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/mailchimp/oauth2_schema.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/mem0/README.md +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/mem0/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/mem0/context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/mem0/token_context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/mem0/token_handler.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/mem0/token_schema.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/microsoft_clarity/README.md +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/microsoft_clarity/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/microsoft_clarity/context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/microsoft_clarity/token_context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/microsoft_clarity/token_handler.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/microsoft_clarity/token_schema.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/neon/README.md +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/neon/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/neon/context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/neon/token_context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/neon/token_handler.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/neon/token_schema.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/ngrok/README.md +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/ngrok/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/ngrok/context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/ngrok/token_context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/ngrok/token_handler.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/ngrok/token_schema.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/notion/README.md +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/notion/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/notion/context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/notion/oauth2_context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/notion/oauth2_handler.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/notion/oauth2_schema.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/notion/token_context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/notion/token_handler.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/notion/token_schema.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/oncehub/README.md +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/oncehub/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/oncehub/context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/oncehub/token_context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/oncehub/token_handler.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/oncehub/token_schema.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/pagerduty/README.md +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/pagerduty/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/pagerduty/context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/pagerduty/token_context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/pagerduty/token_handler.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/pagerduty/token_schema.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/pandadoc/README.md +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/pandadoc/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/pandadoc/context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/pandadoc/token_context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/pandadoc/token_handler.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/pandadoc/token_schema.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/pipedrive/README.md +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/pipedrive/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/pipedrive/context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/pipedrive/token_context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/pipedrive/token_handler.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/pipedrive/token_schema.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/posthog/README.md +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/posthog/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/posthog/context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/posthog/token_context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/posthog/token_handler.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/posthog/token_schema.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/ravenseotools/README.md +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/ravenseotools/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/ravenseotools/context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/ravenseotools/token_context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/ravenseotools/token_handler.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/ravenseotools/token_schema.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/reddit/README.md +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/reddit/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/reddit/context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/reddit/oauth2_context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/reddit/oauth2_handler.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/reddit/oauth2_schema.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/salesforce/README.md +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/salesforce/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/salesforce/context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/salesforce/oauth2_context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/salesforce/oauth2_handler.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/salesforce/oauth2_schema.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/schema.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/semantic_scholar/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/semantic_scholar/context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/semantic_scholar/token_context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/semantic_scholar/token_handler.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/semantic_scholar/token_schema.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/sendgrid/README.md +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/sendgrid/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/sendgrid/context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/sendgrid/token_context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/sendgrid/token_handler.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/sendgrid/token_schema.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/serpapi/README.md +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/serpapi/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/serpapi/context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/serpapi/token_context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/serpapi/token_handler.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/serpapi/token_schema.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/slack/README.md +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/slack/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/slack/context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/slack/oauth2_context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/slack/oauth2_handler.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/slack/oauth2_schema.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/slack/token_context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/slack/token_handler.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/slack/token_schema.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/spotify/README.md +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/spotify/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/spotify/context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/spotify/oauth2_context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/spotify/oauth2_handler.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/spotify/oauth2_schema.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/stripe/README.md +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/stripe/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/stripe/context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/stripe/token_context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/stripe/token_handler.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/stripe/token_schema.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/supabase/README.md +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/supabase/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/supabase/context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/supabase/token_context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/supabase/token_handler.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/supabase/token_schema.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/tavily/README.md +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/tavily/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/tavily/context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/tavily/token_context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/tavily/token_handler.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/tavily/token_schema.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/timekit/README.md +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/timekit/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/timekit/context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/timekit/token_context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/timekit/token_handler.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/timekit/token_schema.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/trello/README.md +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/trello/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/trello/context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/trello/token_context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/trello/token_handler.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/trello/token_schema.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/wandb/README.md +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/wandb/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/wandb/context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/wandb/token_context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/wandb/token_handler.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/wandb/token_schema.py +0 -0
- {hyperpocket-0.3.6/hyperpocket/auth/workiom → hyperpocket-0.4.0/hyperpocket/auth/weaviate}/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/workiom/README.md +0 -0
- {hyperpocket-0.3.6/hyperpocket/auth/x → hyperpocket-0.4.0/hyperpocket/auth/workiom}/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/workiom/context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/workiom/token_context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/workiom/token_handler.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/workiom/token_schema.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/x/README.md +0 -0
- {hyperpocket-0.3.6/hyperpocket/auth/zoom → hyperpocket-0.4.0/hyperpocket/auth/x}/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/x/context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/x/oauth2_context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/x/oauth2_handler.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/x/oauth2_schema.py +0 -0
- {hyperpocket-0.3.6/hyperpocket/cli → hyperpocket-0.4.0/hyperpocket/auth/zinc}/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/zoom/README.md +0 -0
- {hyperpocket-0.3.6/hyperpocket/cli/codegen → hyperpocket-0.4.0/hyperpocket/auth/zoom}/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/zoom/context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/zoom/oauth2_context.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/zoom/oauth2_handler.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/auth/zoom/oauth2_schema.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/builtin.py +0 -0
- {hyperpocket-0.3.6/hyperpocket/server/tool/dto → hyperpocket-0.4.0/hyperpocket/cli}/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/cli/__main__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/cli/auth_oauth2.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/cli/auth_token.py +0 -0
- {hyperpocket-0.3.6/hyperpocket/tool/tests → hyperpocket-0.4.0/hyperpocket/cli/codegen}/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/cli/codegen/auth/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/cli/codegen/auth/auth_context_template.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/cli/codegen/auth/auth_oauth2_context_template.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/cli/codegen/auth/auth_oauth2_handler_template.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/cli/codegen/auth/auth_oauth2_schema_template.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/cli/codegen/auth/auth_token_context_template.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/cli/codegen/auth/auth_token_handler_template.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/cli/codegen/auth/auth_token_schema_template.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/cli/codegen/auth/server_auth_template.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/cli/codegen/tool/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/cli/codegen/tool/tool_main_template.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/cli/tool_create.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/cli/tool_export.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/config/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/config/auth.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/config/git.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/config/logger.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/config/session.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/constants.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/futures/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/futures/futurestore.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/pocket_auth.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/prompts.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/server/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/server/auth/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/server/auth/activeloop.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/server/auth/adobe.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/server/auth/affinity.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/server/auth/agentql.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/server/auth/ahrefs.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/server/auth/airtable.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/server/auth/alchemy.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/server/auth/altoviz.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/server/auth/apitoken.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/server/auth/asana.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/server/auth/bamboohr.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/server/auth/bitbucket.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/server/auth/bitwarden.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/server/auth/brevo.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/server/auth/brex.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/server/auth/cal.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/server/auth/calendly.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/server/auth/canvas.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/server/auth/clickup.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/server/auth/cloudflare.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/server/auth/dailybot.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/server/auth/datadog.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/server/auth/discord.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/server/auth/discordbot.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/server/auth/elevenlabs.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/server/auth/exa.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/server/auth/facebook.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/server/auth/finage.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/server/auth/github.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/server/auth/google.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/server/auth/gumloop.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/server/auth/happyrobot.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/server/auth/heygen.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/server/auth/hubspot.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/server/auth/jira.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/server/auth/klaviyo.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/server/auth/lever.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/server/auth/lever_sandbox.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/server/auth/linear.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/server/auth/linkedin.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/server/auth/listennotes.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/server/auth/mailchimp.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/server/auth/mem0.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/server/auth/microsoft_clarity.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/server/auth/neon.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/server/auth/ngrok.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/server/auth/notion.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/server/auth/oncehub.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/server/auth/pagerduty.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/server/auth/pandadoc.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/server/auth/pipedrive.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/server/auth/posthog.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/server/auth/ravenseotools.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/server/auth/reddit.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/server/auth/salesforce.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/server/auth/semantic_scholar.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/server/auth/sendgrid.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/server/auth/serpapi.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/server/auth/slack.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/server/auth/spotify.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/server/auth/stripe.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/server/auth/supabase.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/server/auth/tavily.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/server/auth/timekit.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/server/auth/token.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/server/auth/trello.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/server/auth/wandb.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/server/auth/workiom.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/server/auth/x.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/server/auth/zoom.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/server/proxy.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/session/README.md +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/session/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/session/interface.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/session/redis.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/tool/README.md +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/tool/function/README.md +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/tool/function/annotation.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0/hyperpocket/tool}/tests/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/util/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/util/extract_func_param_desc_from_docstring.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/util/find_all_leaf_class_in_package.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/util/find_all_subclass_in_package.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/util/flatten_json_schema.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/util/function_to_model.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/hyperpocket/util/get_objects_from_subpackage.py +0 -0
- {hyperpocket-0.3.6/tests/auth → hyperpocket-0.4.0/tests}/__init__.py +0 -0
- {hyperpocket-0.3.6/tests/session → hyperpocket-0.4.0/tests/auth}/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/tests/auth/test_google_oauth2_handler.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/tests/auth/test_gumloop_token_handler.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/tests/auth/test_notion_token_handler.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/tests/auth/test_slack_oauth2_handler.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/tests/auth/test_slack_token_handler.py +0 -0
- {hyperpocket-0.3.6/tests/tool → hyperpocket-0.4.0/tests/session}/__init__.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/tests/session/test_in_memory.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/tests/session/test_redis.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/tests/test_pocket.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/tests/test_pocket_auth.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/tests/tool/test_function_tool.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/tests/tool/test_wasm_tool.py +0 -0
- {hyperpocket-0.3.6 → hyperpocket-0.4.0}/tests/utils/test_extract_func_param_desc_from_docstring.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: hyperpocket
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.4.0
|
4
4
|
Summary: Building AI agent with hyperpocket tool in a flash
|
5
5
|
Project-URL: Homepage, https://vessl-ai.github.io/hyperpocket
|
6
6
|
Project-URL: Repository, https://github.com/vessl-ai/hyperpocket
|
@@ -13,6 +13,7 @@ Requires-Dist: gitpython>=3.1.43
|
|
13
13
|
Requires-Dist: httpx==0.27
|
14
14
|
Requires-Dist: jinja2>=3.1.4
|
15
15
|
Requires-Dist: multiprocess>=0.70.17
|
16
|
+
Requires-Dist: nest-asyncio>=1.6.0
|
16
17
|
Requires-Dist: playwright>=1.49.0
|
17
18
|
Requires-Dist: pydantic>=2.10.2
|
18
19
|
Requires-Dist: pygithub>=2.5.0
|
@@ -21,6 +22,8 @@ Requires-Dist: redis>=5.2.1
|
|
21
22
|
Requires-Dist: requests>=2.32.3
|
22
23
|
Requires-Dist: toml>=0.10.2
|
23
24
|
Requires-Dist: uvicorn>=0.32.1
|
25
|
+
Provides-Extra: standard
|
26
|
+
Requires-Dist: hyperdock-container; extra == 'standard'
|
24
27
|
Description-Content-Type: text/markdown
|
25
28
|
|
26
29
|
<p align="center">
|
@@ -70,7 +70,9 @@ class AuthProvider(Enum):
|
|
70
70
|
LINKEDIN = "linkedin"
|
71
71
|
WANDB = "wandb"
|
72
72
|
APITOKEN = "apitoken"
|
73
|
+
ZINC = "zinc"
|
73
74
|
SEMANTIC_SCHOLAR = "semantic_scholar"
|
75
|
+
WEAVIATE = "weaviate"
|
74
76
|
|
75
77
|
@classmethod
|
76
78
|
def get_auth_provider(cls, auth_provider_name: str) -> "AuthProvider":
|
@@ -0,0 +1,12 @@
|
|
1
|
+
|
2
|
+
from hyperpocket.auth.context import AuthContext
|
3
|
+
class WeaviateAuthContext(AuthContext):
|
4
|
+
_ACCESS_TOKEN_KEY: str = "WEAVIATE_TOKEN"
|
5
|
+
def to_dict(self) -> dict[str, str]:
|
6
|
+
return {
|
7
|
+
self._ACCESS_TOKEN_KEY: self.access_token,
|
8
|
+
}
|
9
|
+
def to_profiled_dict(self, profile: str) -> dict[str, str]:
|
10
|
+
return {
|
11
|
+
f"{profile.upper()}_{self._ACCESS_TOKEN_KEY}": self.access_token,
|
12
|
+
}
|
@@ -0,0 +1,11 @@
|
|
1
|
+
from hyperpocket.auth.weaviate.context import WeaviateAuthContext
|
2
|
+
from hyperpocket.auth.weaviate.token_schema import WeaviateTokenResponse
|
3
|
+
class WeaviateTokenAuthContext(WeaviateAuthContext):
|
4
|
+
@classmethod
|
5
|
+
def from_weaviate_token_response(cls, response: WeaviateTokenResponse):
|
6
|
+
description = f'Weaviate Token Context logged in'
|
7
|
+
return cls(
|
8
|
+
access_token=response.access_token,
|
9
|
+
description=description,
|
10
|
+
expires_at=None
|
11
|
+
)
|
@@ -0,0 +1,68 @@
|
|
1
|
+
from typing import Optional
|
2
|
+
from urllib.parse import urljoin, urlencode
|
3
|
+
|
4
|
+
from hyperpocket.auth import AuthProvider
|
5
|
+
from hyperpocket.auth.context import AuthContext
|
6
|
+
from hyperpocket.auth.handler import AuthHandlerInterface, AuthenticateRequest
|
7
|
+
from hyperpocket.auth.weaviate.token_context import WeaviateTokenAuthContext
|
8
|
+
from hyperpocket.auth.weaviate.token_schema import WeaviateTokenResponse, WeaviateTokenRequest
|
9
|
+
from hyperpocket.config import config
|
10
|
+
from hyperpocket.futures import FutureStore
|
11
|
+
|
12
|
+
|
13
|
+
class WeaviateTokenAuthHandler(AuthHandlerInterface):
|
14
|
+
name: str = "weaviate-token"
|
15
|
+
description: str = "This handler is used to authenticate users using the Weaviate token."
|
16
|
+
scoped: bool = False
|
17
|
+
|
18
|
+
_TOKEN_URL: str = urljoin(config().public_base_url + "/", f"{config().callback_url_rewrite_prefix}/auth/token")
|
19
|
+
|
20
|
+
@staticmethod
|
21
|
+
def provider() -> AuthProvider:
|
22
|
+
return AuthProvider.WEAVIATE
|
23
|
+
|
24
|
+
@staticmethod
|
25
|
+
def provider_default() -> bool:
|
26
|
+
return True
|
27
|
+
|
28
|
+
@staticmethod
|
29
|
+
def recommended_scopes() -> set[str]:
|
30
|
+
return set()
|
31
|
+
|
32
|
+
def prepare(self, auth_req: WeaviateTokenRequest, thread_id: str, profile: str,
|
33
|
+
future_uid: str, *args, **kwargs) -> str:
|
34
|
+
redirect_uri = urljoin(
|
35
|
+
config().public_base_url + "/",
|
36
|
+
f"{config().callback_url_rewrite_prefix}/auth/weaviate/token/callback",
|
37
|
+
)
|
38
|
+
url = self._make_auth_url(auth_req=auth_req, redirect_uri=redirect_uri, state=future_uid)
|
39
|
+
FutureStore.create_future(future_uid, data={
|
40
|
+
"redirect_uri": redirect_uri,
|
41
|
+
"thread_id": thread_id,
|
42
|
+
"profile": profile,
|
43
|
+
})
|
44
|
+
|
45
|
+
return f'User needs to authenticate using the following URL: {url}'
|
46
|
+
|
47
|
+
async def authenticate(self, auth_req: WeaviateTokenRequest, future_uid: str, *args, **kwargs) -> AuthContext:
|
48
|
+
future_data = FutureStore.get_future(future_uid)
|
49
|
+
access_token = await future_data.future
|
50
|
+
|
51
|
+
response = WeaviateTokenResponse(access_token=access_token)
|
52
|
+
context = WeaviateTokenAuthContext.from_weaviate_token_response(response)
|
53
|
+
|
54
|
+
return context
|
55
|
+
|
56
|
+
async def refresh(self, auth_req: WeaviateTokenRequest, context: AuthContext, *args, **kwargs) -> AuthContext:
|
57
|
+
raise Exception("Weaviate token doesn't support refresh")
|
58
|
+
|
59
|
+
def _make_auth_url(self, auth_req: WeaviateTokenRequest, redirect_uri: str, state: str):
|
60
|
+
params = {
|
61
|
+
"redirect_uri": redirect_uri,
|
62
|
+
"state": state,
|
63
|
+
}
|
64
|
+
auth_url = f"{self._TOKEN_URL}?{urlencode(params)}"
|
65
|
+
return auth_url
|
66
|
+
|
67
|
+
def make_request(self, auth_scopes: Optional[list[str]] = None, **kwargs) -> WeaviateTokenRequest:
|
68
|
+
return WeaviateTokenRequest()
|
@@ -0,0 +1,7 @@
|
|
1
|
+
from typing import List, Optional
|
2
|
+
from pydantic import BaseModel
|
3
|
+
from hyperpocket.auth.schema import AuthenticateRequest, AuthenticateResponse
|
4
|
+
class WeaviateTokenRequest(AuthenticateRequest):
|
5
|
+
pass
|
6
|
+
class WeaviateTokenResponse(AuthenticateResponse):
|
7
|
+
access_token: str
|
@@ -0,0 +1,12 @@
|
|
1
|
+
|
2
|
+
from hyperpocket.auth.context import AuthContext
|
3
|
+
class ZincAuthContext(AuthContext):
|
4
|
+
_ACCESS_TOKEN_KEY: str = "ZINC_TOKEN"
|
5
|
+
def to_dict(self) -> dict[str, str]:
|
6
|
+
return {
|
7
|
+
self._ACCESS_TOKEN_KEY: self.access_token,
|
8
|
+
}
|
9
|
+
def to_profiled_dict(self, profile: str) -> dict[str, str]:
|
10
|
+
return {
|
11
|
+
f"{profile.upper()}_{self._ACCESS_TOKEN_KEY}": self.access_token,
|
12
|
+
}
|
@@ -0,0 +1,11 @@
|
|
1
|
+
from hyperpocket.auth.zinc.context import ZincAuthContext
|
2
|
+
from hyperpocket.auth.zinc.token_schema import ZincTokenResponse
|
3
|
+
class ZincTokenAuthContext(ZincAuthContext):
|
4
|
+
@classmethod
|
5
|
+
def from_zinc_token_response(cls, response: ZincTokenResponse):
|
6
|
+
description = f'Zinc Token Context logged in'
|
7
|
+
return cls(
|
8
|
+
access_token=response.access_token,
|
9
|
+
description=description,
|
10
|
+
expires_at=None
|
11
|
+
)
|
@@ -0,0 +1,64 @@
|
|
1
|
+
from typing import Optional
|
2
|
+
from urllib.parse import urljoin, urlencode
|
3
|
+
|
4
|
+
from hyperpocket.auth import AuthProvider
|
5
|
+
from hyperpocket.auth.context import AuthContext
|
6
|
+
from hyperpocket.auth.handler import AuthHandlerInterface, AuthenticateRequest
|
7
|
+
from hyperpocket.auth.zinc.token_context import ZincTokenAuthContext
|
8
|
+
from hyperpocket.auth.zinc.token_schema import ZincTokenResponse, ZincTokenRequest
|
9
|
+
from hyperpocket.config import config
|
10
|
+
from hyperpocket.futures import FutureStore
|
11
|
+
|
12
|
+
|
13
|
+
class ZincTokenAuthHandler(AuthHandlerInterface):
|
14
|
+
name: str = "zinc-token"
|
15
|
+
description: str = "This handler is used to authenticate users using the Zinc token."
|
16
|
+
scoped: bool = False
|
17
|
+
|
18
|
+
_TOKEN_URL: str = urljoin(config().public_base_url + "/", f"{config().callback_url_rewrite_prefix}/auth/token")
|
19
|
+
|
20
|
+
@staticmethod
|
21
|
+
def provider() -> AuthProvider:
|
22
|
+
return AuthProvider.ZINC
|
23
|
+
|
24
|
+
@staticmethod
|
25
|
+
def recommended_scopes() -> set[str]:
|
26
|
+
return set()
|
27
|
+
|
28
|
+
def prepare(self, auth_req: ZincTokenRequest, thread_id: str, profile: str,
|
29
|
+
future_uid: str, *args, **kwargs) -> str:
|
30
|
+
redirect_uri = urljoin(
|
31
|
+
config().public_base_url + "/",
|
32
|
+
f"{config().callback_url_rewrite_prefix}/auth/zinc/token/callback",
|
33
|
+
)
|
34
|
+
url = self._make_auth_url(auth_req=auth_req, redirect_uri=redirect_uri, state=future_uid)
|
35
|
+
FutureStore.create_future(future_uid, data={
|
36
|
+
"redirect_uri": redirect_uri,
|
37
|
+
"thread_id": thread_id,
|
38
|
+
"profile": profile,
|
39
|
+
})
|
40
|
+
|
41
|
+
return f'User needs to authenticate using the following URL: {url}'
|
42
|
+
|
43
|
+
async def authenticate(self, auth_req: ZincTokenRequest, future_uid: str, *args, **kwargs) -> AuthContext:
|
44
|
+
future_data = FutureStore.get_future(future_uid)
|
45
|
+
access_token = await future_data.future
|
46
|
+
|
47
|
+
response = ZincTokenResponse(access_token=access_token)
|
48
|
+
context = ZincTokenAuthContext.from_zinc_token_response(response)
|
49
|
+
|
50
|
+
return context
|
51
|
+
|
52
|
+
async def refresh(self, auth_req: ZincTokenRequest, context: AuthContext, *args, **kwargs) -> AuthContext:
|
53
|
+
raise Exception("Zinc token doesn't support refresh")
|
54
|
+
|
55
|
+
def _make_auth_url(self, auth_req: ZincTokenRequest, redirect_uri: str, state: str):
|
56
|
+
params = {
|
57
|
+
"redirect_uri": redirect_uri,
|
58
|
+
"state": state,
|
59
|
+
}
|
60
|
+
auth_url = f"{self._TOKEN_URL}?{urlencode(params)}"
|
61
|
+
return auth_url
|
62
|
+
|
63
|
+
def make_request(self, auth_scopes: Optional[list[str]] = None, **kwargs) -> ZincTokenRequest:
|
64
|
+
return ZincTokenRequest()
|
@@ -0,0 +1,7 @@
|
|
1
|
+
from typing import List, Optional
|
2
|
+
from pydantic import BaseModel
|
3
|
+
from hyperpocket.auth.schema import AuthenticateRequest, AuthenticateResponse
|
4
|
+
class ZincTokenRequest(AuthenticateRequest):
|
5
|
+
pass
|
6
|
+
class ZincTokenResponse(AuthenticateResponse):
|
7
|
+
access_token: str
|
@@ -0,0 +1,14 @@
|
|
1
|
+
import pathlib
|
2
|
+
from typing import Optional
|
3
|
+
|
4
|
+
import click
|
5
|
+
|
6
|
+
import hyperpocket.repository as repository
|
7
|
+
|
8
|
+
|
9
|
+
@click.command()
|
10
|
+
@click.argument("url", type=str)
|
11
|
+
@click.argument("ref", type=str)
|
12
|
+
@click.argument("remote_path", type=str)
|
13
|
+
def eject(url: str, ref: str, remote_path: str):
|
14
|
+
repository.eject(url, ref, remote_path)
|
@@ -0,0 +1,13 @@
|
|
1
|
+
import pathlib
|
2
|
+
from typing import Optional
|
3
|
+
|
4
|
+
import click
|
5
|
+
|
6
|
+
import hyperpocket.repository as repository
|
7
|
+
|
8
|
+
|
9
|
+
@click.command()
|
10
|
+
@click.argument("url", type=str)
|
11
|
+
@click.option("--git-ref", type=str, default="HEAD")
|
12
|
+
def pull(url: str, git_ref: str):
|
13
|
+
repository.pull(url, git_ref)
|
@@ -2,7 +2,7 @@ import os
|
|
2
2
|
from pathlib import Path
|
3
3
|
|
4
4
|
from dynaconf import Dynaconf
|
5
|
-
from pydantic import BaseModel, Field
|
5
|
+
from pydantic import BaseModel, Field, Extra
|
6
6
|
|
7
7
|
from hyperpocket.config.auth import AuthConfig, DefaultAuthConfig
|
8
8
|
from hyperpocket.config.session import DefaultSessionConfig, SessionConfig
|
@@ -47,6 +47,7 @@ class Config(BaseModel):
|
|
47
47
|
auth: AuthConfig = DefaultAuthConfig
|
48
48
|
session: SessionConfig = DefaultSessionConfig
|
49
49
|
tool_vars: dict[str, str] = Field(default_factory=dict)
|
50
|
+
docks: dict[str, dict] = Field(default_factory=dict)
|
50
51
|
|
51
52
|
@property
|
52
53
|
def internal_base_url(self):
|
@@ -1,53 +1,69 @@
|
|
1
1
|
import asyncio
|
2
|
-
import pathlib
|
3
2
|
from typing import Any, Callable, List, Optional, Union
|
4
3
|
|
5
4
|
from hyperpocket.builtin import get_builtin_tools
|
6
5
|
from hyperpocket.config import pocket_logger
|
7
6
|
from hyperpocket.pocket_auth import PocketAuth
|
8
|
-
from hyperpocket.
|
9
|
-
from hyperpocket.
|
10
|
-
from hyperpocket.tool import Tool, ToolRequest
|
7
|
+
from hyperpocket.tool import Tool
|
8
|
+
from hyperpocket.tool.dock import Dock
|
11
9
|
from hyperpocket.tool.function import from_func
|
12
|
-
from hyperpocket.tool.wasm import WasmTool
|
13
|
-
from hyperpocket.tool.wasm.tool import WasmToolRequest
|
14
10
|
from hyperpocket.tool_like import ToolLike
|
15
11
|
|
16
12
|
|
17
13
|
class PocketCore:
|
18
14
|
auth: PocketAuth
|
19
15
|
tools: dict[str, Tool]
|
20
|
-
|
16
|
+
docks: list[Dock]
|
21
17
|
|
18
|
+
@staticmethod
|
19
|
+
def _default_dock() -> Dock:
|
20
|
+
try:
|
21
|
+
from hyperdock_container.dock import ContainerDock
|
22
|
+
pocket_logger.info("hyperdock-container is loaded.")
|
23
|
+
return ContainerDock()
|
24
|
+
except ImportError:
|
25
|
+
pocket_logger.warning("Failed to import hyperdock_container.")
|
26
|
+
|
27
|
+
try:
|
28
|
+
from hyperdock_wasm.dock import WasmDock
|
29
|
+
pocket_logger.info("hyperdock-wasm is loaded.")
|
30
|
+
return WasmDock()
|
31
|
+
except ImportError:
|
32
|
+
raise ImportError("No default dock available. To register a remote tool, you need to install either hyperdock_wasm or hyperdock_container.")
|
33
|
+
|
34
|
+
|
22
35
|
def __init__(
|
23
36
|
self,
|
24
37
|
tools: list[ToolLike],
|
25
38
|
auth: PocketAuth = None,
|
26
|
-
lockfile_path: Optional[str] = None,
|
27
|
-
force_update: bool = False,
|
28
39
|
):
|
29
40
|
if auth is None:
|
30
41
|
auth = PocketAuth()
|
31
42
|
self.auth = auth
|
32
43
|
|
33
|
-
#
|
34
|
-
if
|
35
|
-
|
36
|
-
|
37
|
-
self.
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
self.
|
45
|
-
|
46
|
-
|
47
|
-
# load tool from tool_like
|
44
|
+
# filter strs out first and register the tools to default dock
|
45
|
+
str_tool_likes = [tool for tool in tools if (isinstance(tool, str) or isinstance(tool, tuple))]
|
46
|
+
function_tool_likes = [tool for tool in tools if (not isinstance(tool, str) and not isinstance(tool, Dock) and not isinstance(tool, tuple))]
|
47
|
+
# especially, docks are maintained by core
|
48
|
+
self.docks = [dock for dock in tools if isinstance(dock, Dock)]
|
49
|
+
|
50
|
+
if len(str_tool_likes) > 0:
|
51
|
+
default_dock = self._default_dock()
|
52
|
+
for str_tool_like in str_tool_likes:
|
53
|
+
default_dock.plug(req_like=str_tool_like)
|
54
|
+
# append default dock
|
55
|
+
self.docks.append(default_dock)
|
56
|
+
|
48
57
|
self.tools = dict()
|
49
|
-
|
58
|
+
|
59
|
+
# for each tool like, load the tool
|
60
|
+
for tool_like in function_tool_likes:
|
50
61
|
self._load_tool(tool_like)
|
62
|
+
|
63
|
+
for dock in self.docks:
|
64
|
+
tools = dock.tools()
|
65
|
+
for tool in tools:
|
66
|
+
self._load_tool(tool)
|
51
67
|
|
52
68
|
pocket_logger.info(
|
53
69
|
f"All Registered Tools Loaded successfully. total registered tools : {len(self.tools)}"
|
@@ -253,8 +269,6 @@ class PocketCore:
|
|
253
269
|
pocket_logger.info(f"Loading Tool {tool_like}")
|
254
270
|
if isinstance(tool_like, Tool):
|
255
271
|
tool = tool_like
|
256
|
-
elif isinstance(tool_like, ToolRequest):
|
257
|
-
tool = Tool.from_tool_request(tool_like, lockfile=self.lockfile)
|
258
272
|
elif isinstance(tool_like, Callable):
|
259
273
|
tool = from_func(tool_like)
|
260
274
|
else:
|
@@ -267,44 +281,3 @@ class PocketCore:
|
|
267
281
|
|
268
282
|
pocket_logger.info(f"Complete Loading Tool {tool.name}")
|
269
283
|
return tool
|
270
|
-
|
271
|
-
def _add_tool_like_lock_to_lockfile(self, tool_like: ToolLike):
|
272
|
-
if isinstance(tool_like, WasmToolRequest): # lock is only in WasmToolRequest
|
273
|
-
self.lockfile.add_lock(tool_like.lock)
|
274
|
-
return
|
275
|
-
|
276
|
-
@classmethod
|
277
|
-
def _parse_tool_like(cls, tool_like: ToolLike) -> ToolLike:
|
278
|
-
if isinstance(tool_like, str):
|
279
|
-
return cls._parse_str_tool_like(tool_like)
|
280
|
-
|
281
|
-
elif isinstance(tool_like, WasmToolRequest):
|
282
|
-
return tool_like
|
283
|
-
|
284
|
-
elif isinstance(tool_like, ToolRequest):
|
285
|
-
raise ValueError(f"unreachable. tool_like:{tool_like}")
|
286
|
-
elif isinstance(tool_like, WasmTool):
|
287
|
-
raise ValueError("WasmTool should pass ToolRequest instance instead.")
|
288
|
-
else: # Callable, Tool
|
289
|
-
return tool_like
|
290
|
-
|
291
|
-
@classmethod
|
292
|
-
def _parse_str_tool_like(cls, tool_like: str) -> ToolLike:
|
293
|
-
if pathlib.Path(tool_like).exists():
|
294
|
-
lock = LocalLock(tool_like)
|
295
|
-
parsed_tool_like = WasmToolRequest(lock=lock, rel_path="", tool_vars={})
|
296
|
-
elif tool_like.startswith("https://github.com"):
|
297
|
-
base_repo_url, git_ref, rel_path = GitLock.parse_repo_url(
|
298
|
-
repo_url=tool_like
|
299
|
-
)
|
300
|
-
lock = GitLock(repository_url=base_repo_url, git_ref=git_ref)
|
301
|
-
parsed_tool_like = WasmToolRequest(
|
302
|
-
lock=lock, rel_path=rel_path, tool_vars={}
|
303
|
-
)
|
304
|
-
else:
|
305
|
-
parsed_tool_like = None
|
306
|
-
RuntimeError(
|
307
|
-
f"Can't convert to ToolRequest. it might be wrong github url or local path. path: {tool_like}"
|
308
|
-
)
|
309
|
-
|
310
|
-
return parsed_tool_like
|
@@ -1,5 +1,6 @@
|
|
1
1
|
import asyncio
|
2
|
-
|
2
|
+
import uuid
|
3
|
+
from typing import Any, List, Union
|
3
4
|
|
4
5
|
from hyperpocket.config import pocket_logger
|
5
6
|
from hyperpocket.pocket_auth import PocketAuth
|
@@ -11,29 +12,39 @@ from hyperpocket.tool_like import ToolLike
|
|
11
12
|
class Pocket(object):
|
12
13
|
server: PocketServer
|
13
14
|
core: PocketCore
|
15
|
+
_uid: str
|
14
16
|
|
15
17
|
def __init__(
|
16
18
|
self,
|
17
19
|
tools: list[ToolLike],
|
18
20
|
auth: PocketAuth = None,
|
19
|
-
lockfile_path: Optional[str] = None,
|
20
|
-
force_update: bool = False,
|
21
21
|
use_profile: bool = False,
|
22
22
|
):
|
23
|
-
self.use_profile = use_profile
|
24
|
-
self.core = PocketCore(
|
25
|
-
tools=tools,
|
26
|
-
auth=auth,
|
27
|
-
lockfile_path=lockfile_path,
|
28
|
-
force_update=force_update,
|
29
|
-
)
|
30
|
-
self.server = PocketServer()
|
31
|
-
self.server.run(self.core)
|
32
23
|
try:
|
24
|
+
self._uid = str(uuid.uuid4())
|
25
|
+
self.use_profile = use_profile
|
26
|
+
self.server = PocketServer.get_instance_and_refcnt_up(self._uid)
|
33
27
|
self.server.wait_initialized()
|
28
|
+
self.core = PocketCore(
|
29
|
+
tools=tools,
|
30
|
+
auth=auth,
|
31
|
+
)
|
34
32
|
except Exception as e:
|
33
|
+
if hasattr(self, "server"):
|
34
|
+
self.server.refcnt_down(self._uid)
|
35
35
|
pocket_logger.error(f"Failed to initialize pocket server. error : {e}")
|
36
36
|
self._teardown_server()
|
37
|
+
raise e
|
38
|
+
|
39
|
+
try:
|
40
|
+
asyncio.get_running_loop()
|
41
|
+
except RuntimeError:
|
42
|
+
loop = asyncio.new_event_loop()
|
43
|
+
else:
|
44
|
+
import nest_asyncio
|
45
|
+
loop = asyncio.new_event_loop()
|
46
|
+
nest_asyncio.apply(loop=loop)
|
47
|
+
loop.run_until_complete(self.server.plug_core(self._uid, self.core))
|
37
48
|
|
38
49
|
def invoke(
|
39
50
|
self,
|
@@ -158,8 +169,17 @@ class Pocket(object):
|
|
158
169
|
Returns:
|
159
170
|
tuple[str, bool]: tool result and state.
|
160
171
|
"""
|
172
|
+
_kwargs = {
|
173
|
+
"tool_name": tool_name,
|
174
|
+
"body": body,
|
175
|
+
"thread_id": thread_id,
|
176
|
+
"profile": profile,
|
177
|
+
**kwargs,
|
178
|
+
}
|
179
|
+
|
161
180
|
result, paused = await self.server.call_in_subprocess(
|
162
181
|
PocketServerOperations.CALL,
|
182
|
+
self._uid,
|
163
183
|
args,
|
164
184
|
{
|
165
185
|
"tool_name": tool_name,
|
@@ -257,6 +277,7 @@ class Pocket(object):
|
|
257
277
|
):
|
258
278
|
prepare = await self.server.call_in_subprocess(
|
259
279
|
PocketServerOperations.PREPARE_AUTH,
|
280
|
+
self._uid,
|
260
281
|
args,
|
261
282
|
{
|
262
283
|
"tool_name": tool_name,
|
@@ -278,6 +299,7 @@ class Pocket(object):
|
|
278
299
|
):
|
279
300
|
credentials = await self.server.call_in_subprocess(
|
280
301
|
PocketServerOperations.AUTHENTICATE,
|
302
|
+
self._uid,
|
281
303
|
args,
|
282
304
|
{
|
283
305
|
"tool_name": tool_name,
|
@@ -300,6 +322,7 @@ class Pocket(object):
|
|
300
322
|
):
|
301
323
|
result = await self.server.call_in_subprocess(
|
302
324
|
PocketServerOperations.TOOL_CALL,
|
325
|
+
self._uid,
|
303
326
|
args,
|
304
327
|
{
|
305
328
|
"tool_name": tool_name,
|
@@ -319,12 +342,10 @@ class Pocket(object):
|
|
319
342
|
return self
|
320
343
|
|
321
344
|
def __exit__(self, exc_type, exc_val, exc_tb):
|
322
|
-
|
323
|
-
self.server.teardown()
|
345
|
+
self.server.refcnt_down(self._uid)
|
324
346
|
|
325
347
|
def __del__(self):
|
326
|
-
|
327
|
-
self.server.teardown()
|
348
|
+
self.server.refcnt_down(self._uid)
|
328
349
|
|
329
350
|
def __getstate__(self):
|
330
351
|
state = self.__dict__.copy()
|
@@ -0,0 +1,28 @@
|
|
1
|
+
import abc
|
2
|
+
import pathlib
|
3
|
+
|
4
|
+
from pydantic import BaseModel
|
5
|
+
|
6
|
+
|
7
|
+
class ToolReference(BaseModel, abc.ABC):
|
8
|
+
tool_source: str = None
|
9
|
+
|
10
|
+
@abc.abstractmethod
|
11
|
+
def __str__(self):
|
12
|
+
raise NotImplementedError
|
13
|
+
|
14
|
+
@abc.abstractmethod
|
15
|
+
def key(self) -> str:
|
16
|
+
raise NotImplementedError
|
17
|
+
|
18
|
+
@abc.abstractmethod
|
19
|
+
def sync(self, **kwargs):
|
20
|
+
raise NotImplementedError
|
21
|
+
|
22
|
+
def eject_to_path(self, dest_path: pathlib.Path, src_sub_path: str = None):
|
23
|
+
## local locks are already tracked by git
|
24
|
+
raise NotImplementedError
|
25
|
+
|
26
|
+
|
27
|
+
|
28
|
+
|
@@ -0,0 +1,27 @@
|
|
1
|
+
from fastapi import APIRouter
|
2
|
+
from starlette.responses import HTMLResponse
|
3
|
+
from hyperpocket.futures import FutureStore
|
4
|
+
|
5
|
+
weaviate_auth_router = APIRouter(
|
6
|
+
prefix="/weaviate"
|
7
|
+
)
|
8
|
+
|
9
|
+
|
10
|
+
@weaviate_auth_router.get("/oauth2/callback")
|
11
|
+
async def weaviate_oauth2_callback(state: str, code: str):
|
12
|
+
try:
|
13
|
+
FutureStore.resolve_future(state, code)
|
14
|
+
except ValueError:
|
15
|
+
return HTMLResponse(content="failed")
|
16
|
+
|
17
|
+
return HTMLResponse(content="success")
|
18
|
+
|
19
|
+
|
20
|
+
@weaviate_auth_router.get("/token/callback")
|
21
|
+
async def weaviate_token_callback(state: str, token: str):
|
22
|
+
try:
|
23
|
+
FutureStore.resolve_future(state, token)
|
24
|
+
except ValueError:
|
25
|
+
return HTMLResponse(content="failed")
|
26
|
+
|
27
|
+
return HTMLResponse(content="success")
|
@@ -0,0 +1,27 @@
|
|
1
|
+
from fastapi import APIRouter
|
2
|
+
from starlette.responses import HTMLResponse
|
3
|
+
from hyperpocket.futures import FutureStore
|
4
|
+
|
5
|
+
zinc_auth_router = APIRouter(
|
6
|
+
prefix="/zinc"
|
7
|
+
)
|
8
|
+
|
9
|
+
|
10
|
+
@zinc_auth_router.get("/oauth2/callback")
|
11
|
+
async def zinc_oauth2_callback(state: str, code: str):
|
12
|
+
try:
|
13
|
+
FutureStore.resolve_future(state, code)
|
14
|
+
except ValueError:
|
15
|
+
return HTMLResponse(content="failed")
|
16
|
+
|
17
|
+
return HTMLResponse(content="success")
|
18
|
+
|
19
|
+
|
20
|
+
@zinc_auth_router.get("/token/callback")
|
21
|
+
async def zinc_token_callback(state: str, token: str):
|
22
|
+
try:
|
23
|
+
FutureStore.resolve_future(state, token)
|
24
|
+
except ValueError:
|
25
|
+
return HTMLResponse(content="failed")
|
26
|
+
|
27
|
+
return HTMLResponse(content="success")
|