12 lines
171 B
Swift
12 lines
171 B
Swift
//
|
|
// Created by Adam Rush - OpenAISwift
|
|
//
|
|
|
|
import Foundation
|
|
|
|
struct Instruction: Encodable {
|
|
let instruction: String
|
|
let model: String
|
|
let input: String
|
|
}
|