gpt-storyteller/src/config.cr

15 lines
348 B
Crystal

require "./openai_config"
class AppConfig
property input_file = STDIN
property input_file_path = ""
property output_file = STDOUT
property output_file_path = ""
property past_characters_limit = 1000
property use_color = true
property make_request = true
property verbose = false
property gpt_config = AIUtils::GptConfig.new
end