Skip to content

Commit 5c21283

Browse files
committed
Avoid recreating most recordings
1 parent ce9f210 commit 5c21283

File tree

1 file changed

+1
-1
lines changed
  • src/llama_stack/providers/inline/agents/meta_reference/responses

1 file changed

+1
-1
lines changed

src/llama_stack/providers/inline/agents/meta_reference/responses/streaming.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ async def create_response(self) -> AsyncIterator[OpenAIResponseObjectStream]:
250250
logger.debug(f"calling openai_chat_completion with tools: {self.ctx.chat_tools}")
251251

252252
logprobs = (
253-
True if self.include and ResponseItemInclude.message_output_text_logprobs in self.include else False
253+
True if self.include and ResponseItemInclude.message_output_text_logprobs in self.include else None
254254
)
255255

256256
params = OpenAIChatCompletionRequestWithExtraBody(

0 commit comments

Comments
 (0)