From d71c6f8c5955e8a9861e3f3957b293a369aac954 Mon Sep 17 00:00:00 2001 From: Ben Sima Date: Fri, 3 May 2024 22:34:10 -0400 Subject: Switch to nixpkgs-23.11, ghc 9.6.3 This brings a bunch of improvements. I got rid of some custom packages, I can now build exllama without using a non-default cuda version. Oh yeah and I get to use GHC 9.6.2 now, a huge upgrade from 9.4. Unfortunately I also updated ormolu and some unrelated formatting changed, but that's life I guess. --- Biz/Que/Host.hs | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'Biz/Que') diff --git a/Biz/Que/Host.hs b/Biz/Que/Host.hs index 79254ad..f1b986c 100644 --- a/Biz/Que/Host.hs +++ b/Biz/Que/Host.hs @@ -127,25 +127,25 @@ data Paths path = Paths dash :: path :- "_" - :> "dash" - :> Get '[JSON] Ques, + :> "dash" + :> Get '[JSON] Ques, getQue :: path :- Capture "ns" Text - :> Capture "quename" Text - :> Get '[PlainText, HTML, OctetStream] Message, + :> Capture "quename" Text + :> Get '[PlainText, HTML, OctetStream] Message, getStream :: path :- Capture "ns" Text - :> Capture "quename" Text - :> "stream" - :> StreamGet NoFraming OctetStream (SourceIO Message), + :> Capture "quename" Text + :> "stream" + :> StreamGet NoFraming OctetStream (SourceIO Message), putQue :: path :- Capture "ns" Text - :> Capture "quepath" Text - :> ReqBody '[PlainText, HTML, OctetStream] Text - :> Post '[PlainText, HTML, OctetStream] NoContent + :> Capture "quepath" Text + :> ReqBody '[PlainText, HTML, OctetStream] Text + :> Post '[PlainText, HTML, OctetStream] NoContent } deriving (Generic) @@ -183,7 +183,7 @@ paths _ = |> str |> Go.write q >> Go.read q -- flush the que, otherwise msgs never clear - |> liftIO + |> liftIO -- TODO: detect number of readers, respond with "sent to N readers" or -- "no readers, msg lost" >> pure NoContent -- cgit v1.2.3