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>
46 lines
1.9 KiB
Swift
46 lines
1.9 KiB
Swift
import Foundation
|
|
import Testing
|
|
@testable import Clawdbot
|
|
|
|
@Suite struct NodeManagerPathsTests {
|
|
private func makeTempDir() throws -> URL {
|
|
let base = URL(fileURLWithPath: NSTemporaryDirectory(), isDirectory: true)
|
|
let dir = base.appendingPathComponent(UUID().uuidString, isDirectory: true)
|
|
try FileManager().createDirectory(at: dir, withIntermediateDirectories: true)
|
|
return dir
|
|
}
|
|
|
|
private func makeExec(at path: URL) throws {
|
|
try FileManager().createDirectory(
|
|
at: path.deletingLastPathComponent(),
|
|
withIntermediateDirectories: true)
|
|
FileManager().createFile(atPath: path.path, contents: Data("echo ok\n".utf8))
|
|
try FileManager().setAttributes([.posixPermissions: 0o755], ofItemAtPath: path.path)
|
|
}
|
|
|
|
@Test func fnmNodeBinsPreferNewestInstalledVersion() throws {
|
|
let home = try self.makeTempDir()
|
|
|
|
let v20Bin = home
|
|
.appendingPathComponent(".local/share/fnm/node-versions/v20.19.5/installation/bin/node")
|
|
let v25Bin = home
|
|
.appendingPathComponent(".local/share/fnm/node-versions/v25.1.0/installation/bin/node")
|
|
try self.makeExec(at: v20Bin)
|
|
try self.makeExec(at: v25Bin)
|
|
|
|
let bins = CommandResolver._testNodeManagerBinPaths(home: home)
|
|
#expect(bins.first == v25Bin.deletingLastPathComponent().path)
|
|
#expect(bins.contains(v20Bin.deletingLastPathComponent().path))
|
|
}
|
|
|
|
@Test func ignoresEntriesWithoutNodeExecutable() throws {
|
|
let home = try self.makeTempDir()
|
|
let missingNodeBin = home
|
|
.appendingPathComponent(".local/share/fnm/node-versions/v99.0.0/installation/bin")
|
|
try FileManager().createDirectory(at: missingNodeBin, withIntermediateDirectories: true)
|
|
|
|
let bins = CommandResolver._testNodeManagerBinPaths(home: home)
|
|
#expect(!bins.contains(missingNodeBin.path))
|
|
}
|
|
}
|