working on voice control
Some checks failed
CI/CD Pipeline / build (push) Failing after 4s

This commit is contained in:
2026-03-24 15:06:53 -06:00
parent f514012396
commit 86ff82a015
16 changed files with 704 additions and 173 deletions

View File

@@ -18,4 +18,7 @@ defmodule ElixirAi.ChatRunner.OutboundHelpers do
message
end
def messages_with_system_prompt(messages, nil), do: messages
def messages_with_system_prompt(messages, prompt), do: [prompt | messages]
end