Skip to content

fix(anthropic): multi-function calling format #340

fix(anthropic): multi-function calling format

fix(anthropic): multi-function calling format #340

Workflow file for this run

name: Code Style
on:
[ push, pull_request ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install deps
run: pip install "black[jupyter]" isort
- name: Ensure code is blackified
run: black . --check --diff
- name: Ensure imports are sorted
run: isort . --check --diff