Doesn't work with DeepSeek: UnprocessableEntityError: Failed to deserialize the JSON body into the target type
#283
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: gptme-bot | |
on: | |
issue_comment: | |
types: [created] | |
permissions: write-all | |
jobs: | |
run-bot: | |
runs-on: ubuntu-latest | |
steps: | |
# needed to run the action in the same repo | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Run gptme-bot action | |
uses: ./.github/actions/bot | |
with: | |
model: 'anthropic/claude-3-5-sonnet-20240620' | |
openai_api_key: ${{ secrets.OPENAI_API_KEY }} | |
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }} | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
allowlist: "ErikBjare" |