nemo_flow/codec/mod.rs
1// SPDX-FileCopyrightText: Copyright (c) 2026, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
2// SPDX-License-Identifier: Apache-2.0
3
4//! LLM codec types, traits, and built-in implementations.
5//!
6//! This module provides the type system and traits for bidirectional
7//! request codecs ([`traits::LlmCodec`] / [`request::AnnotatedLlmRequest`]) and
8//! the decode-only response codec
9//! ([`traits::LlmResponseCodec`] / [`response::AnnotatedLlmResponse`]).
10
11pub mod anthropic;
12pub mod openai_chat;
13pub mod openai_responses;
14pub mod request;
15pub mod response;
16pub mod traits;