async_openai_types/types/
common.rs1use std::path::PathBuf;
2
3use bytes::Bytes;
4
5#[derive(Debug, Clone, PartialEq)]
6pub enum InputSource {
7 Path { path: PathBuf },
8 Bytes { filename: String, bytes: Bytes },
9 VecU8 { filename: String, vec: Vec<u8> },
10}