Skip to content

Tags: lerim-dev/lerim-cli

Tags

v0.1.82

Toggle v0.1.82's commit message
Release v0.1.82

v0.1.72

Toggle v0.1.72's commit message
chore(release): prepare v0.1.72

v0.1.71

Toggle v0.1.71's commit message
Release v0.1.71

v0.1.70

Toggle v0.1.70's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Merge pull request #19 from lerim-dev/feat/autoresearch-optimization

feat: v0.1.70 — AutoResearch optimization + eval infrastructure

v0.1.68

Toggle v0.1.68's commit message
Release v0.1.68

v0.1.67

Toggle v0.1.67's commit message
chore: bump version to 0.1.67

v0.1.66

Toggle v0.1.66's commit message
feat: add parallelism support for extraction windows, async explore, …

…and adaptive prompts

Three config knobs control concurrent execution:
- max_workers (extract): parallel window processing via ThreadPoolExecutor
- max_explorers (explorer): concurrent async explorer subagent calls
- parallel_pipelines (server): extract + summarize in same tool turn

Explorer tool changed from sync run_sync() to async await agent.run()
for true concurrent dispatch via PydanticAI asyncio.create_task.

Prompts adapt automatically: parallel text when knobs > 1, sequential
when = 1. Set all to 1/false for local models (Ollama/MLX).

Removed unused max_workers from [roles.summarize] — refine/fold is
inherently sequential.