hai-agents 0.0.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,22 @@
1
+ Metadata-Version: 2.4
2
+ Name: hai-agents
3
+ Version: 0.0.1
4
+ Summary: Official H Company Agent SDK. Coming soon.
5
+ Project-URL: Homepage, https://hcompany.ai
6
+ Project-URL: Documentation, https://hub.hcompany.ai/agent-api
7
+ Author-email: H Company <contact@hcompany.ai>
8
+ License: MIT
9
+ Keywords: agent,agents,h-company,llm,sdk
10
+ Classifier: Development Status :: 1 - Planning
11
+ Classifier: Intended Audience :: Developers
12
+ Classifier: License :: OSI Approved :: MIT License
13
+ Classifier: Operating System :: OS Independent
14
+ Classifier: Programming Language :: Python :: 3
15
+ Requires-Python: >=3.10
16
+ Description-Content-Type: text/markdown
17
+
18
+ # hai-agents
19
+
20
+ Official Python SDK for the [H Company](https://hcompany.ai) Agent API.
21
+
22
+ **Coming soon.**
@@ -0,0 +1,5 @@
1
+ # hai-agents
2
+
3
+ Official Python SDK for the [H Company](https://hcompany.ai) Agent API.
4
+
5
+ **Coming soon.**
@@ -0,0 +1,27 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "hai-agents"
7
+ version = "0.0.1"
8
+ description = "Official H Company Agent SDK. Coming soon."
9
+ requires-python = ">=3.10"
10
+ readme = "README.md"
11
+ authors = [{name = "H Company", email = "contact@hcompany.ai"}]
12
+ license = {text = "MIT"}
13
+ keywords = ["agent", "agents", "llm", "sdk", "h-company"]
14
+ classifiers = [
15
+ "Development Status :: 1 - Planning",
16
+ "Intended Audience :: Developers",
17
+ "License :: OSI Approved :: MIT License",
18
+ "Operating System :: OS Independent",
19
+ "Programming Language :: Python :: 3",
20
+ ]
21
+
22
+ [project.urls]
23
+ Homepage = "https://hcompany.ai"
24
+ Documentation = "https://hub.hcompany.ai/agent-api"
25
+
26
+ [tool.hatch.build.targets.wheel]
27
+ packages = ["src/hai_agents"]
@@ -0,0 +1,3 @@
1
+ """Official H Company Agent SDK. Coming soon."""
2
+
3
+ __version__ = "0.0.1"