mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-10-03 19:57:35 +00:00
29 lines
833 B
Python
29 lines
833 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.
|
|
|
|
"""
|
|
Mock server infrastructure for telemetry E2E testing.
|
|
|
|
This module provides:
|
|
- MockServerBase: Pydantic base class for all mock servers
|
|
- MockOTLPCollector: Mock OTLP telemetry collector
|
|
- MockVLLMServer: Mock vLLM inference server
|
|
- Mock server harness for parallel async startup
|
|
"""
|
|
|
|
from .mock_base import MockServerBase
|
|
from .servers import MockOTLPCollector, MockVLLMServer
|
|
from .harness import MockServerConfig, start_mock_servers_async, stop_mock_servers
|
|
|
|
__all__ = [
|
|
"MockServerBase",
|
|
"MockOTLPCollector",
|
|
"MockVLLMServer",
|
|
"MockServerConfig",
|
|
"start_mock_servers_async",
|
|
"stop_mock_servers",
|
|
]
|
|
|