agent-apprenticeship 0.1.3 → 0.1.4
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.
package/package.json
CHANGED
package/pyproject.toml
CHANGED
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "agent-apprenticeship"
|
|
7
|
-
version = "0.1.
|
|
7
|
+
version = "0.1.4"
|
|
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"
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
"""Agent Apprenticeship framework."""
|
|
2
|
-
__version__ = "0.1.
|
|
2
|
+
__version__ = "0.1.4"
|
|
@@ -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 = {
|