forked from WecoAI/aideml
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
21 changed files
with
1,061 additions
and
67 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
name: Bug | ||
description: Report a problem with AIDE | ||
title: '[Bug]: ' | ||
labels: ['bug'] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: Thank you for taking the time to fill out this bug report. Please provide as much information as possible to help us understand and address the issue effectively. | ||
|
||
- type: checkboxes | ||
attributes: | ||
label: Is there an existing issue for the same bug? | ||
description: Please check if an issue already exists for the bug you encountered. | ||
options: | ||
- label: I have checked the existing issues. | ||
required: true | ||
|
||
- type: textarea | ||
id: bug-description | ||
attributes: | ||
label: Describe the bug and reproduction steps | ||
description: Provide a description of the issue along with any reproduction steps. | ||
validations: | ||
required: true | ||
|
||
- type: dropdown | ||
id: installation | ||
attributes: | ||
label: AIDE Installation | ||
description: How are you running AIDE? | ||
options: | ||
- Commandline | ||
- Docker | ||
- Python Script | ||
- Other | ||
default: 0 | ||
|
||
- type: input | ||
id: aideml-version | ||
attributes: | ||
label: AIDE Version | ||
description: What version of AIDE are you using? | ||
placeholder: ex. 0.1.4, main, etc. | ||
|
||
- type: dropdown | ||
id: os | ||
attributes: | ||
label: Operating System | ||
options: | ||
- MacOS | ||
- Linux | ||
- WSL on Windows | ||
|
||
- type: textarea | ||
id: additional-context | ||
attributes: | ||
label: Logs, Errors, Screenshots, and Additional Context | ||
description: Please provide any additional information you think might help. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
--- | ||
name: Feature Request | ||
about: Suggest an idea for OpenHands features | ||
title: '' | ||
labels: 'enhancement' | ||
assignees: '' | ||
|
||
--- | ||
|
||
**What problem or use case are you trying to solve?** | ||
|
||
**Describe the UX of the solution you'd like** | ||
|
||
**Do you have thoughts on the technical implementation?** | ||
|
||
**Describe alternatives you've considered** | ||
|
||
**Additional context** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
--- | ||
name: Technical Proposal | ||
about: Propose a new architecture or technology | ||
title: '' | ||
labels: 'proposal' | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Summary** | ||
|
||
**Motivation** | ||
|
||
**Technical Design** | ||
|
||
**Alternatives to Consider** | ||
|
||
**Additional context** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
## Description | ||
|
||
* a simple description of what you're trying to accomplish | ||
* a summary of changes in code | ||
* which issues it fixes, if any | ||
|
||
## Screenshots/videos: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: Linter | ||
|
||
on: | ||
- push | ||
- pull_request | ||
|
||
jobs: | ||
lint-python: | ||
name: Python Linting | ||
runs-on: ubuntu-latest | ||
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name | ||
steps: | ||
- name: Checkout Code | ||
uses: actions/checkout@v4 | ||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: 3.11 | ||
- name: Install Dependencies | ||
run: | | ||
pip install ruff==0.7.1 | ||
pip install black==24.3.0 | ||
- name: Run Ruff | ||
run: ruff check --output-format=github aide/ | ||
- name: Run Black | ||
run: black --check --diff aide/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -165,3 +165,6 @@ logs | |
|
||
.DS_STORE | ||
.trunk | ||
|
||
.gradio/ | ||
.ruff_cache/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
[theme] | ||
# Primary colors | ||
primaryColor="#0D0F18" # --wecopink: 343 98% 63% | ||
backgroundColor="#F0EFE9" # --background: 49 10% 94% | ||
secondaryBackgroundColor="#FFFFFF" # --card: 60 33.3% 98% | ||
textColor="#0A0A0A" # --primary: 0 0% 17% | ||
|
||
# Font | ||
font="sans serif" | ||
|
||
[ui] | ||
hideTopBar = true | ||
|
||
[client] | ||
toolbarMode = "minimal" | ||
showErrorDetails = true | ||
showSidebarNavigation = false |
Oops, something went wrong.