dynamo-llm 1.0.2

Dynamo LLM Library
1
2
3
4
5
6
7
8
9
10
11
12
// SPDX-FileCopyrightText: Copyright (c) 2024-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
// SPDX-License-Identifier: Apache-2.0

//! Anthropic Messages API protocol types and conversion logic.
//!
//! This module provides types for the Anthropic Messages API (`/v1/messages`)
//! and conversion logic to/from the internal chat completions representation.

pub mod stream_converter;
pub mod types;

pub use types::*;