gpt-storyteller/src/builders/generic.cr

7 lines
97 B
Crystal
Raw Normal View History

2023-04-18 13:16:32 +00:00
module Builder
abstract class PromptGeneric
abstract def build(prompt : Prompt)
end
2023-04-11 08:42:17 +00:00
end