agent-apprenticeship 0.1.3 → 0.1.5
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.
|
@@ -120,7 +120,7 @@ function runQuiet(command, args, label, timeoutMs) {
|
|
|
120
120
|
console.error(message);
|
|
121
121
|
}
|
|
122
122
|
const out = [result.stdout, result.stderr].filter(Boolean).join("\n").trim();
|
|
123
|
-
if (out) console.error(out.slice(-
|
|
123
|
+
if (out) console.error(out.slice(-8000));
|
|
124
124
|
process.exit(result.status || 1);
|
|
125
125
|
}
|
|
126
126
|
}
|
|
@@ -157,10 +157,10 @@ function ensureRuntime(python) {
|
|
|
157
157
|
runQuiet(python, ["-m", "venv", venvDir], "create the Python environment", 120000);
|
|
158
158
|
runQuiet(py, [
|
|
159
159
|
"-m", "pip", "install",
|
|
160
|
-
"-q",
|
|
161
160
|
"--disable-pip-version-check",
|
|
162
161
|
"--progress-bar", "off",
|
|
163
162
|
"--no-input",
|
|
163
|
+
"--no-build-isolation",
|
|
164
164
|
"--retries", "10",
|
|
165
165
|
"--timeout", "60",
|
|
166
166
|
packageRoot
|
package/package.json
CHANGED
package/pyproject.toml
CHANGED
|
@@ -4,14 +4,14 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "agent-apprenticeship"
|
|
7
|
-
version = "0.1.
|
|
7
|
+
version = "0.1.5"
|
|
8
8
|
description = "Open framework for turning real agent work into transferable agent experience"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.11"
|
|
11
|
-
dependencies = ["pydantic>=2", "typer>=0.12", "openai>=
|
|
11
|
+
dependencies = ["pydantic>=2.7,<3", "typer>=0.12,<1", "openai>=2,<3"]
|
|
12
12
|
|
|
13
13
|
[project.optional-dependencies]
|
|
14
|
-
llm = ["openai>=
|
|
14
|
+
llm = ["openai>=2,<3"]
|
|
15
15
|
test = ["pytest>=8"]
|
|
16
16
|
|
|
17
17
|
[project.scripts]
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
"""Agent Apprenticeship framework."""
|
|
2
|
-
__version__ = "0.1.
|
|
2
|
+
__version__ = "0.1.5"
|
|
@@ -83,8 +83,9 @@ app.add_typer(learn_app, name='learn')
|
|
|
83
83
|
SLACK_LINK='https://join.slack.com/t/fsycommunity/shared_invite/zt-37417grrb-jFD6BQIYgC5wEMrW2bHssw'
|
|
84
84
|
|
|
85
85
|
FIRST_RUN_BANNER = """╭────────────────────────────────────────────╮
|
|
86
|
-
│
|
|
87
|
-
│
|
|
86
|
+
│ │
|
|
87
|
+
│ Agent Apprenticeship │
|
|
88
|
+
│ │
|
|
88
89
|
╰────────────────────────────────────────────╯"""
|
|
89
90
|
|
|
90
91
|
MODEL_KEY_CANDIDATES = {
|