Upload 2 files
Browse files
memory/session_memory_example.csv
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
field,type,description,scope,example
|
| 2 |
+
session_id,string,Unique identifier for the current compilation session,session,sess_2025_001
|
| 3 |
+
turn_index,integer,Sequential turn counter within the session,session,3
|
| 4 |
+
last_seed,string,Most recent raw user input compiled,session,Need a clean project spec for an AI agent
|
| 5 |
+
last_domain_type,string,Last assigned domain type,session,project_spec
|
| 6 |
+
latent_constraints,json_array,Latent constraints inferred during the session,session,"[""time_sensitive"",""strict_format""]"
|
| 7 |
+
constraints_carryover,json_array,Explicit constraints persisted across turns,session,"[""No hallucinations"",""Ask for missing inputs""]"
|
| 8 |
+
tone_preference,string,User-preferred tone policy for the session,session,neutral_precise
|
memory/session_memory_schema.csv
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
field,type,description,scope,example
|