Skip to content

Commit

Permalink
Merge pull request #11 from OpenAdaptAI/main
Browse files Browse the repository at this point in the history
Merge lates main to analyze/scrub_emr
  • Loading branch information
KrishPatel13 authored Jul 18, 2023
2 parents fcb5abb + 1212198 commit 42b0d19
Show file tree
Hide file tree
Showing 25 changed files with 2,605 additions and 243 deletions.
45 changes: 45 additions & 0 deletions .github/ISSUE_TEMPLATE/use_case.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: Use Case
description: Describe a new use case for OpenAdapt
title: "Use Case: "
labels: usecase
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to add a new use case! Default text extracted from https://github.com/MLDSAI/OpenAdapt/issues/72#issuecomment-1601991759.
- type: input
id: role
attributes:
label: Role
description: Who is this use case about?
placeholder: Travel Agent
validations:
required: true
- type: textarea
id: task
attributes:
label: Task
description: What is this use case about?
placeholder: Book a flight
validations:
required: true
- type: textarea
id: context
attributes:
label: Context
description: What background information is there?
placeholder: There are 4 people traveling to Barcelona, 2 of which require first class tickets
validations:
required: true
- type: textarea
id: workflow
attributes:
label: Workflow
description: How is the task accomplished? Please place each step on a new line.
placeholder: |
1. Open Chrome
2. Navigate to Google Flights
3. Set the departure city
4. ...
validations:
required: true
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
__pycache__
cache
*.egg-info
.venv
*~
.venv

# Vim
*.sw[m-p]
Expand All @@ -19,7 +19,7 @@ cache
.VSCode
.vsCode

#Idea
# Idea
.idea

# Generated performance charts
Expand Down
17 changes: 17 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v2.3.0
hooks:
- id: check-yaml
- id: end-of-file-fixer
- id: trailing-whitespace
- repo: https://github.com/psf/black
rev: 23.7.0
hooks:
- id: black
- repo: https://github.com/pycqa/isort
rev: 5.12.0
hooks:
- id: isort
name: isort (python)
args: ["--profile", "black"]
Loading

0 comments on commit 42b0d19

Please sign in to comment.