import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: 'My API Key',
});
const buckets = await client.ai.embeddings.buckets.list();
console.log(buckets.data);{
"data": {
"buckets": [
"<string>"
]
}
}Get all embedding buckets for a user.
import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: 'My API Key',
});
const buckets = await client.ai.embeddings.buckets.list();
console.log(buckets.data);{
"data": {
"buckets": [
"<string>"
]
}
}Was this page helpful?