We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e32c9b2 commit 7c42276Copy full SHA for 7c42276
README.md
@@ -76,7 +76,7 @@ defmodule ChatLive do
76
77
def handle_info(:chat_completion, socket) do
78
with {:ok, response} <- HyperLLM.Chat.completion(socket.assigns.chat) do
79
- chat = HyperLLM.Chat.append(socket.assigns.chat, response)
+ chat = HyperLLM.Chat.append(socket.assigns.chat, :assistant, response)
80
{:noreply, socket |> assign(chat: chat)}
81
end
82
mix.exs
@@ -2,7 +2,7 @@ defmodule HyperLLM.MixProject do
2
use Mix.Project
3
4
@version "0.0.1"
5
- @source_url "https://github.com/cgarvis/hyper-llm"
+ @source_url "https://github.com/cgarvis/hyper_llm"
6
7
def project do
8
[
0 commit comments