gpt-storyteller/src/parsers/generic.cr
2023-04-18 15:16:32 +02:00

5 lines
93 B
Crystal

module Parser
abstract class PromptGenericParser
abstract def parse : Prompt
end
end