hail-sdk 0.0.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- hail/__init__.py +6 -0
- hail/client.py +9 -0
- hail_sdk-0.0.1.dist-info/METADATA +39 -0
- hail_sdk-0.0.1.dist-info/RECORD +5 -0
- hail_sdk-0.0.1.dist-info/WHEEL +4 -0
hail/__init__.py
ADDED
hail/client.py
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
class Client:
|
|
2
|
+
"""Hail API client (alpha placeholder — full client lands in v1)."""
|
|
3
|
+
|
|
4
|
+
def __init__(self, api_key: str, base_url: str = "https://api.hail.so") -> None:
|
|
5
|
+
self.api_key = api_key
|
|
6
|
+
self.base_url = base_url.rstrip("/")
|
|
7
|
+
|
|
8
|
+
def __repr__(self) -> str:
|
|
9
|
+
return f"<hail.Client base_url={self.base_url!r}>"
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: hail-sdk
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Python SDK for Hail — universal communication platform for AI agents.
|
|
5
|
+
Project-URL: Homepage, https://hail.so
|
|
6
|
+
Project-URL: Repository, https://github.com/hail-hq/hail
|
|
7
|
+
Project-URL: Documentation, https://hail.so/docs
|
|
8
|
+
Project-URL: Issues, https://github.com/hail-hq/hail/issues
|
|
9
|
+
Author-email: Hail <hi@hail.so>
|
|
10
|
+
License: AGPL-3.0-or-later
|
|
11
|
+
Keywords: ai-agents,email,hail,mcp,phone,sms,voice
|
|
12
|
+
Classifier: Development Status :: 3 - Alpha
|
|
13
|
+
Classifier: License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)
|
|
14
|
+
Classifier: Programming Language :: Python :: 3
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
18
|
+
Classifier: Topic :: Communications :: Telephony
|
|
19
|
+
Classifier: Typing :: Typed
|
|
20
|
+
Requires-Python: >=3.11
|
|
21
|
+
Requires-Dist: httpx>=0.27
|
|
22
|
+
Requires-Dist: pydantic>=2.9
|
|
23
|
+
Description-Content-Type: text/markdown
|
|
24
|
+
|
|
25
|
+
# hail-sdk
|
|
26
|
+
|
|
27
|
+
Python SDK for [Hail](https://hail.so) — universal communication platform for AI agents.
|
|
28
|
+
|
|
29
|
+
```python
|
|
30
|
+
from hail import Client
|
|
31
|
+
|
|
32
|
+
hail = Client(api_key="sk-...")
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
**Alpha.** The full client lands with Hail v0.1.0. Track progress at [github.com/hail-hq/hail](https://github.com/hail-hq/hail).
|
|
36
|
+
|
|
37
|
+
## License
|
|
38
|
+
|
|
39
|
+
[AGPL-3.0-or-later](https://github.com/hail-hq/hail/blob/main/LICENSE).
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
hail/__init__.py,sha256=NT-UXQnMpATIp7caa-4j0-ZY1ubNgavzPQt5YjJu9b8,99
|
|
2
|
+
hail/client.py,sha256=ZwwYF8cvItFa5TgKOL5w9bcPOk1NOxUqDOF1ZwcFOtg,342
|
|
3
|
+
hail_sdk-0.0.1.dist-info/METADATA,sha256=2-w-gQGbLOwQyRQ3Co9-DoeUlqEDUCllAJHjKiAQpXM,1376
|
|
4
|
+
hail_sdk-0.0.1.dist-info/WHEEL,sha256=QccIxa26bgl1E6uMy58deGWi-0aeIkkangHcxk2kWfw,87
|
|
5
|
+
hail_sdk-0.0.1.dist-info/RECORD,,
|