use crate::Pair;
pub fn json(instruction: &str, text: &str, properties: &str) -> String {
let format: String = format!(
r#"{{
"system_instruction": {{
"parts":
{{ "text": "{}"}}
}},
"contents": [{{
"parts":[
{{"text": "{}"}}
]
}}],
"generationConfig": {{
"response_mime_type": "application/json",
"response_schema": {{
"type": "ARRAY",
"items": {{
"type": "OBJECT",
"properties": {
}
}}
}}
}}
}}"#,
instruction, text, properties
);
format
}
pub fn text(system_instruction: &str, text: &str) -> String {
let content = format!(
"{{ \"system_instruction\": {{
\"parts\":
{{ \"text\": \"{}\"}}
}},
\"contents\": {{
\"parts\": {{
\"text\": \"{}\"
}}
}}
}}",
system_instruction, text
);
println!("{}", content);
content
}
pub fn image(instruction: &str, prompt: &str, image: &str) -> String {
let iamge_response = format!(
"{{
\"system_instruction\": {{
\"parts\":
{{ \"text\": \"{}\"}}
}},
\"contents\": [{{
\"parts\":[
{{\"text\": \"{}\"}},
{{
\"inline_data\": {{
\"mime_type\":\"image/jpeg\",
\"data\": \"{}\"
}}
}}
]
}}]
}}",
instruction, prompt, image
);
iamge_response
}
pub fn video(prompt: &str, video_path: &str, mime_type: &str) -> String {
let response = format!(
" {{\"contents\": [{{
\"parts\":[
{{\"text\": \"{}\"}},
{{\"file_data\":{{\"mime_type\": \"{}\", \"file_uri\": \"{}\"}}}}
]
}}]
}}",
prompt, mime_type, video_path
);
response
}
pub fn transcribe(prompt: &str, video_path: &str) -> String {
let response = format!(" {{\"contents\":
[
{{
\"parts\":[
{{\"text\": \"Transcribe the audio from this video, giving timestamps for salient events in the video. Also provide visual descriptions.and {}\"
}},
{{\"file_data\":{{\"mime_type\": \"video/mp4\", \"file_uri\": \"{}\"}}
}}
]
}}
]
}}",prompt,video_path);
response
}
pub fn pdf(prompt: &str, path: &str) -> String {
let pdf = format!(
"{{
\"contents\": [{{
\"parts\":[
{{\"text\": \"{}\"}},
{{\"file_data\":{{\"mime_type\": \"application/pdf\", \"file_uri\": \"{}\"}}}}
]
}}]
}}",
prompt, path
);
println!("{}", pdf);
pdf
}
pub fn key(key: &str, r#type: &str) -> String {
let key = format!("\"{}\":{{\"type\":\"{}\"}}", key, r#type);
key
}
pub fn nested(key: &str, pair: &[Pair]) -> String {
let mut pairs = Vec::new();
pairs.push(pair);
let mut parr = String::new();
for par in pairs.iter() {
for par in par.iter() {
let pari = format!("\"{}\":{{\"type\":\"{}\"}},", par.key, par.r#type);
parr.push_str(&pari);
}
}
let parameter = parr.trim_end_matches(",");
let pp = format!(
"\"{}\":{{
\"type\":\"OBJECT\",
\"properties\": {{{
}}}
}}",
key, parameter
);
pp
}
pub struct Train {
train: Function,
}
pub struct Function {}
#[derive(Debug)]
pub struct Parameters {}
pub struct Properties {}
pub struct PropertiesParameter {}
pub fn function_call_format(instruction: &str, format: &str, text: &str) -> String {
let response = format!(
"{{
\"system_instruction\": {{
\"parts\": {{
\"text\": \"{}\"
}}
}},
\"tools\": [{}],
\"tool_config\": {{
\"function_calling_config\": {{\"mode\": \"none\"}}
}},
\"contents\": {{
\"role\": \"user\",
\"parts\": {{
\"text\": \"{}\"
}}
}}
}}",
instruction, format, text
);
response
}
fn function_calling() {
let response = format!(
"{{
\"function_declarations\": [
{}
]
}}",
""
);
}
impl PropertiesParameter {
pub fn new(key: &str, r#type: &str, description: &str) -> String {
let mut keys = vec![];
let mut types = vec![];
let mut desrciptions = vec![];
keys.push(key);
types.push(r#type);
desrciptions.push(description);
let mut response = String::new();
for (i, key) in keys.iter().enumerate() {
let response_ = format!(
"{{
\"{}\":{{
\"type\":\"{}\",
\"description\":\"{}\"
}}
}}",
keys[i], types[i], desrciptions[i]
);
response.push_str(&response_);
}
response
}
}
impl Properties {
pub fn parameter(r#type: &str, parameter: &str, required: Option<&[&str]>) -> String {
let mut types = vec![];
let mut propertiess = vec![];
let mut requireds = vec![];
types.push(r#type);
propertiess.push(parameter);
requireds.push(required);
let mut responses = String::new();
for (i, types) in types.iter().enumerate() {
match requireds[i] {
None => {
let responsee = format!(
"{{
\"type\":\"{}\",
\"properties\": {}
}}",
types, propertiess[i]
);
responses.push_str(&responsee);
}
Some(response) => {
let responsee = format!(
"{{
\"type\":\"object\",
\"properties\": {},
\"required\":{:?}
}}",
propertiess[i], response
);
responses.push_str(&responsee);
}
}
}
responses
}
}
impl Parameters {
pub fn parameter(name: &str, description: &str, parameter: &str) -> String {
let mut parameters: Vec<&str> = vec![];
let mut names = vec![];
let mut descriptions = vec![];
parameters.push(parameter);
names.push(name);
descriptions.push(r#description);
let mut response = String::new();
for (i, key) in names.iter().enumerate() {
let respons = format!(
"{{
\"name\":\"{}\",
\"description\":\"{}\",
\"parameters\":{}
}}",
names[i], descriptions[i], parameters[i]
);
response.push_str(&respons);
}
response
}
}
impl Function {
pub fn new(parameters: &[String]) -> String {
let mut response = String::new();
for parameter in parameters {
let responsee = format!("{},", parameter);
response.push_str(&responsee);
}
let parameters = response.trim_end_matches(",");
let responsee = format!(
"{{
\"function_declarations\": [
{}
]
}}",
parameters
);
responsee
}
}