pyeve 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.
pyeve-0.0.1/.gitignore ADDED
@@ -0,0 +1,60 @@
1
+ # Node and JS/TS builds
2
+ node_modules/
3
+ dist/
4
+ /build/
5
+ coverage/
6
+ .turbo/
7
+ .next/
8
+ .vercel/
9
+ .swc/
10
+ *.tsbuildinfo
11
+
12
+ # Dependency/tooling caches
13
+ .pnpm-store/
14
+ .bun/
15
+ .npm/
16
+
17
+ # Test artifacts
18
+ .vitest/
19
+ packages/eve/.workflow-vitest/
20
+ packages/eve/.generated/
21
+ playwright-report/
22
+ test-results/
23
+
24
+ # Package lifecycle artifacts (copied from the repo root at prepack)
25
+ packages/eve/docs/
26
+ packages/eve/LICENSE
27
+ packages/eve/NOTICE
28
+
29
+ # Logs
30
+ *.log
31
+ npm-debug.log*
32
+ yarn-debug.log*
33
+ yarn-error.log*
34
+ bun-error.log*
35
+
36
+ # Environment files
37
+ .env
38
+ .env.*
39
+
40
+ # OS files
41
+ *.tgz
42
+ .DS_Store
43
+ Thumbs.db
44
+
45
+ # IDE/editor
46
+ .vscode/
47
+ .idea/
48
+
49
+ # Vercel/Temp build output
50
+ .output/
51
+ .eve/
52
+ .workflow-data/
53
+
54
+ # Geist
55
+ .source
56
+
57
+ # Vercel
58
+ .vercel
59
+ .env*.local
60
+ .env*
pyeve-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,57 @@
1
+ Metadata-Version: 2.4
2
+ Name: pyeve
3
+ Version: 0.0.1
4
+ Summary: Filesystem-first framework for durable backend AI agents in Python
5
+ Project-URL: Homepage, https://github.com/vercel/eve
6
+ Project-URL: Documentation, https://beta.eve.dev/docs
7
+ Project-URL: Repository, https://github.com/vercel/eve
8
+ License: Apache-2.0
9
+ Keywords: agents,ai,durable,framework,llm
10
+ Classifier: Development Status :: 2 - Pre-Alpha
11
+ Classifier: Intended Audience :: Developers
12
+ Classifier: License :: OSI Approved :: Apache Software License
13
+ Classifier: Programming Language :: Python :: 3
14
+ Classifier: Programming Language :: Python :: 3.11
15
+ Classifier: Programming Language :: Python :: 3.12
16
+ Classifier: Programming Language :: Python :: 3.13
17
+ Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
18
+ Requires-Python: >=3.11
19
+ Description-Content-Type: text/markdown
20
+
21
+ # pyeve
22
+
23
+ Filesystem-first framework for durable backend AI agents in Python.
24
+
25
+ > **Coming soon.** This package is under active development.
26
+ > See the [TypeScript version](https://beta.eve.dev) for the stable release.
27
+
28
+ ## What it will do
29
+
30
+ Drop an `agent/` directory, run `pyeve dev`. Your agent is live.
31
+
32
+ ```
33
+ my-agent/
34
+ └── agent/
35
+ ├── agent.py # model + runtime config
36
+ ├── instructions.md # always-on system prompt
37
+ └── tools/
38
+ └── get_weather.py
39
+ ```
40
+
41
+ Tools are plain async functions — no boilerplate:
42
+
43
+ ```python
44
+ # agent/tools/get_weather.py
45
+ async def execute(city: str) -> dict:
46
+ """Return current weather for a city."""
47
+ return {"city": city, "condition": "Sunny", "temp_f": 72}
48
+ ```
49
+
50
+ - Works with FastAPI, Django, Flask, or standalone
51
+ - Durable sessions out of the box
52
+ - Provider-agnostic: Anthropic, OpenAI, SAP AI Core, LiteLLM
53
+
54
+ ## Stay tuned
55
+
56
+ - GitHub: https://github.com/vercel/eve
57
+ - Docs: https://beta.eve.dev
pyeve-0.0.1/README.md ADDED
@@ -0,0 +1,37 @@
1
+ # pyeve
2
+
3
+ Filesystem-first framework for durable backend AI agents in Python.
4
+
5
+ > **Coming soon.** This package is under active development.
6
+ > See the [TypeScript version](https://beta.eve.dev) for the stable release.
7
+
8
+ ## What it will do
9
+
10
+ Drop an `agent/` directory, run `pyeve dev`. Your agent is live.
11
+
12
+ ```
13
+ my-agent/
14
+ └── agent/
15
+ ├── agent.py # model + runtime config
16
+ ├── instructions.md # always-on system prompt
17
+ └── tools/
18
+ └── get_weather.py
19
+ ```
20
+
21
+ Tools are plain async functions — no boilerplate:
22
+
23
+ ```python
24
+ # agent/tools/get_weather.py
25
+ async def execute(city: str) -> dict:
26
+ """Return current weather for a city."""
27
+ return {"city": city, "condition": "Sunny", "temp_f": 72}
28
+ ```
29
+
30
+ - Works with FastAPI, Django, Flask, or standalone
31
+ - Durable sessions out of the box
32
+ - Provider-agnostic: Anthropic, OpenAI, SAP AI Core, LiteLLM
33
+
34
+ ## Stay tuned
35
+
36
+ - GitHub: https://github.com/vercel/eve
37
+ - Docs: https://beta.eve.dev
@@ -0,0 +1,33 @@
1
+ [project]
2
+ name = "pyeve"
3
+ version = "0.0.1"
4
+ description = "Filesystem-first framework for durable backend AI agents in Python"
5
+ readme = "README.md"
6
+ license = { text = "Apache-2.0" }
7
+ requires-python = ">=3.11"
8
+ keywords = ["ai", "agents", "llm", "framework", "durable"]
9
+ classifiers = [
10
+ "Development Status :: 2 - Pre-Alpha",
11
+ "Intended Audience :: Developers",
12
+ "License :: OSI Approved :: Apache Software License",
13
+ "Programming Language :: Python :: 3",
14
+ "Programming Language :: Python :: 3.11",
15
+ "Programming Language :: Python :: 3.12",
16
+ "Programming Language :: Python :: 3.13",
17
+ "Topic :: Software Development :: Libraries :: Application Frameworks",
18
+ ]
19
+
20
+ [project.urls]
21
+ Homepage = "https://github.com/vercel/eve"
22
+ Documentation = "https://beta.eve.dev/docs"
23
+ Repository = "https://github.com/vercel/eve"
24
+
25
+ [project.scripts]
26
+ pyeve = "pyeve.cli:main"
27
+
28
+ [build-system]
29
+ requires = ["hatchling"]
30
+ build-backend = "hatchling.build"
31
+
32
+ [tool.hatch.build.targets.wheel]
33
+ packages = ["src/pyeve"]
@@ -0,0 +1,11 @@
1
+ """
2
+ pyeve — filesystem-first framework for durable backend AI agents in Python.
3
+
4
+ Drop an agent/ directory, run `pyeve dev`. That's it.
5
+
6
+ pip install pyeve
7
+
8
+ Coming soon. See https://beta.eve.dev for the TypeScript version.
9
+ """
10
+
11
+ __version__ = "0.0.1"
@@ -0,0 +1,2 @@
1
+ def main() -> None:
2
+ print("pyeve is coming soon. See https://beta.eve.dev for the TypeScript version.")