diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 19c3fdc1..0b772396 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -1,10 +1,10 @@ name: test on: + push: + branches: + - main pull_request: - paths-ignore: - - 'examples/**' - - '**/README.md' jobs: test: diff --git a/examples/create.py b/examples/create.py index dfc9094f..14967a98 100755 --- a/examples/create.py +++ b/examples/create.py @@ -2,9 +2,9 @@ client = Client() response = client.create( - model='my-assistant', - from_='llama3.2', - system="You are mario from Super Mario Bros.", - stream=False + model='my-assistant', + from_='llama3.2', + system='You are mario from Super Mario Bros.', + stream=False, ) print(response.status)