fix: restore main ci and speed tests

This commit is contained in:
Peter Steinberger
2026-04-28 05:31:56 +01:00
parent 055127425f
commit b8c44bfc82
11 changed files with 53 additions and 16 deletions

View File

@@ -3185,7 +3185,19 @@ public struct ModelChoice: Codable, Sendable {
}
}
public struct ModelsListParams: Codable, Sendable {}
public struct ModelsListParams: Codable, Sendable {
public let view: AnyCodable?
public init(
view: AnyCodable?)
{
self.view = view
}
private enum CodingKeys: String, CodingKey {
case view
}
}
public struct ModelsListResult: Codable, Sendable {
public let models: [ModelChoice]