devsper 3.0.0__tar.gz → 3.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.
- devsper-3.0.1/PKG-INFO +70 -0
- devsper-3.0.1/README.md +48 -0
- {devsper-3.0.0 → devsper-3.0.1}/pyproject.toml +2 -1
- devsper-3.0.0/PKG-INFO +0 -20
- {devsper-3.0.0 → devsper-3.0.1}/.gitignore +0 -0
- {devsper-3.0.0 → devsper-3.0.1}/devsper/__init__.py +0 -0
- {devsper-3.0.0 → devsper-3.0.1}/devsper/__main__.py +0 -0
- {devsper-3.0.0 → devsper-3.0.1}/devsper/auth/__init__.py +0 -0
- {devsper-3.0.0 → devsper-3.0.1}/devsper/auth/github.py +0 -0
- {devsper-3.0.0 → devsper-3.0.1}/devsper/cli.py +0 -0
- {devsper-3.0.0 → devsper-3.0.1}/devsper/credentials/__init__.py +0 -0
- {devsper-3.0.0 → devsper-3.0.1}/devsper/credentials/inject.py +0 -0
- {devsper-3.0.0 → devsper-3.0.1}/devsper/credentials/providers.py +0 -0
- {devsper-3.0.0 → devsper-3.0.1}/devsper/credentials/store.py +0 -0
- {devsper-3.0.0 → devsper-3.0.1}/devsper/eval/__init__.py +0 -0
- {devsper-3.0.0 → devsper-3.0.1}/devsper/eval/runner.py +0 -0
- {devsper-3.0.0 → devsper-3.0.1}/devsper/eval/scoring.py +0 -0
- {devsper-3.0.0 → devsper-3.0.1}/devsper/tui/__init__.py +0 -0
- {devsper-3.0.0 → devsper-3.0.1}/devsper/tui/app.py +0 -0
- {devsper-3.0.0 → devsper-3.0.1}/uv.lock +0 -0
devsper-3.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: devsper
|
|
3
|
+
Version: 3.0.1
|
|
4
|
+
Summary: Devsper runtime CLI — self-evolving AI workflow engine
|
|
5
|
+
License: Apache-2.0
|
|
6
|
+
Keywords: AI,agents,runtime,swarm,workflow
|
|
7
|
+
Classifier: Development Status :: 4 - Beta
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: Programming Language :: Rust
|
|
10
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
11
|
+
Requires-Python: >=3.11
|
|
12
|
+
Requires-Dist: click>=8.0
|
|
13
|
+
Requires-Dist: keyring>=24
|
|
14
|
+
Requires-Dist: rich>=13
|
|
15
|
+
Provides-Extra: eval
|
|
16
|
+
Requires-Dist: openai>=1.0; extra == 'eval'
|
|
17
|
+
Requires-Dist: openevals>=0.1; extra == 'eval'
|
|
18
|
+
Requires-Dist: trulens>=1.0; extra == 'eval'
|
|
19
|
+
Provides-Extra: tui
|
|
20
|
+
Requires-Dist: textual>=0.80; extra == 'tui'
|
|
21
|
+
Description-Content-Type: text/markdown
|
|
22
|
+
|
|
23
|
+
# devsper
|
|
24
|
+
|
|
25
|
+
Self-evolving AI workflow engine — run `.devsper` workflows locally or at scale.
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
pip install devsper
|
|
29
|
+
devsper run workflow.devsper --input topic="transformers"
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
## Providers
|
|
33
|
+
|
|
34
|
+
Set any one key and `devsper` picks it up automatically:
|
|
35
|
+
|
|
36
|
+
| Provider | Env var |
|
|
37
|
+
|---|---|
|
|
38
|
+
| Anthropic | `ANTHROPIC_API_KEY` |
|
|
39
|
+
| OpenAI | `OPENAI_API_KEY` |
|
|
40
|
+
| GitHub Models | `GITHUB_TOKEN` |
|
|
41
|
+
| ZAI / GLM | `ZAI_API_KEY` |
|
|
42
|
+
| Azure OpenAI | `AZURE_OPENAI_API_KEY` + `AZURE_OPENAI_ENDPOINT` + `AZURE_OPENAI_DEPLOYMENT` |
|
|
43
|
+
| Azure AI Foundry | `AZURE_FOUNDRY_API_KEY` + `AZURE_FOUNDRY_ENDPOINT` + `AZURE_FOUNDRY_DEPLOYMENT` |
|
|
44
|
+
| LiteLLM proxy | `LITELLM_BASE_URL` |
|
|
45
|
+
| Ollama | `OLLAMA_HOST` (default: `http://localhost:11434`) |
|
|
46
|
+
|
|
47
|
+
Or store credentials in the OS keychain:
|
|
48
|
+
|
|
49
|
+
```bash
|
|
50
|
+
devsper credentials set anthropic
|
|
51
|
+
devsper auth github # device flow, no API key needed
|
|
52
|
+
devsper auth status # show what's configured
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
## Commands
|
|
56
|
+
|
|
57
|
+
```
|
|
58
|
+
devsper run <workflow.devsper> [--input key=value ...]
|
|
59
|
+
devsper compile <workflow.devsper> [--output <file>]
|
|
60
|
+
devsper peer --listen 0.0.0.0:7000 [--join <addr>]
|
|
61
|
+
devsper inspect <run-id>
|
|
62
|
+
devsper tui # interactive UI (pip install 'devsper[tui]')
|
|
63
|
+
devsper eval run # batch eval (pip install 'devsper[eval]')
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
## Links
|
|
67
|
+
|
|
68
|
+
- [Docs](https://docs.devsper.com)
|
|
69
|
+
- [GitHub](https://github.com/devsper-com/runtime)
|
|
70
|
+
- [devsper.com](https://devsper.com)
|
devsper-3.0.1/README.md
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
# devsper
|
|
2
|
+
|
|
3
|
+
Self-evolving AI workflow engine — run `.devsper` workflows locally or at scale.
|
|
4
|
+
|
|
5
|
+
```bash
|
|
6
|
+
pip install devsper
|
|
7
|
+
devsper run workflow.devsper --input topic="transformers"
|
|
8
|
+
```
|
|
9
|
+
|
|
10
|
+
## Providers
|
|
11
|
+
|
|
12
|
+
Set any one key and `devsper` picks it up automatically:
|
|
13
|
+
|
|
14
|
+
| Provider | Env var |
|
|
15
|
+
|---|---|
|
|
16
|
+
| Anthropic | `ANTHROPIC_API_KEY` |
|
|
17
|
+
| OpenAI | `OPENAI_API_KEY` |
|
|
18
|
+
| GitHub Models | `GITHUB_TOKEN` |
|
|
19
|
+
| ZAI / GLM | `ZAI_API_KEY` |
|
|
20
|
+
| Azure OpenAI | `AZURE_OPENAI_API_KEY` + `AZURE_OPENAI_ENDPOINT` + `AZURE_OPENAI_DEPLOYMENT` |
|
|
21
|
+
| Azure AI Foundry | `AZURE_FOUNDRY_API_KEY` + `AZURE_FOUNDRY_ENDPOINT` + `AZURE_FOUNDRY_DEPLOYMENT` |
|
|
22
|
+
| LiteLLM proxy | `LITELLM_BASE_URL` |
|
|
23
|
+
| Ollama | `OLLAMA_HOST` (default: `http://localhost:11434`) |
|
|
24
|
+
|
|
25
|
+
Or store credentials in the OS keychain:
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
devsper credentials set anthropic
|
|
29
|
+
devsper auth github # device flow, no API key needed
|
|
30
|
+
devsper auth status # show what's configured
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
## Commands
|
|
34
|
+
|
|
35
|
+
```
|
|
36
|
+
devsper run <workflow.devsper> [--input key=value ...]
|
|
37
|
+
devsper compile <workflow.devsper> [--output <file>]
|
|
38
|
+
devsper peer --listen 0.0.0.0:7000 [--join <addr>]
|
|
39
|
+
devsper inspect <run-id>
|
|
40
|
+
devsper tui # interactive UI (pip install 'devsper[tui]')
|
|
41
|
+
devsper eval run # batch eval (pip install 'devsper[eval]')
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
## Links
|
|
45
|
+
|
|
46
|
+
- [Docs](https://docs.devsper.com)
|
|
47
|
+
- [GitHub](https://github.com/devsper-com/runtime)
|
|
48
|
+
- [devsper.com](https://devsper.com)
|
|
@@ -4,8 +4,9 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "devsper"
|
|
7
|
-
version = "3.0.
|
|
7
|
+
version = "3.0.1"
|
|
8
8
|
description = "Devsper runtime CLI — self-evolving AI workflow engine"
|
|
9
|
+
readme = "README.md"
|
|
9
10
|
requires-python = ">=3.11"
|
|
10
11
|
license = { text = "Apache-2.0" }
|
|
11
12
|
keywords = ["AI", "agents", "workflow", "runtime", "swarm"]
|
devsper-3.0.0/PKG-INFO
DELETED
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: devsper
|
|
3
|
-
Version: 3.0.0
|
|
4
|
-
Summary: Devsper runtime CLI — self-evolving AI workflow engine
|
|
5
|
-
License: Apache-2.0
|
|
6
|
-
Keywords: AI,agents,runtime,swarm,workflow
|
|
7
|
-
Classifier: Development Status :: 4 - Beta
|
|
8
|
-
Classifier: Programming Language :: Python :: 3
|
|
9
|
-
Classifier: Programming Language :: Rust
|
|
10
|
-
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
11
|
-
Requires-Python: >=3.11
|
|
12
|
-
Requires-Dist: click>=8.0
|
|
13
|
-
Requires-Dist: keyring>=24
|
|
14
|
-
Requires-Dist: rich>=13
|
|
15
|
-
Provides-Extra: eval
|
|
16
|
-
Requires-Dist: openai>=1.0; extra == 'eval'
|
|
17
|
-
Requires-Dist: openevals>=0.1; extra == 'eval'
|
|
18
|
-
Requires-Dist: trulens>=1.0; extra == 'eval'
|
|
19
|
-
Provides-Extra: tui
|
|
20
|
-
Requires-Dist: textual>=0.80; extra == 'tui'
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|