Dino Geek, cerca di aiutarti

Come connettersi all'API ChatGPT con Rust?


Per connettersi all’API ChatGPT con Rust, avrai bisogno di un client HTTP come reqwest ed un crate per gestire le JSON come serde\_json. Qui mostro un esempio di codice su come farlo:

Assicurati di avere nel tuo file Cargo.toml le seguenti dipendenze:

```
[dependencies]
reqwest = { version = “0.11”, features = [“json”] }
serde = “1.0“
serde_json = “1.0“
tokio = { version = “1”, features = [“full”] }
```

Esempio di codice:

```
use reqwest::Error;
use serde::Deserialize;
use serde::Serialize;
use std::collections::HashMap;

#[derive(Serialize)]
struct Prompt<‘a> { messages: Vec>,
}

#[derive(Serialize)]
struct ChatMessage<‘a> { role: &‘a str, content: &‘a str,
}

#[derive(Deserialize)]
struct Response { id: String, object: String, created: u64, model: String, usage: HashMap, choices: Vec>,
}

#[tokio::main]
async fn main() -> Result<(), Error> { let mut headers = reqwest::header::HeaderMap::new(); headers.insert( “Authorization”, reqwest::header::HeaderValue::from_str(“Bearer YOUR-API-KEY”).unwrap(), );

let client = reqwest::Client::builder() .default_headers(headers) .build()?; let conversation = Message { role: “system”, content: “You are a helpful assistant.”, }; let user_message = Message { role: “user”, content: “Who won the world series in 2020?”, }; let res = client .post(“https://api.openai.com/v1/engines/davinci-codex/completions”) .json(&Prompt { messages: vec![conversation, user_message], }) .send() .await? .json::() .await?; println!(“Choices: {:?}”, res.choices); Ok(()) } ```

Nell’esempio sopra, ho utilizzato l’endpoint “https://api.openai.com/v1/engines/davinci-codex/completions”, l’ultimo modello disponibile da OpenAI. La chiave dell’API va inserita nel campo “Bearer YOUR-API-KEY”. Ricorda di sostituire “YOUR-API-KEY” con la tua chiave API.

Nello script sorgente, bisogna inviare un messaggio di sistema seguito da un messaggio dell’utente. Il messaggio del sistema estableisce il comportamento del modello AI. Il messaggio dell’utente è la domanda a cui l’IA risponderà.

Infine, il codice stampa le scelte restituite dall’API. Ogni scelta contiene un campo “message” che ha il messaggio del modello AI “assistant”.


Genera semplicemente articoli per ottimizzare il tuo SEO
Genera semplicemente articoli per ottimizzare il tuo SEO





DinoGeek offre articoli semplici su tecnologie complesse

Vuoi essere citato in questo articolo? È molto semplice, contattaci a dino@eiki.fr

CSS | NodeJS | DNS | DMARC | MAPI | NNTP | htaccess | PHP | HTTPS | Drupal | WEB3 | LLM | Wordpress | TLD | Nome dominio | IMAP | TCP | NFT | MariaDB | FTP | Zigbee | NMAP | SNMP | SEO | E-Mail | LXC | HTTP | MangoDB | SFTP | RAG | SSH | HTML | ChatGPT API | OSPF | JavaScript | Docker | OpenVZ | ChatGPT | VPS | ZIMBRA | SPF | UDP | Joomla | IPV6 | BGP | Django | Reactjs | DKIM | VMWare | RSYNC | Python | TFTP | Webdav | FAAS | Apache | IPV4 | LDAP | POP3 | SMTP

| Whispers of love (API) | Déclaration d'Amour |






Avviso Legale / Condizioni Generali di Utilizzo