├── .gitignore ├── .tool-versions ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── ai_template.rb ├── ai_templates ├── determine_best_link_url.txt ├── instructions_to_commands.txt ├── overall_best_answer.txt ├── page_command_question.txt └── summarize_session.txt ├── commander.rb ├── html_cleaner.rb └── run.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jheitzeb/ruby-gpt3-commander/HEAD/.gitignore -------------------------------------------------------------------------------- /.tool-versions: -------------------------------------------------------------------------------- 1 | ruby 2.6.8 2 | nodejs 16.14.0 -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jheitzeb/ruby-gpt3-commander/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jheitzeb/ruby-gpt3-commander/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jheitzeb/ruby-gpt3-commander/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jheitzeb/ruby-gpt3-commander/HEAD/README.md -------------------------------------------------------------------------------- /ai_template.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jheitzeb/ruby-gpt3-commander/HEAD/ai_template.rb -------------------------------------------------------------------------------- /ai_templates/determine_best_link_url.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jheitzeb/ruby-gpt3-commander/HEAD/ai_templates/determine_best_link_url.txt -------------------------------------------------------------------------------- /ai_templates/instructions_to_commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jheitzeb/ruby-gpt3-commander/HEAD/ai_templates/instructions_to_commands.txt -------------------------------------------------------------------------------- /ai_templates/overall_best_answer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jheitzeb/ruby-gpt3-commander/HEAD/ai_templates/overall_best_answer.txt -------------------------------------------------------------------------------- /ai_templates/page_command_question.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jheitzeb/ruby-gpt3-commander/HEAD/ai_templates/page_command_question.txt -------------------------------------------------------------------------------- /ai_templates/summarize_session.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jheitzeb/ruby-gpt3-commander/HEAD/ai_templates/summarize_session.txt -------------------------------------------------------------------------------- /commander.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jheitzeb/ruby-gpt3-commander/HEAD/commander.rb -------------------------------------------------------------------------------- /html_cleaner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jheitzeb/ruby-gpt3-commander/HEAD/html_cleaner.rb -------------------------------------------------------------------------------- /run.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jheitzeb/ruby-gpt3-commander/HEAD/run.rb --------------------------------------------------------------------------------