DranFren commited on
Commit
f85b6a4
·
verified ·
1 Parent(s): 6be12e9

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +40 -0
README.md CHANGED
@@ -39,3 +39,43 @@ You can later connect any open-weight model from `transformers`.
39
  ```bash
40
  pip install -r requirements.txt
41
  python app.py
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
39
  ```bash
40
  pip install -r requirements.txt
41
  python app.py
42
+ Then open the printed Gradio URL in your browser.
43
+
44
+ 📦 File Structure
45
+ app.py → main Gradio interface
46
+ playbook.yaml → seed context / memory
47
+ cem.csv → Claim–Evidence Matrix
48
+ requirements.txt → dependencies
49
+ README.md → this file
50
+
51
+
52
+ All files live in the main directory of your Space (no subfolders needed).
53
+
54
+ 🧭 How It Works
55
+ Phase Description
56
+ Generator Runs the current task using the Playbook and records a reasoning trace.
57
+ Reflector Extracts small, auditable lessons (Δ-items) as YAML deltas.
58
+ Curator Merges deltas deterministically, prunes duplicates, and logs changes.
59
+ CEM Links claims to their supporting or counter-evidence for CPT analysis.
60
+
61
+ This prototype is fully self-contained; it does not call external APIs or models unless you add them.
62
+
63
+ 🪶 License & Attribution
64
+
65
+ © 2025 Daniel Fenge — released under CC BY-NC 4.0
66
+
67
+ This implementation is an independent prototype inspired by:
68
+
69
+ Zhang et al. (2025), Agentic Context Engineering: Evolving Contexts for Self-Improving Language Models,
70
+ Stanford University & SambaNova Systems. arXiv:2510.04618
71
+
72
+ All ACE–CPT integrations, CPT questions (2.11–2.17), and Stillness-First workflow are original extensions.
73
+
74
+ 💡 Notes
75
+
76
+ This Space is designed for research and educational use.
77
+
78
+ Feel free to fork and adapt under the same CC BY-NC terms.
79
+
80
+ To ensure persistence, keep playbook.yaml and cem.csv in your repo.
81
+