Skip to content
Open
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
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.python-version
__pycache__/
*.csv
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,3 +57,9 @@ python run.py --citation_url "https://my.clevelandclinic.org/health/diseases/854
```bash
python run.py --question "What is the correct dosage for acetaminophen for infants?"
```

### With uv (install here: https://docs.astral.sh/uv/getting-started/installation/)
```bash
uv run run.py --citation_url "https://my.clevelandclinic.org/health/diseases/8541-thyroid-disease"
uv run.py --question "What is the correct dosage for acetaminophen for infants?"
```
12 changes: 12 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[project]
name = "sourcecheckup"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"bs4>=0.0.2",
"openai>=1.86.0",
"pandas>=2.3.0",
"requests>=2.32.4",
]
Loading