Allow using system instructions
This commit is contained in:
50
examples/system_instruction.rs
Normal file
50
examples/system_instruction.rs
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
use std::sync::Arc;
|
||||||
|
|
||||||
|
use gemini_rs::prelude::*;
|
||||||
|
|
||||||
|
use gcp_auth::AuthenticationManager;
|
||||||
|
|
||||||
|
#[tokio::main]
|
||||||
|
async fn main() -> Result<(), Box<dyn std::error::Error>> {
|
||||||
|
tracing_subscriber::fmt().init();
|
||||||
|
let authentication_manager = Arc::new(AuthenticationManager::new().await?);
|
||||||
|
let api_endpoint = std::env::var("API_ENDPOINT")?;
|
||||||
|
let project_id = std::env::var("PROJECT_ID")?;
|
||||||
|
let location_id = std::env::var("LOCATION_ID")?;
|
||||||
|
|
||||||
|
let gemini = GeminiClient::new(
|
||||||
|
authentication_manager,
|
||||||
|
api_endpoint,
|
||||||
|
project_id,
|
||||||
|
location_id,
|
||||||
|
);
|
||||||
|
|
||||||
|
let system_instruction = "Answer as if you were Winston Churchill";
|
||||||
|
let prompt = "What is the airspeed of an unladen swallow?";
|
||||||
|
|
||||||
|
let request = GenerateContentRequest {
|
||||||
|
contents: vec![Content {
|
||||||
|
role: "user".to_string(),
|
||||||
|
parts: Some(vec![Part::Text(prompt.to_string())]),
|
||||||
|
}],
|
||||||
|
system_instruction: Some(Content {
|
||||||
|
role: "system".to_string(),
|
||||||
|
parts: Some(vec![Part::Text(system_instruction.to_string())]),
|
||||||
|
}),
|
||||||
|
..Default::default()
|
||||||
|
};
|
||||||
|
|
||||||
|
let result = gemini
|
||||||
|
.generate_content(&request, "gemini-1.0-pro-002")
|
||||||
|
.await?;
|
||||||
|
|
||||||
|
if let GenerateContentResponse::Ok {
|
||||||
|
candidates,
|
||||||
|
usage_metadata: _,
|
||||||
|
} = result
|
||||||
|
{
|
||||||
|
println!("Response: {:?}", candidates[0].get_text().unwrap());
|
||||||
|
}
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
@@ -127,6 +127,7 @@ impl<T: TokenProvider + Clone> GeminiClient<T> {
|
|||||||
.collect(),
|
.collect(),
|
||||||
generation_config: None,
|
generation_config: None,
|
||||||
tools: None,
|
tools: None,
|
||||||
|
system_instruction: None,
|
||||||
};
|
};
|
||||||
|
|
||||||
let response = self.generate_content(&request, model).await?;
|
let response = self.generate_content(&request, model).await?;
|
||||||
@@ -154,6 +155,7 @@ impl<T: TokenProvider + Clone> GeminiClient<T> {
|
|||||||
}],
|
}],
|
||||||
generation_config: generation_config.cloned(),
|
generation_config: generation_config.cloned(),
|
||||||
tools: None,
|
tools: None,
|
||||||
|
system_instruction: None,
|
||||||
};
|
};
|
||||||
|
|
||||||
let response = self.generate_content(&request, "gemini-pro").await?;
|
let response = self.generate_content(&request, "gemini-pro").await?;
|
||||||
|
|||||||
@@ -22,10 +22,22 @@ pub enum ErrorType {
|
|||||||
|
|
||||||
#[serde(rename = "type.googleapis.com/google.rpc.Help")]
|
#[serde(rename = "type.googleapis.com/google.rpc.Help")]
|
||||||
Help { links: Vec<Link> },
|
Help { links: Vec<Link> },
|
||||||
|
|
||||||
|
#[serde(rename = "type.googleapis.com/google.rpc.BadRequest")]
|
||||||
|
BadRequest {
|
||||||
|
#[serde(rename = "fieldViolations")]
|
||||||
|
field_violations: Vec<FieldViolation>,
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Clone, Debug, Serialize, Deserialize)]
|
#[derive(Clone, Debug, Serialize, Deserialize)]
|
||||||
pub struct ErrorInfoMetadata {
|
pub struct ErrorInfoMetadata {
|
||||||
service: String,
|
pub service: String,
|
||||||
consumer: String,
|
pub consumer: String,
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Clone, Debug, Serialize, Deserialize)]
|
||||||
|
pub struct FieldViolation {
|
||||||
|
pub field: String,
|
||||||
|
pub description: String,
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -4,11 +4,12 @@ use serde::{Deserialize, Serialize};
|
|||||||
|
|
||||||
use super::{Content, Error, Part};
|
use super::{Content, Error, Part};
|
||||||
|
|
||||||
#[derive(Clone, Serialize, Deserialize)]
|
#[derive(Clone, Default, Serialize, Deserialize)]
|
||||||
pub struct GenerateContentRequest {
|
pub struct GenerateContentRequest {
|
||||||
pub contents: Vec<Content>,
|
pub contents: Vec<Content>,
|
||||||
pub generation_config: Option<GenerationConfig>,
|
pub generation_config: Option<GenerationConfig>,
|
||||||
pub tools: Option<Vec<Tools>>,
|
pub tools: Option<Vec<Tools>>,
|
||||||
|
pub system_instruction: Option<Content>,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl GenerateContentRequest {
|
impl GenerateContentRequest {
|
||||||
@@ -20,6 +21,7 @@ impl GenerateContentRequest {
|
|||||||
}],
|
}],
|
||||||
generation_config,
|
generation_config,
|
||||||
tools: None,
|
tools: None,
|
||||||
|
system_instruction: None,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user