friday-framework-optimization 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_optimization-0.1.0a0/.gitignore +24 -0
- friday_framework_optimization-0.1.0a0/PKG-INFO +41 -0
- friday_framework_optimization-0.1.0a0/README.md +22 -0
- friday_framework_optimization-0.1.0a0/pyproject.toml +40 -0
- friday_framework_optimization-0.1.0a0/src/friday_opt/__init__.py +5 -0
- friday_framework_optimization-0.1.0a0/src/friday_opt/compilers/optimize_context.py +4 -0
- friday_framework_optimization-0.1.0a0/src/friday_opt/signatures/query_gen.py +4 -0
- friday_framework_optimization-0.1.0a0/src/friday_opt/signatures/summarization.py +4 -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,41 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: friday-framework-optimization
|
|
3
|
+
Version: 0.1.0a0
|
|
4
|
+
Summary: DSPy optimization playground
|
|
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-optimization
|
|
10
|
+
Author: Friday Team
|
|
11
|
+
License-Expression: MIT
|
|
12
|
+
Requires-Python: >=3.10
|
|
13
|
+
Requires-Dist: dspy-ai>=2.0.0
|
|
14
|
+
Requires-Dist: friday-framework-memory==0.1.0a0
|
|
15
|
+
Provides-Extra: dev
|
|
16
|
+
Requires-Dist: pytest-asyncio>=0.23.0; extra == 'dev'
|
|
17
|
+
Requires-Dist: pytest>=8.0.0; extra == 'dev'
|
|
18
|
+
Description-Content-Type: text/markdown
|
|
19
|
+
|
|
20
|
+
# Friday Framework Optimization
|
|
21
|
+
|
|
22
|
+
Optimization playground package for the Friday Framework.
|
|
23
|
+
|
|
24
|
+
This package contains DSPy-oriented optimization experiments for prompt,
|
|
25
|
+
query-generation, summarization, and context-pipeline evaluation workflows.
|
|
26
|
+
|
|
27
|
+
## Install
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
pip install friday-framework-optimization
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
## Import Package
|
|
34
|
+
|
|
35
|
+
```python
|
|
36
|
+
import friday_opt
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
## License
|
|
40
|
+
|
|
41
|
+
MIT
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# Friday Framework Optimization
|
|
2
|
+
|
|
3
|
+
Optimization playground package for the Friday Framework.
|
|
4
|
+
|
|
5
|
+
This package contains DSPy-oriented optimization experiments for prompt,
|
|
6
|
+
query-generation, summarization, and context-pipeline evaluation workflows.
|
|
7
|
+
|
|
8
|
+
## Install
|
|
9
|
+
|
|
10
|
+
```bash
|
|
11
|
+
pip install friday-framework-optimization
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
## Import Package
|
|
15
|
+
|
|
16
|
+
```python
|
|
17
|
+
import friday_opt
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
## License
|
|
21
|
+
|
|
22
|
+
MIT
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "friday-framework-optimization"
|
|
3
|
+
version = "0.1.0a0"
|
|
4
|
+
description = "DSPy optimization playground"
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
requires-python = ">=3.10"
|
|
7
|
+
license = "MIT"
|
|
8
|
+
authors = [{ name = "Friday Team" }]
|
|
9
|
+
dependencies = [
|
|
10
|
+
"friday-framework-memory==0.1.0a0",
|
|
11
|
+
"dspy-ai>=2.0.0",
|
|
12
|
+
]
|
|
13
|
+
|
|
14
|
+
[project.urls]
|
|
15
|
+
Homepage = "https://github.com/CIChuck/agent-framework"
|
|
16
|
+
Repository = "https://github.com/CIChuck/agent-framework"
|
|
17
|
+
Issues = "https://github.com/CIChuck/agent-framework/issues"
|
|
18
|
+
Documentation = "https://github.com/CIChuck/agent-framework/tree/main/docs"
|
|
19
|
+
Source = "https://github.com/CIChuck/agent-framework/tree/main/packages/friday-optimization"
|
|
20
|
+
|
|
21
|
+
[project.optional-dependencies]
|
|
22
|
+
dev = [
|
|
23
|
+
"pytest>=8.0.0",
|
|
24
|
+
"pytest-asyncio>=0.23.0",
|
|
25
|
+
]
|
|
26
|
+
|
|
27
|
+
[build-system]
|
|
28
|
+
requires = ["hatchling"]
|
|
29
|
+
build-backend = "hatchling.build"
|
|
30
|
+
|
|
31
|
+
[tool.hatch.build.targets.wheel]
|
|
32
|
+
packages = ["src/friday_opt"]
|
|
33
|
+
|
|
34
|
+
[tool.uv.sources]
|
|
35
|
+
friday-framework-memory = { workspace = true }
|
|
36
|
+
|
|
37
|
+
[tool.pytest.ini_options]
|
|
38
|
+
testpaths = ["tests"]
|
|
39
|
+
asyncio_mode = "auto"
|
|
40
|
+
asyncio_default_fixture_loop_scope = "function"
|