agentic-sdk 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.
- agentic_sdk-0.0.1/.gitignore +10 -0
- agentic_sdk-0.0.1/.python-version +1 -0
- agentic_sdk-0.0.1/LICENSE +12 -0
- agentic_sdk-0.0.1/PKG-INFO +72 -0
- agentic_sdk-0.0.1/README.md +47 -0
- agentic_sdk-0.0.1/pyproject.toml +49 -0
- agentic_sdk-0.0.1/src/agentic_sdk/__init__.py +18 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
3.11
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
BSD Zero Clause License (SPDX: 0BSD)
|
|
2
|
+
|
|
3
|
+
Permission to use, copy, modify, and/or distribute this software for any purpose
|
|
4
|
+
with or without fee is hereby granted.
|
|
5
|
+
|
|
6
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
7
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
8
|
+
FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
9
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
|
|
10
|
+
OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
|
11
|
+
TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
|
|
12
|
+
THIS SOFTWARE.
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: agentic-sdk
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Python bindings for the Agentic C++ SDK — orchestrate coding agents and LLMs with a unified session model, event stream, and tool system.
|
|
5
|
+
Project-URL: Homepage, https://github.com/BuildWithCollab/Agentic
|
|
6
|
+
Project-URL: Repository, https://github.com/BuildWithCollab/Agentic
|
|
7
|
+
Project-URL: Issues, https://github.com/BuildWithCollab/Agentic/issues
|
|
8
|
+
Author-email: Mrowr Purr <mrowr.purr@gmail.com>
|
|
9
|
+
License-Expression: 0BSD
|
|
10
|
+
License-File: LICENSE
|
|
11
|
+
Keywords: agent-orchestration,agentic,ai,claude-code,codex,coding-agent,gemini,llm,sdk,tools
|
|
12
|
+
Classifier: Development Status :: 1 - Planning
|
|
13
|
+
Classifier: Intended Audience :: Developers
|
|
14
|
+
Classifier: Operating System :: OS Independent
|
|
15
|
+
Classifier: Programming Language :: C++
|
|
16
|
+
Classifier: Programming Language :: Python :: 3
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
20
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
21
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
22
|
+
Classifier: Typing :: Typed
|
|
23
|
+
Requires-Python: >=3.11
|
|
24
|
+
Description-Content-Type: text/markdown
|
|
25
|
+
|
|
26
|
+
# agentic-sdk
|
|
27
|
+
|
|
28
|
+
> ⚠️ **Pre-release placeholder.** This package reserves the name — the real thing is coming soon.
|
|
29
|
+
|
|
30
|
+
Python bindings for the [Agentic](https://github.com/BuildWithCollab/Agentic) C++ SDK — a unified library for orchestrating AI coding agents and direct LLM APIs.
|
|
31
|
+
|
|
32
|
+
## What it is
|
|
33
|
+
|
|
34
|
+
Agentic is a C++ SDK (with Python bindings via this package) that treats coding agents and LLM conversations as first-class **sessions** with a shared event model:
|
|
35
|
+
|
|
36
|
+
- **Unified session API** — the same `prompt` / event-stream interface whether you're talking to an LLM directly or driving a CLI coding agent like Claude Code, Gemini CLI, or Codex.
|
|
37
|
+
- **Structured event database** — every tool call, reasoning step, and response is captured in a queryable local database. Slice by session, tool, time, or full-text search.
|
|
38
|
+
- **Pythonic tool definitions** — define tools as decorated functions with Pydantic models. The LLM gets the schema, you get the type safety.
|
|
39
|
+
- **Async event streams** — subscribe to events as they happen, across sessions, across processes.
|
|
40
|
+
- **Forking** — branch a session at any point to explore alternate paths without losing the original context.
|
|
41
|
+
- **Extensible** — providers for new coding agents or LLMs load as dynamic libraries.
|
|
42
|
+
|
|
43
|
+
## Status
|
|
44
|
+
|
|
45
|
+
Not yet functional. The C++ SDK is under active development and the Python bindings will land shortly after it stabilizes.
|
|
46
|
+
|
|
47
|
+
If you're curious about the design, the full interface design document lives in the [main repo](https://github.com/BuildWithCollab/Agentic/blob/main/interface-designing.md).
|
|
48
|
+
|
|
49
|
+
## Coming soon
|
|
50
|
+
|
|
51
|
+
```python
|
|
52
|
+
import agentic
|
|
53
|
+
from agentic.tools import tool
|
|
54
|
+
from pydantic import BaseModel
|
|
55
|
+
|
|
56
|
+
class WeatherArgs(BaseModel):
|
|
57
|
+
city: str
|
|
58
|
+
|
|
59
|
+
@tool(description="Get the weather for a city")
|
|
60
|
+
def weather(args: WeatherArgs) -> dict:
|
|
61
|
+
return {"temp": 72, "conditions": "sunny"}
|
|
62
|
+
|
|
63
|
+
ctx = agentic.Context()
|
|
64
|
+
|
|
65
|
+
with ctx.llm_session(model="anthropic/claude-sonnet-4", tools=[weather]) as session:
|
|
66
|
+
async for event in session.prompt("What's the weather in Portland?"):
|
|
67
|
+
print(f"{event.event_type}: {event.content}")
|
|
68
|
+
```
|
|
69
|
+
|
|
70
|
+
## License
|
|
71
|
+
|
|
72
|
+
[0BSD](LICENSE) — BSD Zero Clause. Do whatever you want.
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
# agentic-sdk
|
|
2
|
+
|
|
3
|
+
> ⚠️ **Pre-release placeholder.** This package reserves the name — the real thing is coming soon.
|
|
4
|
+
|
|
5
|
+
Python bindings for the [Agentic](https://github.com/BuildWithCollab/Agentic) C++ SDK — a unified library for orchestrating AI coding agents and direct LLM APIs.
|
|
6
|
+
|
|
7
|
+
## What it is
|
|
8
|
+
|
|
9
|
+
Agentic is a C++ SDK (with Python bindings via this package) that treats coding agents and LLM conversations as first-class **sessions** with a shared event model:
|
|
10
|
+
|
|
11
|
+
- **Unified session API** — the same `prompt` / event-stream interface whether you're talking to an LLM directly or driving a CLI coding agent like Claude Code, Gemini CLI, or Codex.
|
|
12
|
+
- **Structured event database** — every tool call, reasoning step, and response is captured in a queryable local database. Slice by session, tool, time, or full-text search.
|
|
13
|
+
- **Pythonic tool definitions** — define tools as decorated functions with Pydantic models. The LLM gets the schema, you get the type safety.
|
|
14
|
+
- **Async event streams** — subscribe to events as they happen, across sessions, across processes.
|
|
15
|
+
- **Forking** — branch a session at any point to explore alternate paths without losing the original context.
|
|
16
|
+
- **Extensible** — providers for new coding agents or LLMs load as dynamic libraries.
|
|
17
|
+
|
|
18
|
+
## Status
|
|
19
|
+
|
|
20
|
+
Not yet functional. The C++ SDK is under active development and the Python bindings will land shortly after it stabilizes.
|
|
21
|
+
|
|
22
|
+
If you're curious about the design, the full interface design document lives in the [main repo](https://github.com/BuildWithCollab/Agentic/blob/main/interface-designing.md).
|
|
23
|
+
|
|
24
|
+
## Coming soon
|
|
25
|
+
|
|
26
|
+
```python
|
|
27
|
+
import agentic
|
|
28
|
+
from agentic.tools import tool
|
|
29
|
+
from pydantic import BaseModel
|
|
30
|
+
|
|
31
|
+
class WeatherArgs(BaseModel):
|
|
32
|
+
city: str
|
|
33
|
+
|
|
34
|
+
@tool(description="Get the weather for a city")
|
|
35
|
+
def weather(args: WeatherArgs) -> dict:
|
|
36
|
+
return {"temp": 72, "conditions": "sunny"}
|
|
37
|
+
|
|
38
|
+
ctx = agentic.Context()
|
|
39
|
+
|
|
40
|
+
with ctx.llm_session(model="anthropic/claude-sonnet-4", tools=[weather]) as session:
|
|
41
|
+
async for event in session.prompt("What's the weather in Portland?"):
|
|
42
|
+
print(f"{event.event_type}: {event.content}")
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
## License
|
|
46
|
+
|
|
47
|
+
[0BSD](LICENSE) — BSD Zero Clause. Do whatever you want.
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "agentic-sdk"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Python bindings for the Agentic C++ SDK — orchestrate coding agents and LLMs with a unified session model, event stream, and tool system."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = "0BSD"
|
|
11
|
+
license-files = ["LICENSE"]
|
|
12
|
+
requires-python = ">=3.11"
|
|
13
|
+
authors = [
|
|
14
|
+
{ name = "Mrowr Purr", email = "mrowr.purr@gmail.com" },
|
|
15
|
+
]
|
|
16
|
+
keywords = [
|
|
17
|
+
"agentic",
|
|
18
|
+
"ai",
|
|
19
|
+
"llm",
|
|
20
|
+
"coding-agent",
|
|
21
|
+
"claude-code",
|
|
22
|
+
"gemini",
|
|
23
|
+
"codex",
|
|
24
|
+
"agent-orchestration",
|
|
25
|
+
"sdk",
|
|
26
|
+
"tools",
|
|
27
|
+
]
|
|
28
|
+
classifiers = [
|
|
29
|
+
"Development Status :: 1 - Planning",
|
|
30
|
+
"Intended Audience :: Developers",
|
|
31
|
+
"Operating System :: OS Independent",
|
|
32
|
+
"Programming Language :: Python :: 3",
|
|
33
|
+
"Programming Language :: Python :: 3.11",
|
|
34
|
+
"Programming Language :: Python :: 3.12",
|
|
35
|
+
"Programming Language :: Python :: 3.13",
|
|
36
|
+
"Programming Language :: C++",
|
|
37
|
+
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
38
|
+
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
|
39
|
+
"Typing :: Typed",
|
|
40
|
+
]
|
|
41
|
+
dependencies = []
|
|
42
|
+
|
|
43
|
+
[project.urls]
|
|
44
|
+
Homepage = "https://github.com/BuildWithCollab/Agentic"
|
|
45
|
+
Repository = "https://github.com/BuildWithCollab/Agentic"
|
|
46
|
+
Issues = "https://github.com/BuildWithCollab/Agentic/issues"
|
|
47
|
+
|
|
48
|
+
[tool.hatch.build.targets.wheel]
|
|
49
|
+
packages = ["src/agentic_sdk"]
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"""
|
|
2
|
+
agentic-sdk — Python bindings for the Agentic C++ SDK.
|
|
3
|
+
|
|
4
|
+
⚠️ Pre-release placeholder. The real package is coming soon.
|
|
5
|
+
|
|
6
|
+
Agentic is a C++ SDK for orchestrating AI coding agents (Claude Code,
|
|
7
|
+
Gemini CLI, Codex, and more) and direct LLM APIs — with a unified
|
|
8
|
+
session model, event stream, and tool system.
|
|
9
|
+
|
|
10
|
+
This Python package will ship native bindings to the C++ core so you
|
|
11
|
+
can use Agentic from Python with a Pythonic API: context managers,
|
|
12
|
+
async generators, Pydantic-based tool definitions, and a structured
|
|
13
|
+
event stream you can query or subscribe to.
|
|
14
|
+
|
|
15
|
+
Not yet ready for use — watch this space.
|
|
16
|
+
"""
|
|
17
|
+
|
|
18
|
+
__version__ = "0.0.1"
|