Spaces:
Sleeping
Sleeping
| """ | |
| observability/ | |
| -------------- | |
| Tracing and experiment tracking for AutoDevAgent. | |
| Observability is side-effect only — nothing in the main pipeline | |
| depends on this package. It listens and logs without affecting | |
| pipeline behaviour. All failures are non-fatal. | |
| Modules: | |
| langsmith_tracer — LangSmith trace setup, run metadata, token extraction | |
| wandb_tracker — W&B experiment logging, benchmark tables, session stats | |
| """ | |
| from observability.langsmith_tracer import ( | |
| is_tracing_active, | |
| get_run_metadata, | |
| TracedPipelineRun, | |
| extract_token_usage_from_response, | |
| RunMetadata, | |
| ) | |
| from observability.wandb_tracker import WandbTracker | |
| __all__ = [ | |
| "is_tracing_active", | |
| "get_run_metadata", | |
| "TracedPipelineRun", | |
| "extract_token_usage_from_response", | |
| "RunMetadata", | |
| "WandbTracker", | |
| ] | |