zai-rs 0.5.1

一个 Rust SDK, 用于调用 智谱AI API
Documentation
1
2
3
4
5
6
7
8
9
10
//! Legacy streaming extension traits retained for source compatibility.
//!
//! These marker traits contain no streaming methods and have no implementations
//! in this crate; they are not an operational streaming API.

use crate::model::traits::SseStreamable;

/// Marker trait for types that supported SSE streaming in 0.4.
/// Retained as an empty trait for backward compatibility.
pub trait StreamChatLikeExt: SseStreamable {}