langstage 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.
- langstage-0.0.1/PKG-INFO +22 -0
- langstage-0.0.1/README.md +11 -0
- langstage-0.0.1/langstage/__init__.py +2 -0
- langstage-0.0.1/pyproject.toml +19 -0
langstage-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: langstage
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Reserved for the LangStage family: every stage for your LangGraph agent. Real release coming soon.
|
|
5
|
+
Project-URL: Homepage, https://github.com/dkedar7
|
|
6
|
+
Author-email: Kedar Dabhadkar <kdabhadk@gmail.com>
|
|
7
|
+
License: MIT
|
|
8
|
+
Keywords: agents,langchain,langgraph,langstage
|
|
9
|
+
Requires-Python: >=3.10
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
|
|
12
|
+
# langstage
|
|
13
|
+
|
|
14
|
+
**LangStage — every stage for your LangGraph agent.**
|
|
15
|
+
|
|
16
|
+
This name is reserved for the LangStage family of agent surfaces
|
|
17
|
+
(web, CLI, JupyterLab, VS Code) built on
|
|
18
|
+
[langgraph-stream-parser](https://github.com/dkedar7/langgraph-stream-parser).
|
|
19
|
+
The packages currently published as `cowork-dash` / `deepagent-*` are being
|
|
20
|
+
renamed into this family. Real releases land here soon.
|
|
21
|
+
|
|
22
|
+
Maintainer: [dkedar7](https://github.com/dkedar7)
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# langstage
|
|
2
|
+
|
|
3
|
+
**LangStage — every stage for your LangGraph agent.**
|
|
4
|
+
|
|
5
|
+
This name is reserved for the LangStage family of agent surfaces
|
|
6
|
+
(web, CLI, JupyterLab, VS Code) built on
|
|
7
|
+
[langgraph-stream-parser](https://github.com/dkedar7/langgraph-stream-parser).
|
|
8
|
+
The packages currently published as `cowork-dash` / `deepagent-*` are being
|
|
9
|
+
renamed into this family. Real releases land here soon.
|
|
10
|
+
|
|
11
|
+
Maintainer: [dkedar7](https://github.com/dkedar7)
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "langstage"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Reserved for the LangStage family: every stage for your LangGraph agent. Real release coming soon."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = { text = "MIT" }
|
|
11
|
+
requires-python = ">=3.10"
|
|
12
|
+
authors = [{ name = "Kedar Dabhadkar", email = "kdabhadk@gmail.com" }]
|
|
13
|
+
keywords = ["langgraph", "langchain", "agents", "langstage"]
|
|
14
|
+
|
|
15
|
+
[project.urls]
|
|
16
|
+
Homepage = "https://github.com/dkedar7"
|
|
17
|
+
|
|
18
|
+
[tool.hatch.build.targets.wheel]
|
|
19
|
+
packages = ["langstage"]
|