friday-framework-runtime 0.1.0a0__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.
- friday_framework_runtime-0.1.0a0/.gitignore +24 -0
- friday_framework_runtime-0.1.0a0/PKG-INFO +45 -0
- friday_framework_runtime-0.1.0a0/README.md +22 -0
- friday_framework_runtime-0.1.0a0/pyproject.toml +49 -0
- friday_framework_runtime-0.1.0a0/src/friday_runtime/__init__.py +15 -0
- friday_framework_runtime-0.1.0a0/src/friday_runtime/config.py +1681 -0
- friday_framework_runtime-0.1.0a0/src/friday_runtime/di.py +342 -0
- friday_framework_runtime-0.1.0a0/src/friday_runtime/kernel.py +673 -0
- friday_framework_runtime-0.1.0a0/src/friday_runtime/tool_loading.py +177 -0
- friday_framework_runtime-0.1.0a0/tests_runtime/__init__.py +0 -0
- friday_framework_runtime-0.1.0a0/tests_runtime/test_config.py +489 -0
- friday_framework_runtime-0.1.0a0/tests_runtime/test_di.py +275 -0
- friday_framework_runtime-0.1.0a0/tests_runtime/test_kernel.py +464 -0
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
__pycache__/
|
|
2
|
+
*.pyc
|
|
3
|
+
.env
|
|
4
|
+
.venv/
|
|
5
|
+
.idea/
|
|
6
|
+
.vscode/
|
|
7
|
+
dist/
|
|
8
|
+
build/
|
|
9
|
+
*.egg-info/
|
|
10
|
+
chroma_db/
|
|
11
|
+
.friday/
|
|
12
|
+
/vector/
|
|
13
|
+
/exports/
|
|
14
|
+
tests/integration/memory/vector/*/
|
|
15
|
+
tests/integration/memory/vector/backups/*/
|
|
16
|
+
tests/integration/memory/vector/reorganization_logs/*
|
|
17
|
+
*.gpickle
|
|
18
|
+
keys.txt
|
|
19
|
+
experiments/*/config/runtime.local.yaml
|
|
20
|
+
experiments/*/artifacts/*
|
|
21
|
+
!experiments/*/artifacts/.gitkeep
|
|
22
|
+
scripts/source-friday-chat-example-env.sh
|
|
23
|
+
scripts/pypi.sh
|
|
24
|
+
/docs/reference/PyPI-Recovery-Codes-cichuck-2026-07-20T15_36_49.709334.txt
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: friday-framework-runtime
|
|
3
|
+
Version: 0.1.0a0
|
|
4
|
+
Summary: Headless runtime kernel for the Friday Agent Framework
|
|
5
|
+
Project-URL: Homepage, https://github.com/CIChuck/agent-framework
|
|
6
|
+
Project-URL: Repository, https://github.com/CIChuck/agent-framework
|
|
7
|
+
Project-URL: Issues, https://github.com/CIChuck/agent-framework/issues
|
|
8
|
+
Project-URL: Documentation, https://github.com/CIChuck/agent-framework/tree/main/docs
|
|
9
|
+
Project-URL: Source, https://github.com/CIChuck/agent-framework/tree/main/packages/friday-runtime
|
|
10
|
+
Author: Friday Team
|
|
11
|
+
License-Expression: MIT
|
|
12
|
+
Requires-Python: >=3.10
|
|
13
|
+
Requires-Dist: friday-framework-agent==0.1.0a0
|
|
14
|
+
Requires-Dist: friday-framework-core==0.1.0a0
|
|
15
|
+
Requires-Dist: friday-framework-llm==0.1.0a0
|
|
16
|
+
Requires-Dist: friday-framework-memory==0.1.0a0
|
|
17
|
+
Requires-Dist: friday-framework-telemetry==0.1.0a0
|
|
18
|
+
Requires-Dist: friday-framework-transcript==0.1.0a0
|
|
19
|
+
Provides-Extra: dev
|
|
20
|
+
Requires-Dist: pytest-asyncio>=0.23.0; extra == 'dev'
|
|
21
|
+
Requires-Dist: pytest>=8.0.0; extra == 'dev'
|
|
22
|
+
Description-Content-Type: text/markdown
|
|
23
|
+
|
|
24
|
+
# Friday Framework Runtime
|
|
25
|
+
|
|
26
|
+
Headless runtime assembly package for the Friday Framework.
|
|
27
|
+
|
|
28
|
+
This package provides the runtime kernel and dependency-injection surface used
|
|
29
|
+
to compose memory, LLM, telemetry, transcript, agent, and tool services.
|
|
30
|
+
|
|
31
|
+
## Install
|
|
32
|
+
|
|
33
|
+
```bash
|
|
34
|
+
pip install friday-framework-runtime
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
## Import Package
|
|
38
|
+
|
|
39
|
+
```python
|
|
40
|
+
import friday_runtime
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
## License
|
|
44
|
+
|
|
45
|
+
MIT
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# Friday Framework Runtime
|
|
2
|
+
|
|
3
|
+
Headless runtime assembly package for the Friday Framework.
|
|
4
|
+
|
|
5
|
+
This package provides the runtime kernel and dependency-injection surface used
|
|
6
|
+
to compose memory, LLM, telemetry, transcript, agent, and tool services.
|
|
7
|
+
|
|
8
|
+
## Install
|
|
9
|
+
|
|
10
|
+
```bash
|
|
11
|
+
pip install friday-framework-runtime
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
## Import Package
|
|
15
|
+
|
|
16
|
+
```python
|
|
17
|
+
import friday_runtime
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
## License
|
|
21
|
+
|
|
22
|
+
MIT
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "friday-framework-runtime"
|
|
3
|
+
version = "0.1.0a0"
|
|
4
|
+
description = "Headless runtime kernel for the Friday Agent Framework"
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
requires-python = ">=3.10"
|
|
7
|
+
license = "MIT"
|
|
8
|
+
authors = [{ name = "Friday Team" }]
|
|
9
|
+
dependencies = [
|
|
10
|
+
"friday-framework-core==0.1.0a0",
|
|
11
|
+
"friday-framework-memory==0.1.0a0",
|
|
12
|
+
"friday-framework-llm==0.1.0a0",
|
|
13
|
+
"friday-framework-telemetry==0.1.0a0",
|
|
14
|
+
"friday-framework-agent==0.1.0a0",
|
|
15
|
+
"friday-framework-transcript==0.1.0a0",
|
|
16
|
+
]
|
|
17
|
+
|
|
18
|
+
[project.urls]
|
|
19
|
+
Homepage = "https://github.com/CIChuck/agent-framework"
|
|
20
|
+
Repository = "https://github.com/CIChuck/agent-framework"
|
|
21
|
+
Issues = "https://github.com/CIChuck/agent-framework/issues"
|
|
22
|
+
Documentation = "https://github.com/CIChuck/agent-framework/tree/main/docs"
|
|
23
|
+
Source = "https://github.com/CIChuck/agent-framework/tree/main/packages/friday-runtime"
|
|
24
|
+
|
|
25
|
+
[project.optional-dependencies]
|
|
26
|
+
dev = [
|
|
27
|
+
"pytest>=8.0.0",
|
|
28
|
+
"pytest-asyncio>=0.23.0",
|
|
29
|
+
]
|
|
30
|
+
|
|
31
|
+
[build-system]
|
|
32
|
+
requires = ["hatchling"]
|
|
33
|
+
build-backend = "hatchling.build"
|
|
34
|
+
|
|
35
|
+
[tool.hatch.build.targets.wheel]
|
|
36
|
+
packages = ["src/friday_runtime"]
|
|
37
|
+
|
|
38
|
+
[tool.pytest.ini_options]
|
|
39
|
+
testpaths = ["tests_runtime"]
|
|
40
|
+
asyncio_mode = "auto"
|
|
41
|
+
asyncio_default_fixture_loop_scope = "function"
|
|
42
|
+
|
|
43
|
+
[tool.uv.sources]
|
|
44
|
+
friday-framework-core = { workspace = true }
|
|
45
|
+
friday-framework-memory = { workspace = true }
|
|
46
|
+
friday-framework-llm = { workspace = true }
|
|
47
|
+
friday-framework-telemetry = { workspace = true }
|
|
48
|
+
friday-framework-agent = { workspace = true }
|
|
49
|
+
friday-framework-transcript = { workspace = true }
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Friday Runtime — Headless runtime kernel for the Friday Agent Framework.
|
|
3
|
+
|
|
4
|
+
Provides the RuntimeKernel, the central orchestration layer that manages
|
|
5
|
+
dependency injection, service lifecycle, and agent execution without
|
|
6
|
+
requiring the CLI presentation layer.
|
|
7
|
+
"""
|
|
8
|
+
|
|
9
|
+
from friday_runtime.config import RuntimeConfig
|
|
10
|
+
from friday_runtime.kernel import RuntimeKernel
|
|
11
|
+
|
|
12
|
+
__all__ = [
|
|
13
|
+
"RuntimeConfig",
|
|
14
|
+
"RuntimeKernel",
|
|
15
|
+
]
|