Move all chat related code under chats
This commit is contained in:
@@ -1,9 +1,9 @@
|
||||
defmodule MusicLibrary.ArtistChat do
|
||||
defmodule MusicLibrary.Chats.ArtistChat do
|
||||
@moduledoc """
|
||||
Chat implementation for artists using OpenAI streaming with Wikipedia context.
|
||||
"""
|
||||
|
||||
@behaviour MusicLibrary.Chat
|
||||
@behaviour MusicLibrary.Chats.StreamProvider
|
||||
|
||||
alias MusicLibrary.Artists.ArtistInfo
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
defmodule MusicLibrary.RecordChat do
|
||||
defmodule MusicLibrary.Chats.RecordChat do
|
||||
@moduledoc """
|
||||
Chat implementation for records using OpenAI streaming with web search.
|
||||
"""
|
||||
|
||||
@behaviour MusicLibrary.Chat
|
||||
@behaviour MusicLibrary.Chats.StreamProvider
|
||||
|
||||
alias MusicLibrary.Records.Record
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
defmodule MusicLibrary.Chat do
|
||||
defmodule MusicLibrary.Chats.StreamProvider do
|
||||
@moduledoc """
|
||||
Behaviour for streaming AI chat with entity-specific context.
|
||||
"""
|
||||
Reference in New Issue
Block a user