File size: 560 Bytes
6762657
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
"""Project-wide constants — single source of truth for version and metadata."""

from __future__ import annotations

VERSION = "0.1.0"
PROJECT_NAME = "commitment-os"
PROJECT_DESCRIPTION = (
    "CommitmentOS: the first RL environment that trains temporal commitment "
    "coherence in LLMs. Agents manage a simulated personal world (calendar, "
    "email, restaurants, contacts) across multi-turn episodes where their own "
    "prior decisions create binding constraints tracked and penalised via a "
    "commitment ledger."
)
AUTHOR = "Jayant Aggarwal"