Skip to content
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
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ update-testing-docs: docs update-testing-docs-repomix update-testing-docs-proces
@echo "-------- Testing documentation update complete --------"

ci-install-ai-deps: FORCE
uv pip install -e ".[dev,test,testgen]"
uv pip install -e ".[dev,test,add-test]"
$(MAKE) install-playwright

run-test-ai-evaluation: FORCE ## Run the AI evaluation script for tests
Expand Down
5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -124,12 +124,15 @@ doc = [
"quartodoc>=0.8.1",
"griffe>=1.3.2",
]
testgen = [
add-test = [
"chatlas[anthropic,openai]",
"openai>=1.104.1",
"anthropic>=0.62.0",
"inspect-ai>=0.3.129",
"pytest-timeout",
"pytest>=6.2.4",
"pytest-playwright>=0.5.2",
"playwright>=1.48.0",
]


Expand Down
2 changes: 1 addition & 1 deletion shiny/pytest/_generate/_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class Config:
}

DEFAULT_ANTHROPIC_MODEL = "claude-sonnet-4-20250514"
DEFAULT_OPENAI_MODEL = "gpt-5-mini-2025-08-07"
DEFAULT_OPENAI_MODEL = "gpt-5-2025-08-07"
DEFAULT_PROVIDER = "anthropic"

MAX_TOKENS = 8092
Expand Down
Loading