Templates

Templates are pre-built Agents for common use cases developed on the Line SDK that are easy to extend for your application.

These templates can be cloned into new GitHub repositories by installing the Cartesia app into your personal or organization account.

1

Sign into Cartesia Playground

Go to play.cartesia.ai/agents and sign into your account.

2

Select Agent Template

Click on a Template that suites your use case.

Select a template
3

Connect your GitHub account

After choosing a Template, you can connect your GitHub account and automatically clone a Template into a new private repository.

Connect to Github
4

Clone your Agent locally

Now that your repo is created, let’s set up your Agent on your machine.

1git clone https://github.com/your-username/your-repo-name.git
5

Customize your Agent

Now that your repo is cloned, you can customize it with specific instructions in the README.md. You can use cartesia chat from your CLI to try your changes locally before deploying.

6

Deploy your changes

When you’re satisfied with your Agent, pushing to main will trigger a new deployment.

1git add .
2git commit -m "hello world"
3git push
7

Check deployment status

See your deployment status in the playground or the CLI if you prefer.

Deployments