soorma 0.0.0__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.
- soorma-0.0.0/PKG-INFO +31 -0
- soorma-0.0.0/README.md +17 -0
- soorma-0.0.0/pyproject.toml +24 -0
- soorma-0.0.0/src/soorma/__init__.py +9 -0
soorma-0.0.0/PKG-INFO
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
Metadata-Version: 2.5
|
|
2
|
+
Name: soorma
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Placeholder — the Python client harness for the soorma.ai platform. Not yet released.
|
|
5
|
+
Project-URL: Homepage, https://soorma.ai
|
|
6
|
+
Project-URL: Repository, https://github.com/soorma-ai/soorma-sdk
|
|
7
|
+
Author: Amit Bhadoria
|
|
8
|
+
License: Apache-2.0
|
|
9
|
+
Classifier: Development Status :: 1 - Planning
|
|
10
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Requires-Python: >=3.9
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
|
|
15
|
+
# soorma
|
|
16
|
+
|
|
17
|
+
Placeholder. The Python client harness for the [soorma.ai](https://soorma.ai)
|
|
18
|
+
platform will be published here.
|
|
19
|
+
|
|
20
|
+
Nothing is released yet — this version reserves the name and carries no
|
|
21
|
+
functionality. Development happens in the open at
|
|
22
|
+
<https://github.com/soorma-ai/soorma-sdk>, under Apache 2.0.
|
|
23
|
+
|
|
24
|
+
## What it will be
|
|
25
|
+
|
|
26
|
+
A *harness* is the SDK an agent embeds. It owns the agent's loop and mediates
|
|
27
|
+
its I/O, and it enforces nothing — every mechanism that actually holds is
|
|
28
|
+
server-side. Treat anything the harness does as a courtesy the platform
|
|
29
|
+
independently re-checks.
|
|
30
|
+
|
|
31
|
+
Watch the repository for the first real release.
|
soorma-0.0.0/README.md
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# soorma
|
|
2
|
+
|
|
3
|
+
Placeholder. The Python client harness for the [soorma.ai](https://soorma.ai)
|
|
4
|
+
platform will be published here.
|
|
5
|
+
|
|
6
|
+
Nothing is released yet — this version reserves the name and carries no
|
|
7
|
+
functionality. Development happens in the open at
|
|
8
|
+
<https://github.com/soorma-ai/soorma-sdk>, under Apache 2.0.
|
|
9
|
+
|
|
10
|
+
## What it will be
|
|
11
|
+
|
|
12
|
+
A *harness* is the SDK an agent embeds. It owns the agent's loop and mediates
|
|
13
|
+
its I/O, and it enforces nothing — every mechanism that actually holds is
|
|
14
|
+
server-side. Treat anything the harness does as a courtesy the platform
|
|
15
|
+
independently re-checks.
|
|
16
|
+
|
|
17
|
+
Watch the repository for the first real release.
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "soorma"
|
|
7
|
+
version = "0.0.0"
|
|
8
|
+
description = "Placeholder — the Python client harness for the soorma.ai platform. Not yet released."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.9"
|
|
11
|
+
license = { text = "Apache-2.0" }
|
|
12
|
+
authors = [{ name = "Amit Bhadoria" }]
|
|
13
|
+
classifiers = [
|
|
14
|
+
"Development Status :: 1 - Planning",
|
|
15
|
+
"License :: OSI Approved :: Apache Software License",
|
|
16
|
+
"Programming Language :: Python :: 3",
|
|
17
|
+
]
|
|
18
|
+
|
|
19
|
+
[project.urls]
|
|
20
|
+
Homepage = "https://soorma.ai"
|
|
21
|
+
Repository = "https://github.com/soorma-ai/soorma-sdk"
|
|
22
|
+
|
|
23
|
+
[tool.hatch.build.targets.wheel]
|
|
24
|
+
packages = ["src/soorma"]
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"""Placeholder for the soorma.ai Python client harness.
|
|
2
|
+
|
|
3
|
+
Nothing is released yet. This distribution reserves the name and carries no
|
|
4
|
+
functionality. Follow https://github.com/soorma-ai/soorma-sdk for the first
|
|
5
|
+
real release.
|
|
6
|
+
"""
|
|
7
|
+
|
|
8
|
+
__version__ = "0.0.0"
|
|
9
|
+
__all__ = ["__version__"]
|