- Langfuse SDK v4: fix prompt-to-trace linking (as_type=generation) - tracing: compile_prompt with Langfuse managed prompt fallback - journey: remove journey CLI subcommand (keep only interactive) - LLM: add service-specific llm modules for batch-agent and chat - gitignore: exclude eval private test data - config: add LANGFUSE settings to shared config
41 lines
382 B
Plaintext
41 lines
382 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
|
|
# Virtual environment
|
|
.venv/
|
|
venv/
|
|
env/
|
|
|
|
# Environment variables
|
|
.env
|
|
|
|
# Cryptographic keys
|
|
*.pem
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
|
|
# Testing / coverage
|
|
.pytest_cache/
|
|
htmlcov/
|
|
.coverage
|
|
|
|
# Docker
|
|
*.log
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Claude Code
|
|
.claude/
|
|
logs/
|
|
|
|
# Eval private test data
|
|
services/batch-agent/eval/fixtures/private_data/
|