Files
cheetah/OpenAISwift/Models/Instruction.swift
2023-03-26 18:42:42 -04:00

12 lines
171 B
Swift

//
// Created by Adam Rush - OpenAISwift
//
import Foundation
struct Instruction: Encodable {
let instruction: String
let model: String
let input: String
}