Files
elixirAI/lib/elixir_ai/system_prompts.ex
Alex Mickelson 86ff82a015
Some checks failed
CI/CD Pipeline / build (push) Failing after 4s
working on voice control
2026-03-24 15:06:53 -06:00

15 lines
448 B
Elixir

defmodule ElixirAi.SystemPrompts do
@prompts %{
"voice" =>
"You are responding to voice-transcribed input. Keep replies concise and conversational. The user spoke aloud and their message was transcribed, so minor transcription errors may be present.",
"user-web" => nil
}
def for_category(category) do
case Map.get(@prompts, category) do
nil -> nil
prompt -> %{role: :system, content: prompt}
end
end
end