mirror of
https://github.com/katanemo/plano.git
synced 2026-06-11 15:05:14 +02:00
black formatting
This commit is contained in:
parent
25fec35f39
commit
ecacf869e5
2 changed files with 2 additions and 8 deletions
|
|
@ -16,7 +16,6 @@ from __future__ import annotations
|
|||
import os
|
||||
from dataclasses import dataclass
|
||||
|
||||
|
||||
DEFAULT_LLM_LISTENER_PORT = 12000
|
||||
# plano_config validation requires an http:// scheme on the OTLP endpoint.
|
||||
DEFAULT_OTLP_ENDPOINT = "http://localhost:4317"
|
||||
|
|
@ -94,13 +93,9 @@ class DetectionResult:
|
|||
def summary(self) -> str:
|
||||
parts = []
|
||||
if self.with_keys:
|
||||
parts.append(
|
||||
"env-keyed: " + ", ".join(p.name for p in self.with_keys)
|
||||
)
|
||||
parts.append("env-keyed: " + ", ".join(p.name for p in self.with_keys))
|
||||
if self.passthrough:
|
||||
parts.append(
|
||||
"pass-through: " + ", ".join(p.name for p in self.passthrough)
|
||||
)
|
||||
parts.append("pass-through: " + ", ".join(p.name for p in self.passthrough))
|
||||
return " | ".join(parts) if parts else "no providers"
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -9,7 +9,6 @@ from planoai.defaults import (
|
|||
synthesize_default_config,
|
||||
)
|
||||
|
||||
|
||||
_SCHEMA_PATH = Path(__file__).parents[2] / "config" / "plano_config_schema.yaml"
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue