hyperpocket-anthropic 0.1.9__tar.gz → 0.1.10__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {hyperpocket_anthropic-0.1.9 → hyperpocket_anthropic-0.1.10}/.gitignore +1 -0
- {hyperpocket_anthropic-0.1.9 → hyperpocket_anthropic-0.1.10}/PKG-INFO +8 -10
- {hyperpocket_anthropic-0.1.9 → hyperpocket_anthropic-0.1.10}/README.md +7 -9
- {hyperpocket_anthropic-0.1.9 → hyperpocket_anthropic-0.1.10}/pyproject.toml +1 -1
- {hyperpocket_anthropic-0.1.9 → hyperpocket_anthropic-0.1.10}/__init__.py +0 -0
- {hyperpocket_anthropic-0.1.9 → hyperpocket_anthropic-0.1.10}/hyperpocket_anthropic/__init__.py +0 -0
- {hyperpocket_anthropic-0.1.9 → hyperpocket_anthropic-0.1.10}/hyperpocket_anthropic/pocket_anthropic.py +0 -0
- {hyperpocket_anthropic-0.1.9 → hyperpocket_anthropic-0.1.10}/hyperpocket_anthropic/util/__init__.py +0 -0
- {hyperpocket_anthropic-0.1.9 → hyperpocket_anthropic-0.1.10}/hyperpocket_anthropic/util/tool_to_anthropic_spec.py +0 -0
- {hyperpocket_anthropic-0.1.9 → hyperpocket_anthropic-0.1.10}/tests/__init__.py +0 -0
- {hyperpocket_anthropic-0.1.9 → hyperpocket_anthropic-0.1.10}/tests/test_pocket_anthropic_no_profile.py +0 -0
- {hyperpocket_anthropic-0.1.9 → hyperpocket_anthropic-0.1.10}/tests/test_pocket_anthropic_use_profile.py +0 -0
- {hyperpocket_anthropic-0.1.9 → hyperpocket_anthropic-0.1.10}/uv.lock +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: hyperpocket-anthropic
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.10
|
4
4
|
Author-email: Hyperpocket Team <hyperpocket@vessl.ai>
|
5
5
|
Requires-Python: >=3.10
|
6
6
|
Requires-Dist: anthropic>=0.40.0
|
@@ -12,14 +12,14 @@ Description-Content-Type: text/markdown
|
|
12
12
|
### Get Pocket Anthropic Tool Spec
|
13
13
|
|
14
14
|
```python
|
15
|
-
|
15
|
+
|
16
16
|
|
17
17
|
from hyperpocket_anthropic import PocketAnthropic
|
18
18
|
|
19
19
|
pocket = PocketAnthropic(tools=[
|
20
20
|
"https://github.com/my-org/some-awesome-tool",
|
21
|
-
|
22
|
-
|
21
|
+
"https://github.com/vessl-ai/hyperpocket/tree/main/tools/slack/get-message",
|
22
|
+
"https://github.com/vessl-ai/hyperpocket/tree/main/tools/slack/post-message",
|
23
23
|
]
|
24
24
|
)
|
25
25
|
|
@@ -86,14 +86,13 @@ response_after_tool_call = llm.messages.create(
|
|
86
86
|
import os
|
87
87
|
|
88
88
|
from anthropic import Anthropic
|
89
|
-
from hyperpocket.tool import from_git
|
90
89
|
|
91
90
|
from hyperpocket_anthropic import PocketAnthropic
|
92
91
|
|
93
92
|
pocket = PocketAnthropic(tools=[
|
94
93
|
"https://github.com/my-org/some-awesome-tool",
|
95
|
-
|
96
|
-
|
94
|
+
"https://github.com/vessl-ai/hyperpocket/tree/main/tools/slack/get-message",
|
95
|
+
"https://github.com/vessl-ai/hyperpocket/tree/main/tools/slack/post-message",
|
97
96
|
]
|
98
97
|
)
|
99
98
|
|
@@ -138,15 +137,14 @@ response_after_tool_call = llm.messages.create(
|
|
138
137
|
import os
|
139
138
|
|
140
139
|
from anthropic import Anthropic
|
141
|
-
from hyperpocket.tool import from_git
|
142
140
|
|
143
141
|
from hyperpocket_anthropic import PocketAnthropic
|
144
142
|
|
145
143
|
client = Anthropic()
|
146
144
|
pocket = PocketAnthropic(tools=[
|
147
145
|
"https://github.com/my-org/some-awesome-tool",
|
148
|
-
|
149
|
-
|
146
|
+
"https://github.com/vessl-ai/hyperpocket/tree/main/tools/slack/get-message",
|
147
|
+
"https://github.com/vessl-ai/hyperpocket/tree/main/tools/slack/post-message",
|
150
148
|
]
|
151
149
|
)
|
152
150
|
|
@@ -3,14 +3,14 @@
|
|
3
3
|
### Get Pocket Anthropic Tool Spec
|
4
4
|
|
5
5
|
```python
|
6
|
-
|
6
|
+
|
7
7
|
|
8
8
|
from hyperpocket_anthropic import PocketAnthropic
|
9
9
|
|
10
10
|
pocket = PocketAnthropic(tools=[
|
11
11
|
"https://github.com/my-org/some-awesome-tool",
|
12
|
-
|
13
|
-
|
12
|
+
"https://github.com/vessl-ai/hyperpocket/tree/main/tools/slack/get-message",
|
13
|
+
"https://github.com/vessl-ai/hyperpocket/tree/main/tools/slack/post-message",
|
14
14
|
]
|
15
15
|
)
|
16
16
|
|
@@ -77,14 +77,13 @@ response_after_tool_call = llm.messages.create(
|
|
77
77
|
import os
|
78
78
|
|
79
79
|
from anthropic import Anthropic
|
80
|
-
from hyperpocket.tool import from_git
|
81
80
|
|
82
81
|
from hyperpocket_anthropic import PocketAnthropic
|
83
82
|
|
84
83
|
pocket = PocketAnthropic(tools=[
|
85
84
|
"https://github.com/my-org/some-awesome-tool",
|
86
|
-
|
87
|
-
|
85
|
+
"https://github.com/vessl-ai/hyperpocket/tree/main/tools/slack/get-message",
|
86
|
+
"https://github.com/vessl-ai/hyperpocket/tree/main/tools/slack/post-message",
|
88
87
|
]
|
89
88
|
)
|
90
89
|
|
@@ -129,15 +128,14 @@ response_after_tool_call = llm.messages.create(
|
|
129
128
|
import os
|
130
129
|
|
131
130
|
from anthropic import Anthropic
|
132
|
-
from hyperpocket.tool import from_git
|
133
131
|
|
134
132
|
from hyperpocket_anthropic import PocketAnthropic
|
135
133
|
|
136
134
|
client = Anthropic()
|
137
135
|
pocket = PocketAnthropic(tools=[
|
138
136
|
"https://github.com/my-org/some-awesome-tool",
|
139
|
-
|
140
|
-
|
137
|
+
"https://github.com/vessl-ai/hyperpocket/tree/main/tools/slack/get-message",
|
138
|
+
"https://github.com/vessl-ai/hyperpocket/tree/main/tools/slack/post-message",
|
141
139
|
]
|
142
140
|
)
|
143
141
|
|
File without changes
|
{hyperpocket_anthropic-0.1.9 → hyperpocket_anthropic-0.1.10}/hyperpocket_anthropic/__init__.py
RENAMED
File without changes
|
File without changes
|
{hyperpocket_anthropic-0.1.9 → hyperpocket_anthropic-0.1.10}/hyperpocket_anthropic/util/__init__.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|