Getting Template
- Using the API:
- In Python:
curl -X GET -H "x-api-key: $JAVELIN_API_KEY" "https://api.javelin.live/v1/admin/processors/dp/templates/InspectPII"
Javelin Get Template Example
from javelin_sdk import (
JavelinClient,
JavelinConfig,
Template
)
import os
# Retrieve environment variables
javelin_api_key = os.getenv('JAVELIN_API_KEY')
# create javelin client
config = JavelinConfig(
base_url="https://api-dev.javelin.live",
javelin_api_key=javelin_api_key,
llm_api_key=llm_api_key
)
client = JavelinClient(config)
# template name to get is "InspectPII"
template_name = "InspectPII"
# get the template, for async use `await client.aget_template(template_name)`
print(client.get_template(template_name))