elevenlabs-cli 0.1.8

Unofficial CLI for ElevenLabs text-to-speech API
1
2
3
4
5
6
7
8
9
10
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
//! Phone Numbers API commands for managing Twilio/SIP integrations.
//!
//! This module implements the Phone Numbers API for telephony integrations.
//! API Reference: https://elevenlabs.io/docs/api-reference/phone-numbers

use crate::cli::{PhoneArgs, PhoneCommands, ProviderType};
use crate::client::create_http_client;
use crate::output::{print_info, print_success, print_warning};
use anyhow::{Context, Result};
use colored::*;
use comfy_table::Table;
use reqwest::Client;
use serde::Deserialize;
use serde_json::json;

pub async fn execute(args: PhoneArgs, api_key: &str, assume_yes: bool) -> Result<()> {
    let client = create_http_client();

    match args.command {
        PhoneCommands::List { agent_id } => {
            list_phone_numbers(&client, api_key, agent_id.as_deref()).await
        }
        PhoneCommands::Get { phone_id } => get_phone_number(&client, api_key, &phone_id).await,
        PhoneCommands::Import {
            number,
            provider,
            label,
            sid,
            token,
            sip_uri,
        } => {
            import_phone_number(
                &client,
                api_key,
                &number,
                provider,
                label.as_deref(),
                sid.as_deref(),
                token.as_deref(),
                sip_uri.as_deref(),
            )
            .await
        }
        PhoneCommands::Update {
            phone_id,
            label,
            agent_id,
        } => {
            update_phone_number(
                &client,
                api_key,
                &phone_id,
                label.as_deref(),
                agent_id.as_deref(),
            )
            .await
        }
        PhoneCommands::Delete { phone_id } => {
            delete_phone_number(&client, api_key, &phone_id, assume_yes).await
        }
        PhoneCommands::Test { phone_id, agent_id } => {
            test_call(&client, api_key, &phone_id, agent_id.as_deref()).await
        }
    }
}

#[derive(Debug, Deserialize)]
struct PhoneNumberInfo {
    phone_number_id: String,
    phone_number: String,
    #[serde(default)]
    label: Option<String>,
    #[serde(default)]
    provider: Option<String>,
    #[serde(default)]
    agent_id: Option<String>,
    #[serde(default)]
    status: Option<String>,
    #[serde(default)]
    created_at: Option<String>,
}

#[derive(Debug, Deserialize)]
struct PhoneNumbersListResponse {
    phone_numbers: Vec<PhoneNumberInfo>,
}

#[derive(Debug, Deserialize)]
struct ImportPhoneResponse {
    phone_number_id: String,
    #[allow(dead_code)]
    phone_number: String,
}

async fn list_phone_numbers(client: &Client, api_key: &str, agent_id: Option<&str>) -> Result<()> {
    print_info("Fetching phone numbers...");

    let mut url = "https://api.elevenlabs.io/v1/convai/phone-numbers".to_string();

    if let Some(aid) = agent_id {
        url.push_str(&format!("?agent_id={}", aid));
    }

    let response = client
        .get(&url)
        .header("xi-api-key", api_key)
        .send()
        .await
        .context("Failed to fetch phone numbers")?;

    if !response.status().is_success() {
        let error = response.text().await?;
        return Err(anyhow::anyhow!("API error: {}", error));
    }

    let phones_response: PhoneNumbersListResponse =
        response.json().await.context("Failed to parse response")?;

    if phones_response.phone_numbers.is_empty() {
        print_info("No phone numbers found");
        return Ok(());
    }

    let mut table = Table::new();
    table.set_header(vec!["ID", "Number", "Label", "Provider", "Agent", "Status"]);

    for phone in &phones_response.phone_numbers {
        let label = phone.label.as_deref().unwrap_or("-");
        let provider = phone.provider.as_deref().unwrap_or("-");
        let agent = phone
            .agent_id
            .as_deref()
            .map(|s| {
                if s.len() > 12 {
                    format!("{}...", &s[..12])
                } else {
                    s.to_string()
                }
            })
            .unwrap_or_default();
        let status = phone.status.as_deref().unwrap_or("active");

        table.add_row(vec![
            phone.phone_number_id.yellow(),
            phone.phone_number.cyan(),
            label.into(),
            provider.into(),
            agent.into(),
            status.into(),
        ]);
    }

    println!("{}", table);
    print_success(&format!(
        "Found {} phone number(s)",
        phones_response.phone_numbers.len()
    ));
    Ok(())
}

async fn get_phone_number(client: &Client, api_key: &str, phone_id: &str) -> Result<()> {
    print_info(&format!("Fetching phone number '{}'...", phone_id.cyan()));

    let url = format!(
        "https://api.elevenlabs.io/v1/convai/phone-numbers/{}",
        phone_id
    );
    let response = client
        .get(&url)
        .header("xi-api-key", api_key)
        .send()
        .await?;

    if !response.status().is_success() {
        let error = response.text().await?;
        return Err(anyhow::anyhow!("API error: {}", error));
    }

    let phone: PhoneNumberInfo = response.json().await?;

    let mut table = Table::new();
    table.set_header(vec!["Property", "Value"]);
    table.add_row(vec!["ID", &phone.phone_number_id.yellow()]);
    table.add_row(vec!["Number", &phone.phone_number.cyan()]);

    if let Some(label) = &phone.label {
        table.add_row(vec!["Label", label]);
    }
    if let Some(provider) = &phone.provider {
        table.add_row(vec!["Provider", provider]);
    }
    if let Some(agent) = &phone.agent_id {
        table.add_row(vec!["Agent ID", agent]);
    }
    if let Some(status) = &phone.status {
        table.add_row(vec!["Status", status]);
    }
    if let Some(created) = &phone.created_at {
        table.add_row(vec!["Created", created]);
    }

    println!("{}", table);
    Ok(())
}

async fn import_phone_number(
    client: &Client,
    api_key: &str,
    number: &str,
    provider: ProviderType,
    label: Option<&str>,
    sid: Option<&str>,
    token: Option<&str>,
    sip_uri: Option<&str>,
) -> Result<()> {
    print_info(&format!("Importing phone number '{}'...", number.cyan()));

    let mut body = json!({
        "phone_number": number,
    });

    if let Some(l) = label {
        body["label"] = json!(l);
    }

    match provider {
        ProviderType::Twilio => {
            let account_sid = sid.ok_or_else(|| {
                anyhow::anyhow!("Twilio Account SID is required for Twilio provider. Use --sid")
            })?;
            let auth_token = token.ok_or_else(|| {
                anyhow::anyhow!("Twilio Auth Token is required for Twilio provider. Use --token")
            })?;

            body["provider"] = json!({
                "type": "twilio",
                "twilio_sid": account_sid,
                "twilio_token": auth_token
            });
        }
        ProviderType::Sip => {
            let uri = sip_uri.ok_or_else(|| {
                anyhow::anyhow!("SIP URI is required for SIP provider. Use --sip-uri")
            })?;

            body["provider"] = json!({
                "type": "sip_trunk",
                "sip_uri": uri
            });
        }
    }

    let response = client
        .post("https://api.elevenlabs.io/v1/convai/phone-numbers")
        .header("xi-api-key", api_key)
        .json(&body)
        .send()
        .await
        .context("Failed to import phone number")?;

    if !response.status().is_success() {
        let error = response.text().await?;
        return Err(anyhow::anyhow!("API error: {}", error));
    }

    let result: ImportPhoneResponse = response.json().await.context("Failed to parse response")?;
    print_success("Phone number imported successfully!");
    print_info(&format!(
        "Phone Number ID: {}",
        result.phone_number_id.yellow()
    ));

    Ok(())
}

async fn update_phone_number(
    client: &Client,
    api_key: &str,
    phone_id: &str,
    label: Option<&str>,
    agent_id: Option<&str>,
) -> Result<()> {
    print_info(&format!("Updating phone number '{}'...", phone_id.cyan()));

    let mut body = json!({});

    if let Some(l) = label {
        body["label"] = json!(l);
    }
    if let Some(aid) = agent_id {
        body["agent_id"] = json!(aid);
    }

    if body.as_object().unwrap().is_empty() {
        return Err(anyhow::anyhow!(
            "No updates specified. Use --label or --agent-id"
        ));
    }

    let url = format!(
        "https://api.elevenlabs.io/v1/convai/phone-numbers/{}",
        phone_id
    );
    let response = client
        .patch(&url)
        .header("xi-api-key", api_key)
        .json(&body)
        .send()
        .await?;

    if !response.status().is_success() {
        let error = response.text().await?;
        return Err(anyhow::anyhow!("API error: {}", error));
    }

    print_success("Phone number updated successfully!");
    Ok(())
}

async fn delete_phone_number(
    client: &Client,
    api_key: &str,
    phone_id: &str,
    assume_yes: bool,
) -> Result<()> {
    print_warning(&format!(
        "You are about to delete phone number '{}'",
        phone_id
    ));

    if !assume_yes {
        let confirm = dialoguer::Confirm::new()
            .with_prompt("Are you sure?")
            .default(false)
            .interact()?;

        if !confirm {
            print_info("Cancelled");
            return Ok(());
        }
    }

    let url = format!(
        "https://api.elevenlabs.io/v1/convai/phone-numbers/{}",
        phone_id
    );
    let response = client
        .delete(&url)
        .header("xi-api-key", api_key)
        .send()
        .await?;

    if !response.status().is_success() {
        let error = response.text().await?;
        return Err(anyhow::anyhow!("API error: {}", error));
    }

    print_success(&format!(
        "Phone number '{}' deleted successfully",
        phone_id.green()
    ));
    Ok(())
}

async fn test_call(
    client: &Client,
    api_key: &str,
    phone_id: &str,
    agent_id: Option<&str>,
) -> Result<()> {
    print_info(&format!(
        "Initiating test call to phone number '{}'...",
        phone_id.cyan()
    ));

    let body = json!({
        "agent_id": agent_id
    });

    let url = format!(
        "https://api.elevenlabs.io/v1/convai/phone-numbers/{}/test-call",
        phone_id
    );

    let response = client
        .post(&url)
        .header("xi-api-key", api_key)
        .json(&body)
        .send()
        .await
        .context("Failed to initiate test call")?;

    if !response.status().is_success() {
        let error = response.text().await?;
        return Err(anyhow::anyhow!("API error: {}", error));
    }

    print_success("Test call initiated successfully!");
    if let Some(aid) = agent_id {
        print_info(&format!("Using agent: {}", aid.yellow()));
    } else {
        print_info("Using default agent");
    }

    Ok(())
}