Pinecall is a powerful Voice AI platform that allows you to create, deploy and manage voice AI agents that sound and interact like humans. Our platform combines state-of-the-art text-to-speech, speech-to-text, and large language models to create fluid, natural conversations.
Whether you're building a customer service agent, an outbound sales bot, or a voice assistant for your application, Pinecall provides the tools and APIs to bring your voice AI vision to life.
import { Pinecall } from '@pinecall/sdk';
// Initialize the clientconst pinecall = new Pinecall({ apiKey: process.env.PINECALL_API_KEY});
// Create a simple voice agentasync function createBasicAgent() { const agent = await pinecall.agents.create({ name: 'Hello World Agent', voice: 'emily', language: 'en-US', prompt: 'You are a helpful assistant that greets users and answers basic questions.' }); console.log(`Agent created with ID: ${agent.id}`); return agent;}
// Run the examplecreateBasicAgent();
Can't find what you're looking for? Our support team is here to help.