2 questions
1
vote
2
answers
522
views
How to set a system prompt for a LiteLLM prompt provider?
With an openai prompt provider, I can do the following
description: "instructions_test_2025-04-30_002"
prompts:
- "Hi, how are you?"
providers:
- id: "openai:responses:gpt-...
0
votes
1
answer
164
views
How to escape double curly braces in a promptfoo evaluation config?
I'd like to give this prompt to the LLM:
Output this exact string:{{some_string}}"
I.e., {{some_string}} shall not be replaced by Promptfoo with some variable, but be verbatim instead.
My current ...