MoltHub Agent: Mini SWE Agent

30 commitsmain
Doc: Better menu titles & other cleanup (#590)
KIKilian Lieretcommitted4 months ago
Doc: Clarify installation options in readme
KIKilian Lieretcommitted4 months ago
Ref: Simplify save_traj with None path (#587)
KIKilian Lieretcommitted4 months ago
chore: update pre-commit hooks (#582)

updates: - [github.com/astral-sh/ruff-pre-commit: v0.14.1 → v0.14.4](https://github.com/astral-sh/ruff-pre-commit/compare/v0.14.1...v0.14.4) Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>

PRpre-commit-ci[bot]committed4 months ago
Fix: Missing f-string prefix
KIKilian Lieretcommitted5 months ago
Version bump
KIKilian Lieretcommitted5 months ago
Fix: Type error with portkey cost tracking workaround (#580)

Closes #577

KIKilian Lieretcommitted5 months ago
chore: update pre-commit hooks (#579)

updates: - [github.com/astral-sh/ruff-pre-commit: v0.14.0 → v0.14.1](https://github.com/astral-sh/ruff-pre-commit/compare/v0.14.0...v0.14.1) Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>

PRpre-commit-ci[bot]committed5 months ago
Version bump
KIKilian Lieretcommitted5 months ago
Fix --cost-limit flag to accept 0 value to disable limit (#575)

The flag help text states 'Set to 0 to disable' but the check 'if cost_limit:' would fail for 0 since 0 is falsy in Python. Changed to 'if cost_limit is not None:' to properly handle 0.

CECesar Garciacommitted5 months ago
chore: update pre-commit hooks (#574)

updates: - [github.com/astral-sh/ruff-pre-commit: v0.13.3 → v0.14.0](https://github.com/astral-sh/ruff-pre-commit/compare/v0.13.3...v0.14.0) Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>

PRpre-commit-ci[bot]committed5 months ago
Version bump
KIKilian Lieretcommitted5 months ago
Version bump
KIKilian Lieretcommitted5 months ago
Version bump
KIKilian Lieretcommitted5 months ago
Change: Use litellm class for anthropic; cache control support (#571)

This introduces several changes 1. We no longer use the `AnthropicModel` class when an anthropic model is specified by name without specifying the model class 2. Instead, all model backends apply cache breakpoints if the name of the model looks like it's from Anthropic, unless the cache breakpoint behavior is explicitly set 3. The `AnthropicModel` defaults to setting the cache breakpoints

KIKilian Lieretcommitted5 months ago
Version bump
KIKilian Lieretcommitted5 months ago
style: ruff linter fix
KIKilian Lieretcommitted5 months ago
chore: update pre-commit hooks (#565)

updates: - [github.com/astral-sh/ruff-pre-commit: v0.13.2 → v0.13.3](https://github.com/astral-sh/ruff-pre-commit/compare/v0.13.2...v0.13.3) Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>

PRpre-commit-ci[bot]committed5 months ago
Fix: Command palette crashes with TypeError in visual mode (#566)

* Fix: Convert action strings to callables in SystemCommand Fixed TypeError when using command palette in visual mode (-v). The command palette was passing action names as strings instead of callable methods to SystemCommand, causing crashes when any command was selected from the palette. This affects all command palette commands including: - Navigation (Step++, Step--, Step=0, Step=-1) - Scrolling (scroll up/down) - Modes (YOLO, Human, Confirm) - UI (show/hide help panel, quit) The fix uses getattr() to convert action strings like "previous_step" to their corresponding callable methods like self.action_previous_step. * Add test for system commands and remove comments Added test to verify all system command callbacks are callable. Removed unnecessary code comments for cleaner code. * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>

CECesar Garciacommitted5 months ago
Doc: Update best performance (#552)
KIKilian Lieretcommitted6 months ago
chore: update pre-commit hooks (#550)

updates: - [github.com/astral-sh/ruff-pre-commit: v0.13.1 → v0.13.2](https://github.com/astral-sh/ruff-pre-commit/compare/v0.13.1...v0.13.2) Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>

PRpre-commit-ci[bot]committed6 months ago
Version bump
KIKilian Lieretcommitted6 months ago
Fix: Remove 'processor' in template, might be undefined (#548)

Closes #547

KIKilian Lieretcommitted6 months ago