8f608048f9
* feat(tools): add Weights & Biases experiment tracking and model monitoring integration
* style: fix ruff formatting in wandb_tool.py
* feat(tools): add Weights & Biases ML experiment tracking integration
* fix(tools): address CodeRabbit review comments on wandb_tool
* fix(tools): rewrite wandb_tool to use official Python SDK instead of undocumented REST endpoints
* fix(tools): address Hundao review — remove .coverage, switch to GraphQL/httpx, fix wandb_host, add README
* fix(tools): wire filters to GraphQL, validate empty metric_keys, fix line lengths
* fix(tools): check credentials before input validation in wandb_get_run_metrics
Move _get_creds() call before run_id/metric_keys checks so the
framework credential test receives the expected {error, help} response
instead of a bare input-validation error.
83 lines
816 B
Plaintext
83 lines
816 B
Plaintext
# Dependencies
|
|
node_modules/
|
|
.pnpm-store/
|
|
|
|
# Build outputs
|
|
dist/
|
|
build/
|
|
workdir/
|
|
.next/
|
|
out/
|
|
|
|
# Environment files
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
.venv
|
|
/venv
|
|
tools/src/uv.lock
|
|
|
|
|
|
# User configuration (copied from .example)
|
|
config.yaml
|
|
docker-compose.override.yml
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/*
|
|
!.vscode/extensions.json
|
|
!.vscode/settings.json.example
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
|
|
# Testing
|
|
coverage/
|
|
.nyc_output/
|
|
.pytest_cache/
|
|
|
|
# TypeScript
|
|
*.tsbuildinfo
|
|
vite.config.d.ts
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.egg-info/
|
|
.eggs/
|
|
*.egg
|
|
|
|
# Generated runtime data
|
|
core/data/
|
|
|
|
# Misc
|
|
*.local
|
|
.cache/
|
|
tmp/
|
|
temp/
|
|
|
|
exports/*
|
|
|
|
.claude/settings.local.json
|
|
|
|
docs/github-issues/*
|
|
core/tests/*dumps/*
|
|
|
|
screenshots/*
|
|
|
|
.gemini/*
|
|
.coverage
|