Skip to content

Commit 91a3ef6

Browse files
consistent naming
1 parent 1804787 commit 91a3ef6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/agentex/lib/core/tracing/processors/sgp_tracing_processor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def __init__(self, config: SGPTracingProcessorConfig):
2424
SGPClient(
2525
api_key=config.sgp_api_key,
2626
account_id=config.sgp_account_id,
27-
base_url=config.base_url,
27+
base_url=config.sgp_base_url,
2828
),
2929
disabled=disabled,
3030
)

src/agentex/lib/types/tracing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class SGPTracingProcessorConfig(BaseModel):
2626
type: Literal["sgp"] = "sgp"
2727
sgp_api_key: str
2828
sgp_account_id: str
29-
base_url: str | None = None
29+
sgp_base_url: str | None = None
3030

3131

3232
TracingProcessorConfig = Annotated[

0 commit comments

Comments
 (0)