Skip to content

Commit 7c42276

Browse files
committed
doc: fix hex link to github
1 parent e32c9b2 commit 7c42276

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ defmodule ChatLive do
7676

7777
def handle_info(:chat_completion, socket) do
7878
with {:ok, response} <- HyperLLM.Chat.completion(socket.assigns.chat) do
79-
chat = HyperLLM.Chat.append(socket.assigns.chat, response)
79+
chat = HyperLLM.Chat.append(socket.assigns.chat, :assistant, response)
8080
{:noreply, socket |> assign(chat: chat)}
8181
end
8282
end

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ defmodule HyperLLM.MixProject do
22
use Mix.Project
33

44
@version "0.0.1"
5-
@source_url "https://github.com/cgarvis/hyper-llm"
5+
@source_url "https://github.com/cgarvis/hyper_llm"
66

77
def project do
88
[

0 commit comments

Comments
 (0)