<feed xmlns='http://www.w3.org/2005/Atom'>
<title>dissertation.git/src, branch main</title>
<subtitle>Undergraduate dissertation — Deceptive Alignment in Autonomous LLM Agents (UEL, 2026). Sandboxed agentic-LLM deception study: 960 runs, three-tier judging (regex + blackbox + glassbox).</subtitle>
<id>http://git.jayrup.me/c/dissertation.git/atom?h=main</id>
<link rel='self' href='http://git.jayrup.me/c/dissertation.git/atom?h=main'/>
<link rel='alternate' type='text/html' href='http://git.jayrup.me/c/dissertation.git/'/>
<updated>2026-05-08T10:25:28Z</updated>
<entry>
<title>fixed bug or something</title>
<updated>2026-05-08T10:25:28Z</updated>
<author>
<name>CaptainJack2491</name>
<email>jayrupnakawala@gmail.com</email>
</author>
<published>2026-05-08T10:25:28Z</published>
<link rel='alternate' type='text/html' href='http://git.jayrup.me/c/dissertation.git/commit/?id=2b409e90625ecf7c74d4e44b523904a671cb15fa'/>
<id>urn:sha1:2b409e90625ecf7c74d4e44b523904a671cb15fa</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Study 1: 270 runs complete + judge validation pipeline</title>
<updated>2026-04-15T20:18:57Z</updated>
<author>
<name>CaptainJack2491</name>
<email>jayrupnakawala@gmail.com</email>
</author>
<published>2026-04-15T20:18:57Z</published>
<link rel='alternate' type='text/html' href='http://git.jayrup.me/c/dissertation.git/commit/?id=6cc92304379996f68bb2df96a5e4b637b4c4804b'/>
<id>urn:sha1:6cc92304379996f68bb2df96a5e4b637b4c4804b</id>
<content type='text'>
- config_study1.yaml: 3 models × 3 oversight × bare framing × n=30
- Judge validation: 54-run subset, gold=Sonnet 4.6, proxy=Grok 4.1 Fast (BB κ=0.702) + GPT-4.1 (GB κ=0.878)
- Fix OpenAI batch provider: BytesIO, method/url fields, response.body parsing
- Scripts: extract_subset.py, judge_validation.py
- Dissertation chapters updated (intro, methodology, results, conclusion)
</content>
</entry>
<entry>
<title>refactor(judge): simplify to single judge per prong, auto-create sync clients</title>
<updated>2026-04-10T14:23:59Z</updated>
<author>
<name>CaptainJack2491</name>
<email>jayrupnakawala@gmail.com</email>
</author>
<published>2026-04-10T14:23:59Z</published>
<link rel='alternate' type='text/html' href='http://git.jayrup.me/c/dissertation.git/commit/?id=2b3c478dfdf68ccbf853b2a04ea9463d531e1998'/>
<id>urn:sha1:2b3c478dfdf68ccbf853b2a04ea9463d531e1998</id>
<content type='text'>
BREAKING CHANGE: Judge API now uses single blackbox_model/glassbox_model
instead of lists with aggregation.

Changes:
- Judge auto-creates sync clients from model configs (supports anthropic, openai, xai)
- Removed multi-model aggregation support (aggregate_results method removed)
- New: create_sync_clients_for_models() and get_supported_providers()
- Updated judge_runner.py to use new single-judge API
- Added scripts/judge_comparison.py for testing judge model pairs
- Updated v2_redesign notes to reflect implementation status
</content>
</entry>
<entry>
<title>refactor(judge): simplify to single judge per prong, remove multi-model aggregation</title>
<updated>2026-04-10T13:50:40Z</updated>
<author>
<name>CaptainJack2491</name>
<email>jayrupnakawala@gmail.com</email>
</author>
<published>2026-04-10T13:50:40Z</published>
<link rel='alternate' type='text/html' href='http://git.jayrup.me/c/dissertation.git/commit/?id=9155f664a2db0abe841d0d7b9b059ffbe2290c18'/>
<id>urn:sha1:9155f664a2db0abe841d0d7b9b059ffbe2290c18</id>
<content type='text'>
- Remove multi-model aggregation support from Judge class
- Single blackbox judge: claude-sonnet-4-20250514 (anthropic)
- Single glassbox judge: gpt-4.1 (openai)
- Remove aggregate_results method and all aggregation-related code
- Simplify batch collection to single result per run
- Update config_dryrun.yaml with new judge configuration
</content>
</entry>
<entry>
<title>feat: implement robust reasoning token handling and multi-turn persistence</title>
<updated>2026-04-01T15:35:01Z</updated>
<author>
<name>CaptainJack2491</name>
<email>jayrupnakawala@gmail.com</email>
</author>
<published>2026-04-01T15:35:01Z</published>
<link rel='alternate' type='text/html' href='http://git.jayrup.me/c/dissertation.git/commit/?id=fa58564ea288600ad93eaf0a5aa111beca6197bc'/>
<id>urn:sha1:fa58564ea288600ad93eaf0a5aa111beca6197bc</id>
<content type='text'>
- Refactored Agent's chat loop to explicitly preserve and pass back reasoning context (reasoning_details, reasoning) to OpenRouter.
- Ensures frontier models like Gemini 3.1 and DeepSeek v3.2 maintain their 'thinking' chain during complex tool-calling sessions.
- Enhanced reasoning extraction to support structured details, reasoning_content, and fallback tags.
- Verified capture of encrypted and plain-text reasoning blocks in experimental logs.
</content>
</entry>
<entry>
<title>Fix error runs not appearing in final summary</title>
<updated>2026-04-01T14:50:34Z</updated>
<author>
<name>CaptainJack2491</name>
<email>jayrupnakawala@gmail.com</email>
</author>
<published>2026-04-01T14:50:34Z</published>
<link rel='alternate' type='text/html' href='http://git.jayrup.me/c/dissertation.git/commit/?id=289d93c8c99251d5c0b5b34647fa77b8dca63f53'/>
<id>urn:sha1:289d93c8c99251d5c0b5b34647fa77b8dca63f53</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Refactor judge module into judge/ package</title>
<updated>2026-03-26T01:25:01Z</updated>
<author>
<name>CaptainJack2491</name>
<email>jayrupnakawala@gmail.com</email>
</author>
<published>2026-03-26T01:25:01Z</published>
<link rel='alternate' type='text/html' href='http://git.jayrup.me/c/dissertation.git/commit/?id=0bc9fba7ec270a8a1fc043028256eb9d7533d9e4'/>
<id>urn:sha1:0bc9fba7ec270a8a1fc043028256eb9d7533d9e4</id>
<content type='text'>
Split monolithic src/judge.py into a proper package structure:
- src/judge/batch_providers.py: BatchProvider ABC, AnthropicBatchProvider, XAIBatchProvider
- src/judge/judges.py: RegexChecker, BlackboxChecker, GlassboxChecker
- src/judge/helpers.py: extract_* functions, parse_json_verdict
- src/judge/prompts.py: BLACKBOX_PROMPT, GLASSBOX_PROMPT, constants
- src/judge/judge.py: Judge orchestrator class
- src/judge/__init__.py: Re-exports all public APIs
</content>
</entry>
<entry>
<title>Add xAI (Grok) batch API support</title>
<updated>2026-03-26T01:24:29Z</updated>
<author>
<name>CaptainJack2491</name>
<email>jayrupnakawala@gmail.com</email>
</author>
<published>2026-03-26T01:24:29Z</published>
<link rel='alternate' type='text/html' href='http://git.jayrup.me/c/dissertation.git/commit/?id=a463184c91107a7eaaec2167b3883dfcebef8785'/>
<id>urn:sha1:a463184c91107a7eaaec2167b3883dfcebef8785</id>
<content type='text'>
- Add XAIBatchProvider class implementing BatchProvider ABC
- Add --provider CLI argument to judge_runner (anthropic|xai)
- Refactor Judge class to use BatchProvider instead of direct API calls
- Update tests for new Judge constructor signature
</content>
</entry>
<entry>
<title>refactor: extract judge prompts to files and add granular blackbox categories</title>
<updated>2026-03-25T21:50:13Z</updated>
<author>
<name>CaptainJack2491</name>
<email>jayrupnakawala@gmail.com</email>
</author>
<published>2026-03-25T21:50:13Z</published>
<link rel='alternate' type='text/html' href='http://git.jayrup.me/c/dissertation.git/commit/?id=8483f05c79f13176c487f57cc2c589646891be65'/>
<id>urn:sha1:8483f05c79f13176c487f57cc2c589646891be65</id>
<content type='text'>
- Extracted Blackbox and Glassbox prompts from  into their own markdown files in
- Implemented progressive 4-tier Blackbox categories (FABRICATED, OMITTED_CRITICAL, DECEPTIVE_FRAMING, ACCURATE)
- Added neutral examples to the Blackbox prompt to improve formatting consistency
- Updated references and tests to match new judge categorization structure
</content>
</entry>
<entry>
<title>feat: implement rich dashboard for experiment progress</title>
<updated>2026-03-25T19:23:37Z</updated>
<author>
<name>CaptainJack2491</name>
<email>jayrupnakawala@gmail.com</email>
</author>
<published>2026-03-25T19:23:37Z</published>
<link rel='alternate' type='text/html' href='http://git.jayrup.me/c/dissertation.git/commit/?id=c5f4522177cd20c577439fd4f1ba473dd3e0b81e'/>
<id>urn:sha1:c5f4522177cd20c577439fd4f1ba473dd3e0b81e</id>
<content type='text'>
</content>
</entry>
</feed>
