Venice's API doesn't support certain OpenAI-compatible parameters that Clawdbot sends by default: - `store`: Venice returns HTTP 400 with no body when this is present - `developer` role: Not supported by Venice's API This adds VENICE_COMPAT settings (supportsStore: false, supportsDeveloperRole: false) to all Venice model definitions, both from the static catalog and dynamically discovered models. Fixes issues reported in PR #1666 where users experienced silent failures (HTTP 400, no body) when using Venice models. Co-authored-by: jonisjongithub <jonisjongithub@users.noreply.github.com> Co-authored-by: Clawdbot <bot@clawd.bot>
30 lines
1.1 KiB
Swift
30 lines
1.1 KiB
Swift
import AppKit
|
|
import SwiftUI
|
|
|
|
/// Hosts arbitrary SwiftUI content as an AppKit view so it can be embedded in a native `NSMenuItem.view`.
|
|
///
|
|
/// SwiftUI `MenuBarExtraStyle.menu` aggressively simplifies many view hierarchies into a title + image.
|
|
/// Wrapping the content in an `NSViewRepresentable` forces AppKit-backed menu item rendering.
|
|
struct MenuHostedItem: NSViewRepresentable {
|
|
let width: CGFloat
|
|
let rootView: AnyView
|
|
|
|
func makeNSView(context _: Context) -> NSHostingView<AnyView> {
|
|
let hosting = NSHostingView(rootView: self.rootView)
|
|
self.applySizing(to: hosting)
|
|
return hosting
|
|
}
|
|
|
|
func updateNSView(_ nsView: NSHostingView<AnyView>, context _: Context) {
|
|
nsView.rootView = self.rootView
|
|
self.applySizing(to: nsView)
|
|
}
|
|
|
|
private func applySizing(to hosting: NSHostingView<AnyView>) {
|
|
let width = max(1, self.width)
|
|
hosting.frame.size.width = width
|
|
let fitting = hosting.fittingSize
|
|
hosting.frame = NSRect(origin: .zero, size: NSSize(width: width, height: fitting.height))
|
|
}
|
|
}
|