gpt-storyteller/src/parsers/request.cr

10 lines
111 B
Crystal
Raw Normal View History

2023-04-11 08:42:17 +00:00
2023-04-18 13:16:32 +00:00
module Parser
class PromptRequest
getter prompt
2023-04-11 08:42:17 +00:00
2023-04-18 13:16:32 +00:00
def initialize(@prompt = prompt)
end
2023-04-11 08:42:17 +00:00
end
end