darkfire514's picture
Upload 581 files
4fc4790 verified
raw
history blame contribute delete
283 Bytes
import OpenClawKit
import Foundation
enum ChatPayloadDecoding {
static func decode<T: Decodable>(_ payload: AnyCodable, as _: T.Type = T.self) throws -> T {
let data = try JSONEncoder().encode(payload)
return try JSONDecoder().decode(T.self, from: data)
}
}