mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-12-12 20:12:33 +00:00
fixes
This commit is contained in:
parent
cc4009603b
commit
55ca8a5c50
6 changed files with 49 additions and 60 deletions
|
|
@ -148,7 +148,6 @@ class ConversationItemCreateRequest(BaseModel):
|
|||
)
|
||||
|
||||
|
||||
@json_schema_type
|
||||
class ConversationItemInclude(StrEnum):
|
||||
"""
|
||||
Specify additional output data to include in the model response.
|
||||
|
|
|
|||
|
|
@ -131,7 +131,7 @@ class OpenAIResponsesImpl:
|
|||
|
||||
tool_context.recover_tools_from_previous_response(previous_response)
|
||||
elif conversation is not None:
|
||||
conversation_items = await self.conversations_api.list(conversation, order="asc")
|
||||
conversation_items = await self.conversations_api.list_items(conversation, order="asc")
|
||||
|
||||
# Use stored messages as source of truth (like previous_response.messages)
|
||||
stored_messages = await self.responses_store.get_conversation_messages(conversation)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue