stemedb/.gitignore
jordan c59066949a feat: Add quickstart "Beyond Hello World" sections with Skeptic and Layered endpoints
- Add Layered() method to Go SDK for per-source-class consensus queries
- Add LayeredQueryParams, LayeredResult, TierResolution types to Go SDK
- Create conflict example demonstrating Skeptic and Layered endpoints
- Update quickstart.md with sections 6 (conflict detection) and 7 (authority tiers)
- Remove tracked Go binary and add data/ to .gitignore

The new quickstart sections demonstrate Episteme's differentiating features:
- Skeptic endpoint shows "Trust but Verify" conflict analysis
- Layered endpoint shows per-tier resolution (Clinical vs Anecdotal)

Note: Pre-existing large files flagged by pre-commit hook (technical debt from prior sessions)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-01 21:00:59 -07:00

53 lines
485 B
Plaintext

# Rust
/target/
**/*.rs.bk
Cargo.lock
# IDE
.idea/
.vscode/
*.swp
*.swo
*~
# OS
.DS_Store
Thumbs.db
# Environment
.env
.env.local
*.pem
*.key
# Test/Coverage
*.profraw
*.profdata
/coverage/
/tarpaulin-report.html
# Build artifacts
*.o
*.a
*.so
*.dylib
# Code quality reports
.jscpd-report/
# Dependencies
node_modules/
vendor/
__pycache__/
# Temp
tmp/
# Runtime data
data/
# Go binaries (examples)
sdk/go/examples/*/basic
sdk/go/examples/*/conflict
sdk/go/examples/*/skeptic