Skip to content

🔧 設定追加(chatgpt_elaborate.rb): 応答の最大トークン数、最大待ち時間、温度のデフォルト値を設定可能にしました #67

🔧 設定追加(chatgpt_elaborate.rb): 応答の最大トークン数、最大待ち時間、温度のデフォルト値を設定可能にしました

🔧 設定追加(chatgpt_elaborate.rb): 応答の最大トークン数、最大待ち時間、温度のデフォルト値を設定可能にしました #67

Workflow file for this run

name: ubuntu
on: [push, pull_request]
jobs:
build:
name: build ${{ matrix.ruby }}
strategy:
matrix:
ruby: [ '3.3', '3.2', '3.1', '3.0' ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Install dependencies
run: |
bundle install
- name: Run test
run: bundle exec rake spec