gpt-storyteller/src/builders/generic.cr

7 lines
97 B
Crystal
Raw Normal View History

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