Skip to content
This repository was archived by the owner on Dec 2, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion openhands_resolver/resolve_issue.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
from openhands.core.config import (
AppConfig,
SandboxConfig,
AgentConfig,
)
from openhands.core.config import LLMConfig
from openhands.runtime.base import Runtime
Expand Down Expand Up @@ -195,6 +196,11 @@ async def process_issue(
# do not mount workspace
workspace_base=workspace_base,
workspace_mount_path=workspace_base,
agents={
"CodeActAgent": AgentConfig(
disabled_microagents=["github"]
)
},
)
config.set_llm_config(llm_config)

Expand All @@ -210,7 +216,7 @@ async def on_event(evt):
# Here's how you can run the agent (similar to the `main` function) and get the final task state
action = MessageAction(
content=instruction,
images_urls=images_urls
image_urls=images_urls
)
try:
state: State | None = await run_controller(
Expand Down
205 changes: 200 additions & 5 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ packages = [

[tool.poetry.dependencies]
python = "^3.12"
openhands-ai = ">=0.12.3,<0.14.0"
openhands-ai = ">=0.13.1,<0.14.0"

pandas = "^2.2.3"
pytest = "^8.3.3"
Expand Down