Files
music_library/lib/music_library/record_chat.ex
T
Claudio Ortolina 7cf9b4e7f8 First pass at uniformed types, specs and docs
- spec public functions (skipping controllers, views, live views and
components)
- use types instead of explanations in docs
- remove redundant docs
- fix typos
2026-03-06 08:33:11 +00:00

49 lines
1.4 KiB
Elixir

defmodule MusicLibrary.RecordChat do
@behaviour MusicLibrary.Chat
alias MusicLibrary.Records.Record
@impl true
@spec stream_response([map()], {Record.t(), String.t() | nil}, (String.t() -> any())) ::
:ok | {:error, term()}
def stream_response(messages, {record, embedding_text}, callback) do
instructions = build_instructions(record, embedding_text)
OpenAI.chat_stream(messages, on_chunk: callback, instructions: instructions)
end
defp build_instructions(%Record{} = record, embedding_text) do
context =
case embedding_text do
nil -> basic_context(record)
"" -> basic_context(record)
text -> text
end
"""
You are a knowledgeable music assistant. Answer questions about the album \
the user is currently viewing. Use the provided album information as your \
primary reference, and use web search to find additional up-to-date \
information when helpful. Be concise and accurate. When unsure, say so.
Album information:
#{context}
"""
end
defp basic_context(%Record{} = record) do
artist_names = Record.artist_names(record)
genres = Enum.join(record.genres || [], ", ")
"""
Album: #{record.title}
Artists: #{artist_names}
Genres: #{genres}
Released: #{record.release_date || "Unknown"}
Type: #{record.type}
Format: #{record.format}
"""
|> String.trim()
end
end