gpt-storyteller/src/parsers/generic.cr

6 lines
93 B
Crystal
Raw Normal View History

2023-04-18 15:16:32 +02:00
module Parser
abstract class PromptGenericParser
abstract def parse : Prompt
end
2023-04-11 10:42:17 +02:00
end