gpt-storyteller/src/context_builders/generic_builder.cr

7 lines
112 B
Crystal

module ContextBuilder
abstract class GenericContextBuilder
abstract def build(prompt : Prompt)
end
end