mirror of
https://github.com/katanemo/plano.git
synced 2026-05-02 12:22:43 +02:00
remove unnecessary rust files
This commit is contained in:
parent
6c53510f49
commit
fb34dbdf6c
2 changed files with 0 additions and 20 deletions
|
|
@ -1 +0,0 @@
|
|||
pub mod types;
|
||||
|
|
@ -1,19 +0,0 @@
|
|||
use crate::providers::openai::types::{ChatCompletionsRequest, ChatCompletionsResponse};
|
||||
pub use crate::providers::openai::types::{Choice, Message, Usage};
|
||||
|
||||
use serde::{Deserialize, Serialize};
|
||||
use serde_with::skip_serializing_none;
|
||||
|
||||
#[skip_serializing_none]
|
||||
#[derive(Debug, Clone, Serialize, Deserialize)]
|
||||
pub struct DeepSeekRequest {
|
||||
#[serde(flatten)]
|
||||
pub base: ChatCompletionsRequest,
|
||||
}
|
||||
|
||||
#[skip_serializing_none]
|
||||
#[derive(Debug, Clone, Serialize, Deserialize)]
|
||||
pub struct DeepSeekResponse {
|
||||
#[serde(flatten)]
|
||||
pub base: ChatCompletionsResponse,
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue