| 88 | ) |
| 89 | |
| 90 | class MyContext(BaseModel): |
| 91 | something: str | None = None |
| 92 | # the default is "codex_thread_id"; missing this works as well |
| 93 | codex_thread_id_engineer: str | None = None # aligns with run_context_thread_id_key |
| 94 | |
| 95 | context = MyContext() |
| 96 |