Skip to content

Full tutorial on coding AI function calling in Rust programming by [Jeremy Chone](https://youtube.com/jeremychone)

Notifications You must be signed in to change notification settings

jeremychone-channel/rust-xp-ai-function

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Full tutorial on coding AI function calling in Rust programming by Jeremy Chone. We will be using the OpenAI API, but similar approaches can be applied with Mistral, Mixtral, LLAMA, Gemini, and many other LLMs.

See YoutTube Video AI Function Calling In Rust - Full Tutorial (OpenAI)

More on https://rust10x.com

Other utils

Some bash/zsh aliases/functions

# Cargo watch quiet clear (user need to add the -x)
alias cw="cargo watch -q -c"

# Cargo watch run
alias cwr="cargo watch -q -c -w src/ -x 'run -q'"

# cargo watch example zsh/back function
# usage `cwe xp_file_name`
function cwe() {
  cargo watch -q -c -x "run -q --example '$1'"
}

# cargo watch test zsh/bash function
# usage `cwt test_my_fn`
function cwt() {
  cargo watch -q -c -x "test '$1' -- --nocapture"
}

# Cargo watch install
function cwi() {
  cargo watch -x "install --path ."
}

Related links

About

Full tutorial on coding AI function calling in Rust programming by [Jeremy Chone](https://youtube.com/jeremychone)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages