| 38 | |
| 39 | # Define the structure for instrumentor configurations |
| 40 | class InstrumentorConfig(TypedDict): |
| 41 | module_name: str |
| 42 | class_name: str |
| 43 | min_version: str |
| 44 | package_name: NotRequired[str] # Optional: actual pip package name if different from module |
| 45 | |
| 46 | |
| 47 | # Configuration for supported LLM providers |
no outgoing calls
no test coverage detected
searching dependent graphs…