12 lines
268 B
Python
12 lines
268 B
Python
# SPDX-License-Identifier: Apache-2.0
|
|
"""
|
|
Adapters for different model formats.
|
|
|
|
This module provides adapters for parsing different model output formats
|
|
such as Harmony (gpt-oss).
|
|
"""
|
|
|
|
from .harmony import HarmonyStreamingParser
|
|
|
|
__all__ = ["HarmonyStreamingParser"]
|