Skip to content
Snippets Groups Projects

Create initial Tanuki bot api endpoint

Merged Terri Chu requested to merge tchu-bot-create-new-api into master
Compare and Show latest version
1 file
+ 1
3
Compare changes
  • Side-by-side
  • Inline
+ 1
3
# frozen_string_literal: true
namespace :llm do
post 'tanuki_bot/ask' => 'tanuki_bot#ask', as: :tanuki_bot_ask, constraints: { format: :json }
end
post 'tanuki_bot/ask' => 'llm/tanuki_bot#ask', as: :tanuki_bot_ask, constraints: { format: :json }
Loading