Skip to content
Draft
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
48 changes: 0 additions & 48 deletions .github/workflows/claude.yml

This file was deleted.

5 changes: 3 additions & 2 deletions .github/workflows/openhands-claude.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,11 @@ jobs:
call-openhands-claude:
uses: All-Hands-AI/OpenHands/.github/workflows/openhands-resolver.yml@main
with:
EVAL_MAX_CHARS: ${{ fromJson(vars.EVAL_MAX_CHARS || 15000) }}
macro: ${{ vars.OPENHANDS_MACRO || '@openhands-claude' }}
max_iterations: ${{ fromJson(vars.OPENHANDS_MAX_ITER || 50) }}
max_iterations: ${{ fromJson(vars.OPENHANDS_MAX_ITER || 10) }}
base_container_image: ${{ vars.OPENHANDS_BASE_CONTAINER_IMAGE || '' }}
LLM_MODEL: ${{ vars.LLM_MODEL || 'anthropic/claude-sonnet-4-20250514' }}
LLM_MODEL: ${{ vars.LLM_MODEL || 'anthropic/claude-3-opus-20240229' }}
target_branch: ${{ vars.TARGET_BRANCH || 'main' }}
runner: ${{ vars.TARGET_RUNNER }}
secrets:
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/openhands-gemini.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,10 @@ jobs:
uses: All-Hands-AI/OpenHands/.github/workflows/openhands-resolver.yml@main
with:
macro: ${{ vars.OPENHANDS_MACRO || '@openhands-gemini' }}
max_iterations: ${{ fromJson(vars.OPENHANDS_MAX_ITER || 50) }}
EVAL_MAX_CHARS: ${{ fromJson(vars.EVAL_MAX_CHARS || 15000) }}
max_iterations: ${{ fromJson(vars.OPENHANDS_MAX_ITER || 10) }}
base_container_image: ${{ vars.OPENHANDS_BASE_CONTAINER_IMAGE || '' }}
LLM_MODEL: ${{ 'gemini/gemini-2.5-pro' }}
LLM_MODEL: ${{ 'gemini/gemini-1.5-pro-latest' }}
target_branch: ${{ vars.TARGET_BRANCH || 'main' }}
runner: ${{ vars.TARGET_RUNNER }}
secrets:
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/openhands-gpt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,10 @@ jobs:
uses: All-Hands-AI/OpenHands/.github/workflows/openhands-resolver.yml@main
with:
macro: ${{ vars.OPENHANDS_MACRO || '@openhands-gpt' }}
max_iterations: ${{ fromJson(vars.OPENHANDS_MAX_ITER || 50) }}
EVAL_MAX_CHARS: ${{ fromJson(vars.EVAL_MAX_CHARS || 15000) }}
max_iterations: ${{ fromJson(vars.OPENHANDS_MAX_ITER || 10) }}
base_container_image: ${{ vars.OPENHANDS_BASE_CONTAINER_IMAGE || '' }}
LLM_MODEL: ${{ 'gpt-5-2025-08-07' }}
LLM_MODEL: ${{ 'gpt-4o' }}
target_branch: ${{ vars.TARGET_BRANCH || 'main' }}
runner: ${{ vars.TARGET_RUNNER }}
secrets:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ on:
jobs:
test:
name: Python ${{ matrix.python-version }}
runs-on: macos-latest
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.13']
python-version: ['3.12']

# EXPOSE SECRETS AS ENV VARS (job-wide)
env:
Expand Down Expand Up @@ -45,4 +45,4 @@ jobs:
echo "Test panelist prompt {round} {round_name}" > prompts/panelist.txt

- name: Run tests
run: pytest -c pytest.real.ini
run: pytest -c pytest.real.ini
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ sessions/
# Build
build/
dist/
*.egg-info/
*.egg-info/storage
27 changes: 0 additions & 27 deletions Makefile

This file was deleted.

18 changes: 18 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,24 @@ Run the application:
python main.py
```


## Fix an issue using OpenHands Agent

You can also use OpenHands agent to fix an issue for you. To trigger the agent, you can leave a comment in the issue thread, with the following format:

`@<agent-name> fix this issue`

For example, to use `openhands-claude` to fix an issue, you can leave a comment like this:

`@openhands-claude fix this issue`

The available agents are:
- `openhands-claude`
- `openhands-gemini`
- `openhands-gpt`

The GitHub actions for these agents are located in `.github/workflows`.

## Discussion Structure

1. **Round 0 - Agenda Framing**: Moderator introduces the topic
Expand Down
98 changes: 0 additions & 98 deletions llm/anthropic_client.py

This file was deleted.

53 changes: 0 additions & 53 deletions llm/base.py

This file was deleted.

62 changes: 0 additions & 62 deletions llm/google_client.py

This file was deleted.

Empty file removed ui/__init__.py
Empty file.
Loading