fix commas in justfile helm secret setting and bug with missing metadata (#8874)
This commit is contained in:
committed by
Sarah Wooders
parent
a92e868ee6
commit
b0dfdd2725
@@ -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",
|
||||
|
||||
@@ -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",
|
||||
|
||||
@@ -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",
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user