Quick Start
You can use Traceloop to manage your prompts and model configurations. That way you can easily experiment with different prompts, and rollout changes gradually and safely.
Make sure you’ve created an API key and set it as an environment variable
TRACELOOP_API_KEY
before you start. Check out the SDK’s getting started
guide for more information.
Create a new prompt
Click New Prompt to create a new prompt. Give it a name, which will be used to retrieve it in your code later.
Define it in the Prompt Registry
Set the system and/or user prompt. You can use variables in your prompt by
following the Jinja format of {{ variable_name }}
.
The values of these variables will be passed in when you retrieve the prompt in your code.
For more information see the Registry Documentation.
This screen is also a prompt playground. Give the prompt a try by clicking Test at the bottom.
Deploy the prompt to your developement environement
Click Deploy to Dev to deploy the prompt to your development environment.
Use the prompt in your code
If you haven’t done so, make sure to generate an API key and
set it as an environment variable TRACELOOP_API_KEY
.
Retrieve your prompt by using the get_prompt
function.
For example, if you’ve created a prompt with the key joke_generator
and a single variable persona
:
The returned variable prompt_args
is compatible with the API used by the
foundation models SDKs (OpenAI, Anthropic, etc.) which means you can directly
plug in the response to the appropriate API call.
For more information see the SDK Usage Documentation.
Was this page helpful?