Skip to content

Commit

Permalink
Bug fix related to SSE
Browse files Browse the repository at this point in the history
  • Loading branch information
polterguy committed Sep 25, 2023
1 parent 5892a00 commit 1eec3b6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion backend/backend.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

<ItemGroup>
<PackageReference Include="magic.lambda.system" Version="16.7.0" />
<PackageReference Include="magic.library" Version="16.8.0" />
<PackageReference Include="magic.library" Version="16.8.4" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="6.0.0" />
</ItemGroup>

Expand Down
1 change: 1 addition & 0 deletions backend/files/system/openai/magic.startup/magic.ai.chat.hl
Original file line number Diff line number Diff line change
Expand Up @@ -343,6 +343,7 @@ select prompt, max(completion) as completion
headers
Authorization:x:@.token
Content-Type:application/json
Accept:text/event-stream
payload
model:x:@.arguments/*/model
max_tokens:x:@.arguments/*/max_tokens
Expand Down
2 changes: 1 addition & 1 deletion backend/slots/Version.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public class Version : ISlot
/// <param name="input">Parameters passed from signaler</param>
public void Signal(ISignaler signaler, Node input)
{
input.Value = "v16.8.0";
input.Value = "v16.8.4";
}
}
}

0 comments on commit 1eec3b6

Please sign in to comment.