v1
latestOpenAPI 3.1.02026-07-1320186461.3 KBFetch Deployed Prompt
Given a deployment_id, fetches the deployed prompt and its details. Can be optionally used to fill-in the templated prompt with provided inputs.
post/api/parea/v1/deployed-prompt
Request body
Example request
{
"deployment_id": "p-qZrnFesaeCpqcXJ_yL3wi",
"llm_inputs": {
"x": "Python",
"y": "Flask"
}
}Response
Successful Response
Example response
{
"deployment_id": "p-qZrnFesaeCpqcXJ_yL3wi",
"functions": [],
"model": "gpt-4o-mini",
"model_params": {
"frequency_penalty": 0,
"presence_penalty": 0,
"temp": 0.5,
"top_p": 1
},
"name": "hello world",
"prompt": {
"inputs": {
"x": "Python",
"y": "Flask"
},
"messages": [
{
"content": "I want a Hello World program in Python. Using the Flask framework.",
"role": "user"
}
],
"raw_messages": [
{
"content": "I want a Hello World program in {{x}}. Using the {{y}} framework.",
"role": "user"
}
]
},
"provider": "openai",
"version_number": 1
}