mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-06 17:40:44 +00:00
fix: restore main ci and speed tests
This commit is contained in:
@@ -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]
|
||||
|
||||
Reference in New Issue
Block a user