fix commas in justfile helm secret setting and bug with missing metadata (#8874)

This commit is contained in:
Kian Jones
2026-01-16 23:17:50 -08:00
committed by Sarah Wooders
parent a92e868ee6
commit b0dfdd2725
4 changed files with 9 additions and 2 deletions

View File

@@ -123,7 +123,9 @@ class LettaLLMRequestAdapter(LettaLLMAdapter):
provider_trace=ProviderTrace(
request_json=self.request_data,
response_json=self.response_data,
step_id=step_id, # Use original step_id for telemetry
step_id=step_id,
agent_id=self.agent_id,
run_id=self.run_id,
),
),
label="create_provider_trace",

View File

@@ -225,7 +225,9 @@ class LettaLLMStreamAdapter(LettaLLMAdapter):
provider_trace=ProviderTrace(
request_json=self.request_data,
response_json=response_json,
step_id=step_id, # Use original step_id for telemetry
step_id=step_id,
agent_id=self.agent_id,
run_id=self.run_id,
),
),
label="create_provider_trace",

View File

@@ -280,6 +280,8 @@ class SimpleLLMStreamAdapter(LettaLLMStreamAdapter):
request_json=self.request_data,
response_json=response_json,
step_id=step_id,
agent_id=self.agent_id,
run_id=self.run_id,
),
),
label="create_provider_trace",

View File

@@ -171,6 +171,7 @@ class Summarizer:
llm_config=agent_state.llm_config,
actor=self.actor,
include_ack=True,
agent_id=self.agent_id,
)
# TODO add counts back