A Zulip bot agent to sit in our Black Sun. Ever evolving
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add Opus 4.5 and 4.1 model types, use Opus 4.5 in poe

Update ocaml-claudeio bindings with new Opus model variants from the
Python SDK: Opus_4_5 (claude-opus-4-5) and Opus_4_1 (claude-opus-4-1).
Switch poe bot to use Opus 4.5 for both message handling and changelog
generation.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>

+2 -2
+1 -1
lib/changelog.ml
··· 84 84 let create_claude_client ~sw ~proc ~clock = 85 85 let options = 86 86 Claude.Options.default 87 - |> Claude.Options.with_model `Opus_4 87 + |> Claude.Options.with_model `Opus_4_5 88 88 |> Claude.Options.with_permission_mode Claude.Permissions.Mode.Bypass_permissions 89 89 |> Claude.Options.with_allowed_tools [] 90 90 in
+1 -1
lib/handler.ml
··· 56 56 let create_claude_client env = 57 57 let options = 58 58 Claude.Options.default 59 - |> Claude.Options.with_model `Sonnet_4_5 59 + |> Claude.Options.with_model `Opus_4_5 60 60 |> Claude.Options.with_permission_mode Claude.Permissions.Mode.Bypass_permissions 61 61 |> Claude.Options.with_allowed_tools [ "Read"; "Glob"; "Grep" ] 62 62 |> Claude.Options.with_append_system_prompt