fix: add llm adapter to build request method (#4493)

This commit is contained in:
cthomas
2025-09-08 23:38:59 -07:00
committed by GitHub
parent f41f561a38
commit 517e25ea2a

View File

@@ -137,6 +137,7 @@ class LettaAgentV2(BaseAgentV2):
)
response = self._step(
messages=in_context_messages + input_messages_to_persist,
llm_adapter=LettaLLMRequestAdapter(llm_client=self.llm_client, llm_config=self.agent_state.llm_config),
dry_run=True,
)
async for chunk in response: