hyperpocket 0.0.3__py3-none-any.whl → 0.1.8__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- hyperpocket/auth/README.md +3 -3
- hyperpocket/auth/__init__.py +0 -8
- hyperpocket/auth/gumloop/context.py +13 -0
- hyperpocket/auth/gumloop/token_context.py +15 -0
- hyperpocket/auth/gumloop/token_handler.py +66 -0
- hyperpocket/auth/gumloop/token_schema.py +8 -0
- hyperpocket/auth/linear/token_context.py +1 -1
- hyperpocket/auth/notion/README.md +28 -0
- hyperpocket/auth/notion/context.py +15 -0
- hyperpocket/auth/notion/token_context.py +14 -0
- hyperpocket/auth/notion/token_handler.py +65 -0
- hyperpocket/auth/notion/token_schema.py +10 -0
- hyperpocket/auth/provider.py +8 -5
- hyperpocket/auth/reddit/context.py +15 -0
- hyperpocket/auth/reddit/oauth2_context.py +32 -0
- hyperpocket/auth/reddit/oauth2_handler.py +151 -0
- hyperpocket/auth/reddit/oauth2_schema.py +18 -0
- hyperpocket/auth/slack/token_context.py +1 -1
- hyperpocket/builtin.py +63 -0
- hyperpocket/cli/__main__.py +12 -0
- hyperpocket/cli/auth.py +83 -0
- hyperpocket/cli/codegen/auth/__init__.py +13 -0
- hyperpocket/cli/codegen/auth/auth_context_template.py +16 -0
- hyperpocket/cli/codegen/auth/auth_token_context_template.py +16 -0
- hyperpocket/cli/codegen/auth/auth_token_handler_template.py +69 -0
- hyperpocket/cli/codegen/auth/auth_token_schema_template.py +12 -0
- hyperpocket/cli/codegen/auth/server_auth_template.py +18 -0
- hyperpocket/cli/eject.py +19 -0
- hyperpocket/cli/sync.py +5 -5
- hyperpocket/config/settings.py +2 -4
- hyperpocket/futures/futurestore.py +0 -1
- hyperpocket/pocket_auth.py +25 -5
- hyperpocket/pocket_core.py +262 -0
- hyperpocket/pocket_main.py +124 -173
- hyperpocket/prompts.py +6 -8
- hyperpocket/repository/__init__.py +2 -2
- hyperpocket/repository/lock.py +19 -0
- hyperpocket/repository/lockfile.py +19 -13
- hyperpocket/repository/repository.py +26 -1
- hyperpocket/server/auth/__init__.py +0 -6
- hyperpocket/server/auth/gumloop.py +16 -0
- hyperpocket/server/auth/notion.py +19 -0
- hyperpocket/server/auth/reddit.py +16 -0
- hyperpocket/server/server.py +52 -16
- hyperpocket/server/tool/dto/script.py +15 -2
- hyperpocket/server/tool/wasm.py +20 -8
- hyperpocket/session/README.md +2 -2
- hyperpocket/session/in_memory.py +18 -5
- hyperpocket/session/interface.py +14 -0
- hyperpocket/session/redis.py +29 -5
- hyperpocket/tool/README.md +16 -12
- hyperpocket/tool/__init__.py +4 -3
- hyperpocket/tool/function/README.md +39 -10
- hyperpocket/tool/function/__init__.py +2 -0
- hyperpocket/tool/function/annotation.py +2 -1
- hyperpocket/tool/function/tool.py +98 -13
- hyperpocket/tool/tests/test_function_tool.py +55 -0
- hyperpocket/tool/tests/test_wasm_tool.py +73 -0
- hyperpocket/tool/tool.py +65 -2
- hyperpocket/tool/wasm/README.md +27 -5
- hyperpocket/tool/wasm/script.py +40 -1
- hyperpocket/tool/wasm/templates/python.py +32 -14
- hyperpocket/tool/wasm/tool.py +21 -18
- hyperpocket/tool_like.py +5 -0
- hyperpocket/util/__init__.py +1 -1
- hyperpocket/util/extract_func_param_desc_from_docstring.py +4 -4
- hyperpocket/util/function_to_model.py +5 -2
- hyperpocket/util/json_schema_to_model.py +45 -26
- {hyperpocket-0.0.3.dist-info → hyperpocket-0.1.8.dist-info}/METADATA +101 -72
- hyperpocket-0.1.8.dist-info/RECORD +139 -0
- {hyperpocket-0.0.3.dist-info → hyperpocket-0.1.8.dist-info}/WHEEL +1 -1
- hyperpocket-0.1.8.dist-info/entry_points.txt +2 -0
- hyperpocket/auth/README.KR.md +0 -309
- hyperpocket/auth/slack/tests/test_oauth2_handler.py +0 -32
- hyperpocket/auth/slack/tests/test_token_handler.py +0 -23
- hyperpocket/auth/tests/test_google_oauth2_handler.py +0 -147
- hyperpocket/auth/tests/test_slack_oauth2_handler.py +0 -147
- hyperpocket/auth/tests/test_slack_token_handler.py +0 -66
- hyperpocket/external/__init__.py +0 -7
- hyperpocket/external/github_client.py +0 -19
- hyperpocket/session/README.KR.md +0 -62
- hyperpocket/session/tests/test_in_memory.py +0 -145
- hyperpocket/session/tests/test_redis.py +0 -151
- hyperpocket/tests/test_pocket.py +0 -116
- hyperpocket/tests/test_pocket_auth.py +0 -982
- hyperpocket/tool/README.KR.md +0 -68
- hyperpocket/tool/builtins/__init__.py +0 -0
- hyperpocket/tool/builtins/example/__init__.py +0 -0
- hyperpocket/tool/builtins/example/add_tool.py +0 -18
- hyperpocket/tool/function/README.KR.md +0 -159
- hyperpocket/tool/wasm/README.KR.md +0 -144
- hyperpocket-0.0.3.dist-info/RECORD +0 -130
- hyperpocket-0.0.3.dist-info/entry_points.txt +0 -3
- /hyperpocket/auth/{slack/tests → gumloop}/__init__.py +0 -0
- /hyperpocket/auth/{tests → notion}/__init__.py +0 -0
- /hyperpocket/{session/tests → auth/reddit}/__init__.py +0 -0
- /hyperpocket/{tests → cli/codegen}/__init__.py +0 -0
hyperpocket/tool/README.KR.md
DELETED
@@ -1,68 +0,0 @@
|
|
1
|
-
# Tool
|
2
|
-
|
3
|
-
---
|
4
|
-
|
5
|
-
## ToolRequest
|
6
|
-
|
7
|
-
각 Tool을 초기화할 때 필요한 정보를 담고 있는 인터페이스
|
8
|
-
|
9
|
-
## ToolAuth
|
10
|
-
|
11
|
-
ToolAuth는 Tool을 호출하기 위해 필요한 Authentication 정보를 나타내는 객체
|
12
|
-
|
13
|
-
다음과 같은 필드가 존재
|
14
|
-
|
15
|
-
- auth_provider : tool 호출 시에 어떤 authentication provider의 인증 정보가 필요한지 표시
|
16
|
-
- auth_provider가 명시되지 않는 경우, authentication이 필요없는 Tool로 인식된다.
|
17
|
-
- auth_handler : tool 호출 시 어떤 authentication handler를 사용할 것인지를 표시
|
18
|
-
- auth_handler가 명시되지 않는 경우, authentication provider의 default handler가 사용된다.
|
19
|
-
- scopes : tool 호출 시에 어떤 authentication scopes가 필요한지를 표시
|
20
|
-
- authentication을 수행하지 않거나, authentication handler가 non-scoped인 경우에는 None값을 사용
|
21
|
-
|
22
|
-
## Tool
|
23
|
-
|
24
|
-
실제 Tool을 실행하는 인터페이스
|
25
|
-
|
26
|
-
```python
|
27
|
-
class Tool(BaseModel, abc.ABC):
|
28
|
-
name: str = Field(description="tool name")
|
29
|
-
description: str = Field(description="tool description")
|
30
|
-
argument_json_schema: Optional[dict] = Field(default=None, description="tool argument json schema")
|
31
|
-
auth: Optional[ToolAuth] = Field(default=None, description="authentication information to invoke tool")
|
32
|
-
```
|
33
|
-
|
34
|
-
### schema_model
|
35
|
-
|
36
|
-
Tool.schema_model은 Tool이 호출 될 때 인자로 `profile`과 `thread_id`를 받기 위해 기존 Tool의 argument_json_schema을 wrapping한
|
37
|
-
model을 반환
|
38
|
-
|
39
|
-
이때 기존의 argument_json_schema는 `body` 필드로 이동
|
40
|
-
|
41
|
-
## How to implement
|
42
|
-
|
43
|
-
1. Tool을 상속한 클래스를 생성
|
44
|
-
- `invoke` 또는 `ainvoke` 내에서 툴 호출 시 수행할 작업을 정의
|
45
|
-
- Tool을 초기화할 factory method를 정의
|
46
|
-
- 이때 위의 필수 필드에 대한 값을 주입
|
47
|
-
|
48
|
-
2. `Pocket` 내의 `ToolLike`에 클래스를 추가(Optional)
|
49
|
-
- `WasmTool`의 경우 ToolRequest, str을 입력으로 받을 수 있음
|
50
|
-
- `FunctionTool`의 경우 Callable을 입력으로 받을 수 있음
|
51
|
-
|
52
|
-
3. `Pocket.__init__` 또는 `Pocket._load_tool` 함수 내에서 `ToolLike`값을 기반으로 Tool 초기화 수행
|
53
|
-
|
54
|
-
## Invoke Flow
|
55
|
-
|
56
|
-
1. `Pocket.invoke`를 통해 최초 Tool calling이 수행된다.
|
57
|
-
2. Tool 호출을 위해 authentication이 필요한 경우 `PocketAuth.invoke`를 통해 authentication을 수행
|
58
|
-
3. authentication이 완료된 후 `PocketAuth`에서 얻은 authentication 정보를 tool 호출 시 같이 전달
|
59
|
-
|
60
|
-
```mermaid
|
61
|
-
flowchart TD
|
62
|
-
Z["Agent"] -->|"Invoke tool"| A["Pocket"]
|
63
|
-
A["Pocket"] -->|Requires Authentication?| B{"Yes"}
|
64
|
-
B --> D["PocketAuth: Provide Authentication Info"]
|
65
|
-
D --> E["Pocket: Invoke Tool with Auth Info"]
|
66
|
-
B -->|No| F
|
67
|
-
E --> F["Tool: Perform Operations"]
|
68
|
-
```
|
File without changes
|
File without changes
|
@@ -1,18 +0,0 @@
|
|
1
|
-
# from pydantic import BaseModel, Field
|
2
|
-
#
|
3
|
-
# from pocket.tool.builtin import BuiltinTool
|
4
|
-
# from pocket.tool.tool import TAny, TModelGeneric
|
5
|
-
#
|
6
|
-
#
|
7
|
-
# class Schema(BaseModel):
|
8
|
-
# a: int = Field(description="first number to add")
|
9
|
-
# b: int = Field(description="second number to add")
|
10
|
-
#
|
11
|
-
#
|
12
|
-
# class AddTool(BuiltinTool):
|
13
|
-
# name: str = "add_two_number_tool"
|
14
|
-
# description: str = "add two numbers"
|
15
|
-
# argument_schema: TModelGeneric = Schema
|
16
|
-
#
|
17
|
-
# def invoke(self, a: int, b: int) -> TAny:
|
18
|
-
# return a + b
|
@@ -1,159 +0,0 @@
|
|
1
|
-
# Function
|
2
|
-
|
3
|
-
python 함수를 tool로 등록해 사용
|
4
|
-
|
5
|
-
---
|
6
|
-
|
7
|
-
## How To Use
|
8
|
-
|
9
|
-
### No Auth
|
10
|
-
|
11
|
-
python method를 pocket tool에 그대로 입력
|
12
|
-
|
13
|
-
```python
|
14
|
-
from hyperpocket import Pocket
|
15
|
-
|
16
|
-
pocket = Pocket(tools=[
|
17
|
-
my_function]
|
18
|
-
)
|
19
|
-
```
|
20
|
-
|
21
|
-
### Auth
|
22
|
-
|
23
|
-
python method에 `@function_tool`를 사용해 필요한 authentication provider를 명시
|
24
|
-
|
25
|
-
```python
|
26
|
-
from hyperpocket import Pocket
|
27
|
-
from hyperpocket.auth import AuthProvider
|
28
|
-
from hyperpocket.tool import function_tool
|
29
|
-
|
30
|
-
|
31
|
-
@function_tool(
|
32
|
-
auth_provider=AuthProvider.SLACK,
|
33
|
-
scopes=["channels:history", "im:history", "mpim:history", "groups:history", "reactions:read", "mpim:read",
|
34
|
-
"im:read"]
|
35
|
-
)
|
36
|
-
def my_function():
|
37
|
-
pass
|
38
|
-
|
39
|
-
|
40
|
-
pocket = Pocket(
|
41
|
-
tools=[
|
42
|
-
my_function
|
43
|
-
]
|
44
|
-
)
|
45
|
-
```
|
46
|
-
|
47
|
-
`from_function`을 통해 pocket을 초기화할 때에만 일시적으로 `FunctionTool`로 변환해 넣어줄 수 있다.
|
48
|
-
|
49
|
-
```python
|
50
|
-
from hyperpocket import Pocket
|
51
|
-
from hyperpocket.auth import AuthProvider
|
52
|
-
from hyperpocket.tool import from_func
|
53
|
-
from hyperpocket.tool.tool import ToolAuth
|
54
|
-
|
55
|
-
Pocket(tools=[
|
56
|
-
from_func(
|
57
|
-
func=my_function,
|
58
|
-
auth=ToolAuth(
|
59
|
-
auth_provider=AuthProvider.SLACK,
|
60
|
-
scopes=["channels:history", "im:history", "mpim:history", "groups:history", "reactions:read", "mpim:read",
|
61
|
-
"im:read"]
|
62
|
-
)
|
63
|
-
)
|
64
|
-
])
|
65
|
-
```
|
66
|
-
|
67
|
-
authentication access token은 python 함수의 variable keyword로 매핑되어 전달된다.
|
68
|
-
|
69
|
-
```python
|
70
|
-
from hyperpocket.tool import function_tool
|
71
|
-
from hyperpocket.auth import AuthProvider
|
72
|
-
|
73
|
-
|
74
|
-
@function_tool(
|
75
|
-
auth_provider=AuthProvider.SLACK
|
76
|
-
)
|
77
|
-
def my_function(**kwargs):
|
78
|
-
token = kwargs["SLACK_BOT_TOKEN"]
|
79
|
-
|
80
|
-
# ...
|
81
|
-
```
|
82
|
-
|
83
|
-
- 각 provider 별 mapping key값은 각 provider의 `_ACCESS_TOKEN_KEY` 필드를 확인
|
84
|
-
|
85
|
-
## Docstring parsing
|
86
|
-
|
87
|
-
docstring을 parsing해 argument 의미 파악
|
88
|
-
|
89
|
-
다음 docstring style을 지원
|
90
|
-
|
91
|
-
- google style
|
92
|
-
- sphinx
|
93
|
-
- javadoc
|
94
|
-
- plain
|
95
|
-
|
96
|
-
### Google Style
|
97
|
-
|
98
|
-
```python
|
99
|
-
def my_function(a: int, b: int):
|
100
|
-
"""
|
101
|
-
My Function
|
102
|
-
|
103
|
-
Args:
|
104
|
-
a(int): first argument
|
105
|
-
b(int): second argument
|
106
|
-
"""
|
107
|
-
pass
|
108
|
-
```
|
109
|
-
|
110
|
-
### Sphinx Style
|
111
|
-
|
112
|
-
```python
|
113
|
-
def my_function(a: int, b: int):
|
114
|
-
"""
|
115
|
-
My Function
|
116
|
-
|
117
|
-
:param a: first argument
|
118
|
-
:param b: second argument
|
119
|
-
"""
|
120
|
-
pass
|
121
|
-
```
|
122
|
-
|
123
|
-
## Javadoc Style
|
124
|
-
|
125
|
-
```python
|
126
|
-
def my_function(a: int, b: int):
|
127
|
-
"""
|
128
|
-
My Function
|
129
|
-
|
130
|
-
@param a: first argument
|
131
|
-
@param b: second argument
|
132
|
-
"""
|
133
|
-
pass
|
134
|
-
```
|
135
|
-
|
136
|
-
## Other Style
|
137
|
-
|
138
|
-
```python
|
139
|
-
def my_function(a: int, b: int):
|
140
|
-
"""
|
141
|
-
My Function
|
142
|
-
|
143
|
-
@arg a: first argument
|
144
|
-
@arg b: second argument
|
145
|
-
|
146
|
-
or
|
147
|
-
|
148
|
-
:arg a: first argument
|
149
|
-
:arg b: second argument
|
150
|
-
"""
|
151
|
-
pass
|
152
|
-
```
|
153
|
-
|
154
|
-
하나의 docstring에서 여러 style이 혼용되는 경우는 고려하지 않음
|
155
|
-
|
156
|
-
## Limits
|
157
|
-
|
158
|
-
- input type은 python builtin type과 pydantic만 지원
|
159
|
-
|
@@ -1,144 +0,0 @@
|
|
1
|
-
# Wasm(WebAssembly)
|
2
|
-
|
3
|
-
---
|
4
|
-
|
5
|
-
## How To Use
|
6
|
-
|
7
|
-
### plain url
|
8
|
-
|
9
|
-
`Pocket` 초기화 시 github url을 넣어서 해당 툴을 불러올 수 있다.
|
10
|
-
|
11
|
-
```python
|
12
|
-
from hyperpocket import Pocket
|
13
|
-
|
14
|
-
pocket = Pocket(tools=[
|
15
|
-
'https://github.com/your-organization/your-repository/tree/main',
|
16
|
-
])
|
17
|
-
```
|
18
|
-
|
19
|
-
- 이 경우 기본적으로 `main` branch를 기준으로 코드를 읽어오게 된다.
|
20
|
-
|
21
|
-
### from_git
|
22
|
-
|
23
|
-
`from_git`을 통해 명시적으로 branch나 경로를 지정해 툴을 불러올 수 있다.
|
24
|
-
|
25
|
-
```python
|
26
|
-
from hyperpocket import Pocket
|
27
|
-
from hyperpocket.tool import from_git
|
28
|
-
|
29
|
-
pocket = Pocket(tools=[
|
30
|
-
from_git("https://github.com/your-organization/your-repository", "branch-name", "your/tool/code/path"),
|
31
|
-
])
|
32
|
-
```
|
33
|
-
|
34
|
-
### from_local
|
35
|
-
|
36
|
-
`from_local`을 통해 로컬 경로를 지정해 툴을 불러올 수 있다.
|
37
|
-
|
38
|
-
```python
|
39
|
-
from hyperpocket import Pocket
|
40
|
-
from hyperpocket.tool import from_local
|
41
|
-
|
42
|
-
pocket = Pocket(tools=[
|
43
|
-
from_local("your/local/tool/code/path")
|
44
|
-
])
|
45
|
-
```
|
46
|
-
|
47
|
-
## WasmToolRequest
|
48
|
-
|
49
|
-
WasmTool을 초기화 하기 위한 객체
|
50
|
-
|
51
|
-
WasmToolRequest는 다음 build 함수를 제공
|
52
|
-
|
53
|
-
- `from_local`
|
54
|
-
- `from_git`
|
55
|
-
- `from_github`
|
56
|
-
|
57
|
-
WasmToolRequest는 각각 request에 대한 `lock` 객체를 가지고 있다.
|
58
|
-
|
59
|
-
해당 `lock` 객체들은 `Pocket`에서 `Lockfile` 객체를 통해 관리된다.
|
60
|
-
|
61
|
-
```mermaid
|
62
|
-
classDiagram
|
63
|
-
class WasmToolRequest {
|
64
|
-
+Lock lock
|
65
|
-
+ from_git()
|
66
|
-
+ from_local()
|
67
|
-
}
|
68
|
-
|
69
|
-
class Lock{
|
70
|
-
+key()
|
71
|
-
+sync()
|
72
|
-
}
|
73
|
-
|
74
|
-
class GitLock{
|
75
|
-
+key()
|
76
|
-
+sync()
|
77
|
-
}
|
78
|
-
|
79
|
-
class LocalLock{
|
80
|
-
+key()
|
81
|
-
+sync()
|
82
|
-
}
|
83
|
-
|
84
|
-
class Lockfile {
|
85
|
-
+dict[tuple,Lock] locks
|
86
|
-
|
87
|
-
+ add_lock()
|
88
|
-
+ get_lock()
|
89
|
-
+ sync()
|
90
|
-
+ write()
|
91
|
-
}
|
92
|
-
|
93
|
-
ToolRequest <|.. WasmToolRequest : Implementation
|
94
|
-
Lock o-- WasmToolRequest : 1..1
|
95
|
-
Lock <|.. GitLock : Implementation
|
96
|
-
Lock <|.. LocalLock : Implementation
|
97
|
-
Lock o-- Lockfile : n..1
|
98
|
-
Lockfile o-- Pocket : 1..1
|
99
|
-
```
|
100
|
-
|
101
|
-
## WasmTool
|
102
|
-
|
103
|
-
```python
|
104
|
-
class WasmTool(Tool):
|
105
|
-
_invoker: WasmInvoker = None
|
106
|
-
pkg_lock: Lock = None
|
107
|
-
rel_path: str
|
108
|
-
runtime: ScriptRuntime = None
|
109
|
-
json_schema: Optional[dict] = None
|
110
|
-
readme: Optional[str] = None
|
111
|
-
```
|
112
|
-
|
113
|
-
- `_invoker` : wasm을 실행시키기 위한 클래스
|
114
|
-
- `pkg_lock` : 해당 Tool의 lock 클래스
|
115
|
-
- pkg_lock을 통해 현재 wasm code가 저장되어 있는 패키지 경로를 확인
|
116
|
-
- `rel_path` : package 내에서 wasm code가 존재하는 상대 위치
|
117
|
-
- `runtime` : wasm code의 runtime 언어
|
118
|
-
- `json_schema` : wasm tool의 json schema
|
119
|
-
- `schema.json`로 읽어온 정보
|
120
|
-
- `readme` : readme 정보
|
121
|
-
|
122
|
-
## WasmInvoker
|
123
|
-
|
124
|
-
실제 wasm을 구동하기 위한 클래스
|
125
|
-
|
126
|
-
1. runtime 정보, auth 정보, body 정보 등을 종합해 html을 rendering
|
127
|
-
2. rendering된 html을 메모리에 저장
|
128
|
-
3. wasm 실행을 위한 browser를 실행
|
129
|
-
4. browser에서는 서버로 요청을 보내 rendering된 html을 불러옴
|
130
|
-
5. 해당 html에서 각 runtime에 맞는 코드를 실행 후 결괏값을 전달
|
131
|
-
|
132
|
-
```mermaid
|
133
|
-
sequenceDiagram
|
134
|
-
participant WasmTool as WasmTool (Includes Server)
|
135
|
-
participant Browser as Browser (Executes WASM Runtime)
|
136
|
-
|
137
|
-
|
138
|
-
WasmTool->>WasmTool: Render HTML and Store in Memory
|
139
|
-
WasmTool->>Browser: Launch Browser
|
140
|
-
Browser->>WasmTool: Request Rendered HTML
|
141
|
-
WasmTool->>Browser: Provide Rendered HTML
|
142
|
-
Browser->>Browser: Execute Injected WASM Runtime Script
|
143
|
-
Browser->>WasmTool: Return Execution Result
|
144
|
-
```
|
@@ -1,130 +0,0 @@
|
|
1
|
-
hyperpocket/__init__.py,sha256=iaJvrZ0rgHwAndGFVv8m1Iz_DWtWEcphFPL-1D8f9SY,136
|
2
|
-
hyperpocket/auth/README.KR.md,sha256=IdVj2XHpeI-zuJMEAcRJo3DgzvWFIG4lK4olEcTyId4,13337
|
3
|
-
hyperpocket/auth/README.md,sha256=Z7hkeJCLqPXGjA3teXcswNMbE3QnXoBwkwxW174DzKg,11547
|
4
|
-
hyperpocket/auth/__init__.py,sha256=bPmdxg9OjjzCLGkEywoDitEuhYziepqxgBT_19O_VF0,1152
|
5
|
-
hyperpocket/auth/calendly/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
6
|
-
hyperpocket/auth/calendly/context.py,sha256=oUQzLy_w5NPvbXjFPOhLD-ggONVSy9VVpFabvX4ZpsY,408
|
7
|
-
hyperpocket/auth/calendly/oauth2_context.py,sha256=SiMeZaoWh3aneZVH_MXsT_cZ8qCSVeL-pWHVbfYUS6g,848
|
8
|
-
hyperpocket/auth/calendly/oauth2_handler.py,sha256=ulfhIcj_GCGIIZHVV9v42p2miHVsE3fpKODnrwz4qU0,5296
|
9
|
-
hyperpocket/auth/calendly/oauth2_schema.py,sha256=9JFogAWFAB7nzCww7NXDYuunY6S28wQZzPX41TWfMig,373
|
10
|
-
hyperpocket/auth/context.py,sha256=r19VtTK5FGcmvCgCOr16oNJ0GMFYmgaMEe2EHKJhtQY,1302
|
11
|
-
hyperpocket/auth/github/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
12
|
-
hyperpocket/auth/github/context.py,sha256=Y0QOCNbtQfNDsmgq47s0YGUxTl1QQC-qq4Hm2aZonJ8,404
|
13
|
-
hyperpocket/auth/github/oauth2_context.py,sha256=Ge8rkScRpcAWMMzSWTt2gWrDyi0UehTeZepf39Q6BK0,828
|
14
|
-
hyperpocket/auth/github/oauth2_handler.py,sha256=4HP0WE9cd3I6v4s9ZXvwNPhFPNk9b6L_MByTOvFvAIc,5059
|
15
|
-
hyperpocket/auth/github/oauth2_schema.py,sha256=XfeSF820natq9kwoDKbY2I9TgdjxP-hPkdoGGrKjSuA,371
|
16
|
-
hyperpocket/auth/github/token_context.py,sha256=evstL4mZsWHe9Io1RwBc90VfFOnVAbRk8BI1HseYwg8,446
|
17
|
-
hyperpocket/auth/github/token_handler.py,sha256=Vz5CqkGk8a6mb4xpw_Lhidwy4cZD7wTrK6iPKIRb15E,2777
|
18
|
-
hyperpocket/auth/github/token_schema.py,sha256=8vbJIYWqX_p4GPAtM5xMx5iwo9oZOtZTuSYcnpFGeio,209
|
19
|
-
hyperpocket/auth/google/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
20
|
-
hyperpocket/auth/google/context.py,sha256=1ziH27dXPsxp4WkdlyKos37lF623IIs4kX8cmat8QrY,426
|
21
|
-
hyperpocket/auth/google/oauth2_context.py,sha256=u7TayAfxPUFWuggtlceub22vHIURF0ZV5Do4jUqLWQ0,1023
|
22
|
-
hyperpocket/auth/google/oauth2_handler.py,sha256=547NPhFhi7lpmeVgZ99g_O3IizBMKZ9iAd27RrRNhS4,4880
|
23
|
-
hyperpocket/auth/google/oauth2_schema.py,sha256=E_hyNrb-Ro2UWs2AjhmFDBHwaTEsHZa0rQBhUcCWWKk,411
|
24
|
-
hyperpocket/auth/handler.py,sha256=9R6uQ7bPwmkZUUyg0Q1iOSwmWEQKnGEe92XiLeaxM0w,6580
|
25
|
-
hyperpocket/auth/linear/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
26
|
-
hyperpocket/auth/linear/context.py,sha256=hkxVDYO2jB3FCqIz_bMyB3n6OO74PpLI4LiW-42NFNQ,429
|
27
|
-
hyperpocket/auth/linear/token_context.py,sha256=Sr3toWp_TwN0K73WDvdvtwUMmnOIXXjMwph5DF4ytf4,472
|
28
|
-
hyperpocket/auth/linear/token_handler.py,sha256=wLOodmgXHH4AQWz1tJEHtjrglP3tP1uEDeMQOgQHrRA,2683
|
29
|
-
hyperpocket/auth/linear/token_schema.py,sha256=oTy-gOZvXEmGVStgFfnNmlbkknNepOTI5KIeTQLRxus,209
|
30
|
-
hyperpocket/auth/provider.py,sha256=e7i7RMN1Vv8ymMRj2IbsKjOzuw3jA1wkoMU5u0OGwPw,435
|
31
|
-
hyperpocket/auth/schema.py,sha256=8J6PIXpFIJyuVhkZzz6X_TiKOz7sFGdUW0qmZD8x3MA,529
|
32
|
-
hyperpocket/auth/slack/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
33
|
-
hyperpocket/auth/slack/context.py,sha256=f8dMs7QtSSyissOlPGw8rCZXsVUckFnZWjZ_LAmNXpA,429
|
34
|
-
hyperpocket/auth/slack/oauth2_context.py,sha256=0FJjJIIcVp1-G4EZu85gJeSXor-zOFI4ua2z0R_sFqI,1374
|
35
|
-
hyperpocket/auth/slack/oauth2_handler.py,sha256=8v9gSGkKMPoqEFGFyjCI1qdvklpyeml-5qeoUFo54Xg,5902
|
36
|
-
hyperpocket/auth/slack/oauth2_schema.py,sha256=eu2jF2thmaz66AKcnivTvIBLTbeF-a-xQFMkR4RQYX8,1056
|
37
|
-
hyperpocket/auth/slack/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
38
|
-
hyperpocket/auth/slack/tests/test_oauth2_handler.py,sha256=_tY4gGRgo6plVrtg7XnsinTCyI0DoaLLl7-SKRoCva8,1189
|
39
|
-
hyperpocket/auth/slack/tests/test_token_handler.py,sha256=fN6MifNKofyUhCBbDXHglVWG-A-gUxkBRK2nLmd_QF8,784
|
40
|
-
hyperpocket/auth/slack/token_context.py,sha256=FN19UKrTU-gozrc-i5q9ZhIJZz6joF8yIND5r_9m7jc,462
|
41
|
-
hyperpocket/auth/slack/token_handler.py,sha256=yaJtlOqJP436ubY2VluGxLuFpPo0jh8Y8V3PHUai4X8,2557
|
42
|
-
hyperpocket/auth/slack/token_schema.py,sha256=mAwOtRO2tW5OtDzbllDJtR_uhLD8ShQAjezkAZnAgd0,207
|
43
|
-
hyperpocket/auth/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
44
|
-
hyperpocket/auth/tests/test_google_oauth2_handler.py,sha256=bGWUvKF3X_UQEdp7hmwTBLdma3qcmWxB716d3r5s09o,5658
|
45
|
-
hyperpocket/auth/tests/test_slack_oauth2_handler.py,sha256=7WU26bVqDI3RdzDYsHEz2ooAGTwNVl2CxliYttbb17k,5412
|
46
|
-
hyperpocket/auth/tests/test_slack_token_handler.py,sha256=1hpOQ85i_yJFsOdSN8Tzk8tZbw9SPhPRcZWDty76hA4,2641
|
47
|
-
hyperpocket/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
48
|
-
hyperpocket/cli/__main__.py,sha256=9x5rL3NnEH8j9cyMBEvCtPncf9HM9dvRZvoDrr1lpjY,119
|
49
|
-
hyperpocket/cli/pull.py,sha256=1Ku0WKLtlZFnEDvU0m10XsVJcysMxDwdEMzTYgNz0xE,548
|
50
|
-
hyperpocket/cli/sync.py,sha256=joL5aMVZSkKJxDiaSPRiLDhgmdak6CtOUiWx5H1K6lM,526
|
51
|
-
hyperpocket/config/__init__.py,sha256=deIffu5NBOlSS1X774QuMlf_yb6P2qBQm6tkcf4s8DU,307
|
52
|
-
hyperpocket/config/auth.py,sha256=5Zk7OZmElIqIn7LxsT7H4g3bimBxaKpnbL2v9Fs9MlA,797
|
53
|
-
hyperpocket/config/git.py,sha256=CGbY7J1LyN4ccZr9CFGAQwwhjC9kvdU0On_nsAsZ1FQ,362
|
54
|
-
hyperpocket/config/logger.py,sha256=Wwl-8lllaCNLZruxXU-bcC74Ciy5SmPOX4AJE5BUzWM,2769
|
55
|
-
hyperpocket/config/session.py,sha256=CSXENtWx6Gh4DiPh4u9E-4MFYkM8JRjl2hSPV9PVfrE,801
|
56
|
-
hyperpocket/config/settings.py,sha256=YJ5cPXdy8r5lJVVyn4HXcpQHVhozk2B9zUhS8QYwao8,2103
|
57
|
-
hyperpocket/constants.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
58
|
-
hyperpocket/external/__init__.py,sha256=d6G2TAJSKvu3Bq1kE8j2_M0eTAqYZRWcAm3ePh0qaMI,119
|
59
|
-
hyperpocket/external/github_client.py,sha256=89DkXoyBrpE_YoBasTJ5d87w3Ih47UTD_Aw8w9RaN1k,639
|
60
|
-
hyperpocket/futures/__init__.py,sha256=_pRnYZLbogkYFInA3jokkxrcEVRt6YNaBmkf_dSk3SM,136
|
61
|
-
hyperpocket/futures/futurestore.py,sha256=4DeLlnLz-vdwjYKSVvgx-DNeEPLtzuIDo0xCuY1Aq9Y,1328
|
62
|
-
hyperpocket/pocket_auth.py,sha256=5zN8l2DJOy9ogBFGPmO3-F0NoiGVTw4raRrwk0vbXpw,16001
|
63
|
-
hyperpocket/pocket_main.py,sha256=HDeKGVdKT1D-Go1XV2FBP85xwWAdIKKg1wMSoAlYyZg,12434
|
64
|
-
hyperpocket/prompts.py,sha256=Kl19Vlzc3hX_g04s17WSW5dLp-mvi0JELxJxCy2z7tU,754
|
65
|
-
hyperpocket/repository/__init__.py,sha256=dVwj6KN-cazbIbFC2t0cqz7BOtoZWRgGfnC5-lrsXAg,202
|
66
|
-
hyperpocket/repository/lock.py,sha256=wg1zkDYh58U6D1EU-gXhCwrwnZI-qe0esO1dJsjkldA,5359
|
67
|
-
hyperpocket/repository/lockfile.py,sha256=qiJiLPRT7zhR3WY6OiCrsxDF45CZBQtM5pi5bjGmPVQ,2003
|
68
|
-
hyperpocket/repository/repository.py,sha256=Kw5FiFWdjCl07477bb9vCmUmFnP889mBIvb6JfMmKh4,567
|
69
|
-
hyperpocket/server/__init__.py,sha256=TLqok_mBeV3VRnbZ_spwrwwbsjJ1q9o375AdBk7tKNA,89
|
70
|
-
hyperpocket/server/auth/__init__.py,sha256=UsXwHbu6BVgCD9REcIyD3sY0aj3svRnArPi375joE2U,653
|
71
|
-
hyperpocket/server/auth/calendly.py,sha256=mi9_ysn0SffhnEgaoNa2jcHWCcD_yzqkS0rvzpJG2Qg,478
|
72
|
-
hyperpocket/server/auth/github.py,sha256=cgUtdCYPhf_e51fEQgiYjyG6yuPfMV5RmltjujuWcBw,759
|
73
|
-
hyperpocket/server/auth/google.py,sha256=_C33Bzow7yzjnvf0WUObu8p-dSU5rXqBgSPrENORAmY,470
|
74
|
-
hyperpocket/server/auth/linear.py,sha256=3Ii8jewBCwS2pH3_mSJzBWot1t8IcVghC9K_ohid-H8,448
|
75
|
-
hyperpocket/server/auth/slack.py,sha256=HSfru4_S3B_sEF_keCBLEsNyYeyc92eL5I2a-2TKf64,716
|
76
|
-
hyperpocket/server/auth/token.py,sha256=Q38Tt5ly2vLsR0dxjmnJNX2IqS-FkTsm94bO6e2wtYk,1700
|
77
|
-
hyperpocket/server/proxy.py,sha256=OhpAWpilM5ioKAsqInKudtvpYk56nMFeZ-dwoGAYIDA,1905
|
78
|
-
hyperpocket/server/server.py,sha256=y_VaN97UUhCHbIPiadcjh_e1-A0LgZYZvDUbVYgizoo,6604
|
79
|
-
hyperpocket/server/tool/__init__.py,sha256=khNLe3H2W7WXKQlHjXuuvd9R87eHOAZhDsQmjDcbYsg,210
|
80
|
-
hyperpocket/server/tool/dto/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
81
|
-
hyperpocket/server/tool/dto/script.py,sha256=SPbEIUY9vi_OMsYPMFOkJdpbQCT4-Z3Wy4taiQ3Efy4,361
|
82
|
-
hyperpocket/server/tool/wasm.py,sha256=TiOcymQq0o_nvRwF9HfshnfP6K1LvFMv2fC5DqQOz8k,1170
|
83
|
-
hyperpocket/session/README.KR.md,sha256=SakXbqbrXYr9hUWBW-muvd5wo2fXSq72q4FbDX8x80k,1968
|
84
|
-
hyperpocket/session/README.md,sha256=MVE14e0A1XL-XJlE2toxaXrk1u2t1ytguejWOrkJRdQ,1958
|
85
|
-
hyperpocket/session/__init__.py,sha256=-zdfZfXwR336liAYjwcZULIHg_72NxMMcDFz_RQGLGk,260
|
86
|
-
hyperpocket/session/in_memory.py,sha256=ynPuFcoXiLdeyPRGO_l7aZqHckNMI7fuTxsM9TAo5s8,2928
|
87
|
-
hyperpocket/session/interface.py,sha256=M5GAVjLDJYtABAoX8ne-Na7cY69Xv1FyQ_vLS4atxdw,4467
|
88
|
-
hyperpocket/session/redis.py,sha256=3zHdSEytB0e9jksvTPK_YJmqeQlQG0JlOWHLwZazBXU,4653
|
89
|
-
hyperpocket/session/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
90
|
-
hyperpocket/session/tests/test_in_memory.py,sha256=hc8-u9hxGds7KJA6yUQjcgI1XN0a3zfTVGvr8dJwsG0,4887
|
91
|
-
hyperpocket/session/tests/test_redis.py,sha256=_wUMnQFTMty4BckSNQMRreH7nlkvNUYgL0HRkstf0Jg,5025
|
92
|
-
hyperpocket/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
93
|
-
hyperpocket/tests/test_pocket.py,sha256=3rLcxGfi8Xs70hZrIpLVOSXKecMelIfyyWucN6XtR9k,2777
|
94
|
-
hyperpocket/tests/test_pocket_auth.py,sha256=mKKiIZzriOHgbavP5eiW5P5LrZ2JKJHwh_TZDHsLK6Q,39115
|
95
|
-
hyperpocket/tool/README.KR.md,sha256=BNllN_z-_40cRg8VRmWoAr4pufNUsw3tgta60iBtZuU,2744
|
96
|
-
hyperpocket/tool/README.md,sha256=cOH1EGubzlKkugkvrO-r7rSIhwbwaAyl1p69_eoV8fs,2689
|
97
|
-
hyperpocket/tool/__init__.py,sha256=GgqQp6Zm_ti4eXuBsYQWDWOQyrlXrOu7bzdJxVbkEJE,318
|
98
|
-
hyperpocket/tool/builtins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
99
|
-
hyperpocket/tool/builtins/example/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
100
|
-
hyperpocket/tool/builtins/example/add_tool.py,sha256=zab3KyenJ3iw9qXrPUR5MDbH3TfcraZCpuVSjHLPpDY,525
|
101
|
-
hyperpocket/tool/function/README.KR.md,sha256=tnMVdiwIVGBhDCxB8pI2zRSCrM9f6rSp2TO9QAApNpM,2833
|
102
|
-
hyperpocket/tool/function/README.md,sha256=Fkq7SNijhmLo8T7dbMDPXZLyxI0-qqJ7LrTPUcTcgC4,2999
|
103
|
-
hyperpocket/tool/function/__init__.py,sha256=1IPjND3wgBeBj2tecBNZ3VxtpRZ3VWtlIphzm3too5U,207
|
104
|
-
hyperpocket/tool/function/annotation.py,sha256=EKoBZpgYWxC3BCo0NjhtCVNeVHmmp_lpNH5fLVLUS7g,952
|
105
|
-
hyperpocket/tool/function/tool.py,sha256=sHhrngUNpoRXyrJ3Xd6Rn0RoxnBuU9Sbbfde5q7RKBk,2646
|
106
|
-
hyperpocket/tool/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
107
|
-
hyperpocket/tool/tests/test_function_tool.py,sha256=e8RgXJg_ShbIxxFS7rjAO4lCsXvbsyJF9YCf3CuT79o,8125
|
108
|
-
hyperpocket/tool/tool.py,sha256=TwilwztUXwSa5w6rJ_DpiDtTOjwfKlMmVGtgNMaotNA,4428
|
109
|
-
hyperpocket/tool/wasm/README.KR.md,sha256=qOUcwuJOuKVFKgKqe7EE_xwVh8Zn5IJmwEtSpuLW0Vg,3438
|
110
|
-
hyperpocket/tool/wasm/README.md,sha256=l4rNlU2WVZ8fx3M1EkOnt3w1hRfqnTeRBttFdYk8eeY,3259
|
111
|
-
hyperpocket/tool/wasm/__init__.py,sha256=KGOPPyA1CnbW-T9bgSpfIXf9952l_p5HJDhHGBb3b9o,71
|
112
|
-
hyperpocket/tool/wasm/browser.py,sha256=X2aw9sZy306dKDR0knqn4fGC6O1fw08M9t_zIkjUeWs,2083
|
113
|
-
hyperpocket/tool/wasm/invoker.py,sha256=u8ZfGW871IVBaG4_XbOQHfp7QYLS093QdwVa3HOL-_k,1520
|
114
|
-
hyperpocket/tool/wasm/script.py,sha256=nhCQ_Ve_Kz5zaKJcV9O6Ixw1a-Rd1zq1yZk5HOwZqt0,2612
|
115
|
-
hyperpocket/tool/wasm/templates/__init__.py,sha256=cQ-uNsO418xvv54i8bD0IrqcAKUxMuyZoG3ShP72olw,949
|
116
|
-
hyperpocket/tool/wasm/templates/node.py,sha256=8ghVQGS9L3IJGdBB8waLK_ej4FS34dCA_bwPKjm8QSU,2782
|
117
|
-
hyperpocket/tool/wasm/templates/python.py,sha256=uTjdaccwSi-QeDxsA5qfAAckxI7jsxtrPKi9in4X7EM,2347
|
118
|
-
hyperpocket/tool/wasm/tool.py,sha256=UcolQQh5qeiAYUUJlyyGE6y-zet-PGlBQTimXGqYoTc,4782
|
119
|
-
hyperpocket/util/__init__.py,sha256=oXUL2g9SDCOQNhd5OW_VZoUcKy3vghoHWHqsmdm_BGA,59
|
120
|
-
hyperpocket/util/extract_func_param_desc_from_docstring.py,sha256=2l8LmpreJZekIDXEA7FXY32nT9xlOa26P2h3AmekNQ4,4031
|
121
|
-
hyperpocket/util/find_all_leaf_class_in_package.py,sha256=afGLqe5s7irOOPh7DI70v-utDL2a0vhNzHjtgSmDeZU,528
|
122
|
-
hyperpocket/util/find_all_subclass_in_package.py,sha256=CfsM5sWHHbFZD6M-jbJRN8Zo3m57R1E7FGg_V__HdFU,964
|
123
|
-
hyperpocket/util/flatten_json_schema.py,sha256=PXK6I1S2QDxwSGmUVEl5bbSPrjTa38GBllBQ8uKXJNQ,1587
|
124
|
-
hyperpocket/util/function_to_model.py,sha256=f6806fVJfZp2PyXwN5ZoD8-4Bw81KMYlUEgFAXJuUas,1806
|
125
|
-
hyperpocket/util/get_objects_from_subpackage.py,sha256=Aq87PD_H57c2IjLS28Hf0Wu5vLVyoOtDoBvKzvQ1UPw,929
|
126
|
-
hyperpocket/util/json_schema_to_model.py,sha256=YFQSv_a-7OYf_6XPMyi097CKVm4sjDxy9k8DjlU9FP8,2897
|
127
|
-
hyperpocket-0.0.3.dist-info/METADATA,sha256=-ln3ZFUsfBn1tTSx3CUWMY37PpYpUmPO-x7J3MFItYI,9808
|
128
|
-
hyperpocket-0.0.3.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
129
|
-
hyperpocket-0.0.3.dist-info/entry_points.txt,sha256=HP1S7F8Sozcu87qCmOSbUpl-bvodrJvjeodWKi4TlF0,50
|
130
|
-
hyperpocket-0.0.3.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|