mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-12-03 09:53:45 +00:00
# What does this PR do? These were maybe be included in the webmethod? The unit test was pointless too since the request was never used anywhere? This shouldn't be in the API definition, if we never consume it. ## Test Plan CI with pre-commit on OpenAPI spec generation. Signed-off-by: Sébastien Han <seb@redhat.com>
27 lines
671 B
Python
27 lines
671 B
Python
# Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
# All rights reserved.
|
|
#
|
|
# This source code is licensed under the terms described in the LICENSE file in
|
|
# the root directory of this source tree.
|
|
|
|
from .conversations import (
|
|
Conversation,
|
|
ConversationDeletedResource,
|
|
ConversationItem,
|
|
ConversationItemCreateRequest,
|
|
ConversationItemDeletedResource,
|
|
ConversationItemList,
|
|
Conversations,
|
|
Metadata,
|
|
)
|
|
|
|
__all__ = [
|
|
"Conversation",
|
|
"ConversationDeletedResource",
|
|
"ConversationItem",
|
|
"ConversationItemCreateRequest",
|
|
"ConversationItemDeletedResource",
|
|
"ConversationItemList",
|
|
"Conversations",
|
|
"Metadata",
|
|
]
|