pub struct AssistantRequest {
pub model: String,
pub name: Option<String>,
pub description: Option<String>,
pub instructions: Option<String>,
pub tools: Option<Vec<HashMap<String, String>>>,
pub tool_resources: Option<ToolResource>,
pub metadata: Option<HashMap<String, String>>,
}
Fields§
§model: String
§name: Option<String>
§description: Option<String>
§instructions: Option<String>
§tools: Option<Vec<HashMap<String, String>>>
§tool_resources: Option<ToolResource>
§metadata: Option<HashMap<String, String>>
Implementations§
Source§impl AssistantRequest
impl AssistantRequest
Sourcepub fn new(model: String) -> Self
pub fn new(model: String) -> Self
Examples found in repository?
examples/assistant.rs (line 17)
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
async fn main() -> Result<(), Box<dyn std::error::Error>> {
let client = OpenAIClient::new(env::var("OPENAI_API_KEY").unwrap().to_string());
let mut tools = HashMap::new();
tools.insert("type".to_string(), "code_interpreter".to_string());
let req = AssistantRequest::new(GPT4_O.to_string());
let req = req
.clone()
.description("this is a test assistant".to_string());
let req = req.clone().instructions("You are a personal math tutor. When asked a question, write and run Python code to answer the question.".to_string());
let req = req.clone().tools(vec![tools]);
println!("AssistantRequest: {:?}", req);
let result = client.create_assistant(req).await?;
println!("Create Assistant Result ID: {:?}", result.id);
let thread_req = CreateThreadRequest::new();
let thread_result = client.create_thread(thread_req).await?;
println!("Create Thread Result ID: {:?}", thread_result.id.clone());
let message_req = CreateMessageRequest::new(
MessageRole::user,
"`I need to solve the equation 3x + 11 = 14. Can you help me?".to_string(),
);
let message_result = client
.create_message(thread_result.id.clone(), message_req)
.await?;
println!("Create Message Result ID: {:?}", message_result.id.clone());
let run_req = CreateRunRequest::new(result.id);
let run_result = client.create_run(thread_result.id.clone(), run_req).await?;
println!("Create Run Result ID: {:?}", run_result.id.clone());
loop {
let run_result = client
.retrieve_run(thread_result.id.clone(), run_result.id.clone())
.await
.unwrap();
if run_result.status == "completed" {
break;
} else {
println!("waiting...");
std::thread::sleep(std::time::Duration::from_secs(1));
}
}
let list_message_result = client
.list_messages(thread_result.id.clone())
.await
.unwrap();
for data in list_message_result.data {
for content in data.content {
println!(
"{:?}: {:?} {:?}",
data.role, content.text.value, content.text.annotations
);
}
}
Ok(())
}
Source§impl AssistantRequest
impl AssistantRequest
pub fn name(self, name: String) -> Self
Sourcepub fn description(self, description: String) -> Self
pub fn description(self, description: String) -> Self
Examples found in repository?
examples/assistant.rs (line 20)
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
async fn main() -> Result<(), Box<dyn std::error::Error>> {
let client = OpenAIClient::new(env::var("OPENAI_API_KEY").unwrap().to_string());
let mut tools = HashMap::new();
tools.insert("type".to_string(), "code_interpreter".to_string());
let req = AssistantRequest::new(GPT4_O.to_string());
let req = req
.clone()
.description("this is a test assistant".to_string());
let req = req.clone().instructions("You are a personal math tutor. When asked a question, write and run Python code to answer the question.".to_string());
let req = req.clone().tools(vec![tools]);
println!("AssistantRequest: {:?}", req);
let result = client.create_assistant(req).await?;
println!("Create Assistant Result ID: {:?}", result.id);
let thread_req = CreateThreadRequest::new();
let thread_result = client.create_thread(thread_req).await?;
println!("Create Thread Result ID: {:?}", thread_result.id.clone());
let message_req = CreateMessageRequest::new(
MessageRole::user,
"`I need to solve the equation 3x + 11 = 14. Can you help me?".to_string(),
);
let message_result = client
.create_message(thread_result.id.clone(), message_req)
.await?;
println!("Create Message Result ID: {:?}", message_result.id.clone());
let run_req = CreateRunRequest::new(result.id);
let run_result = client.create_run(thread_result.id.clone(), run_req).await?;
println!("Create Run Result ID: {:?}", run_result.id.clone());
loop {
let run_result = client
.retrieve_run(thread_result.id.clone(), run_result.id.clone())
.await
.unwrap();
if run_result.status == "completed" {
break;
} else {
println!("waiting...");
std::thread::sleep(std::time::Duration::from_secs(1));
}
}
let list_message_result = client
.list_messages(thread_result.id.clone())
.await
.unwrap();
for data in list_message_result.data {
for content in data.content {
println!(
"{:?}: {:?} {:?}",
data.role, content.text.value, content.text.annotations
);
}
}
Ok(())
}
Sourcepub fn instructions(self, instructions: String) -> Self
pub fn instructions(self, instructions: String) -> Self
Examples found in repository?
examples/assistant.rs (line 21)
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
async fn main() -> Result<(), Box<dyn std::error::Error>> {
let client = OpenAIClient::new(env::var("OPENAI_API_KEY").unwrap().to_string());
let mut tools = HashMap::new();
tools.insert("type".to_string(), "code_interpreter".to_string());
let req = AssistantRequest::new(GPT4_O.to_string());
let req = req
.clone()
.description("this is a test assistant".to_string());
let req = req.clone().instructions("You are a personal math tutor. When asked a question, write and run Python code to answer the question.".to_string());
let req = req.clone().tools(vec![tools]);
println!("AssistantRequest: {:?}", req);
let result = client.create_assistant(req).await?;
println!("Create Assistant Result ID: {:?}", result.id);
let thread_req = CreateThreadRequest::new();
let thread_result = client.create_thread(thread_req).await?;
println!("Create Thread Result ID: {:?}", thread_result.id.clone());
let message_req = CreateMessageRequest::new(
MessageRole::user,
"`I need to solve the equation 3x + 11 = 14. Can you help me?".to_string(),
);
let message_result = client
.create_message(thread_result.id.clone(), message_req)
.await?;
println!("Create Message Result ID: {:?}", message_result.id.clone());
let run_req = CreateRunRequest::new(result.id);
let run_result = client.create_run(thread_result.id.clone(), run_req).await?;
println!("Create Run Result ID: {:?}", run_result.id.clone());
loop {
let run_result = client
.retrieve_run(thread_result.id.clone(), run_result.id.clone())
.await
.unwrap();
if run_result.status == "completed" {
break;
} else {
println!("waiting...");
std::thread::sleep(std::time::Duration::from_secs(1));
}
}
let list_message_result = client
.list_messages(thread_result.id.clone())
.await
.unwrap();
for data in list_message_result.data {
for content in data.content {
println!(
"{:?}: {:?} {:?}",
data.role, content.text.value, content.text.annotations
);
}
}
Ok(())
}
Sourcepub fn tools(self, tools: Vec<HashMap<String, String>>) -> Self
pub fn tools(self, tools: Vec<HashMap<String, String>>) -> Self
Examples found in repository?
examples/assistant.rs (line 22)
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
async fn main() -> Result<(), Box<dyn std::error::Error>> {
let client = OpenAIClient::new(env::var("OPENAI_API_KEY").unwrap().to_string());
let mut tools = HashMap::new();
tools.insert("type".to_string(), "code_interpreter".to_string());
let req = AssistantRequest::new(GPT4_O.to_string());
let req = req
.clone()
.description("this is a test assistant".to_string());
let req = req.clone().instructions("You are a personal math tutor. When asked a question, write and run Python code to answer the question.".to_string());
let req = req.clone().tools(vec![tools]);
println!("AssistantRequest: {:?}", req);
let result = client.create_assistant(req).await?;
println!("Create Assistant Result ID: {:?}", result.id);
let thread_req = CreateThreadRequest::new();
let thread_result = client.create_thread(thread_req).await?;
println!("Create Thread Result ID: {:?}", thread_result.id.clone());
let message_req = CreateMessageRequest::new(
MessageRole::user,
"`I need to solve the equation 3x + 11 = 14. Can you help me?".to_string(),
);
let message_result = client
.create_message(thread_result.id.clone(), message_req)
.await?;
println!("Create Message Result ID: {:?}", message_result.id.clone());
let run_req = CreateRunRequest::new(result.id);
let run_result = client.create_run(thread_result.id.clone(), run_req).await?;
println!("Create Run Result ID: {:?}", run_result.id.clone());
loop {
let run_result = client
.retrieve_run(thread_result.id.clone(), run_result.id.clone())
.await
.unwrap();
if run_result.status == "completed" {
break;
} else {
println!("waiting...");
std::thread::sleep(std::time::Duration::from_secs(1));
}
}
let list_message_result = client
.list_messages(thread_result.id.clone())
.await
.unwrap();
for data in list_message_result.data {
for content in data.content {
println!(
"{:?}: {:?} {:?}",
data.role, content.text.value, content.text.annotations
);
}
}
Ok(())
}
pub fn tool_resources(self, tool_resources: ToolResource) -> Self
pub fn metadata(self, metadata: HashMap<String, String>) -> Self
Trait Implementations§
Source§impl Clone for AssistantRequest
impl Clone for AssistantRequest
Source§fn clone(&self) -> AssistantRequest
fn clone(&self) -> AssistantRequest
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for AssistantRequest
impl Debug for AssistantRequest
Auto Trait Implementations§
impl Freeze for AssistantRequest
impl RefUnwindSafe for AssistantRequest
impl Send for AssistantRequest
impl Sync for AssistantRequest
impl Unpin for AssistantRequest
impl UnwindSafe for AssistantRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more