-
Notifications
You must be signed in to change notification settings - Fork 111
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
19 changed files
with
189 additions
and
201 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
name: Lint / Test / Publish | ||
|
||
on: | ||
push: | ||
branches: ["main"] | ||
|
||
# We only deploy on tags and main branch | ||
tags: | ||
# Only run on tags that match the following regex | ||
# This will match tags like 1.0.0, 1.0.1, etc. | ||
- "[0-9]+.[0-9]+.[0-9]+" | ||
|
||
# Lint and test on pull requests | ||
pull_request: | ||
|
||
jobs: | ||
lint_and_test: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
python-version: ["3.9", "3.10", "3.11", "3.12"] | ||
steps: | ||
# Checkout the repository | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
# Set python version to 3.11 | ||
- name: set python version | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
|
||
# Install Build stuff | ||
- name: Install Dependencies | ||
run: | | ||
pip install poetry \ | ||
&& poetry config virtualenvs.create false \ | ||
&& poetry install | ||
# Ruff | ||
- name: Ruff check | ||
run: | | ||
poetry run ruff check . | ||
- name: Ruff check | ||
run: | | ||
poetry run ruff format . --check | ||
# Mypy | ||
- name: Mypy Check | ||
run: | | ||
poetry run mypy . | ||
# Tests | ||
- name: Run Tests | ||
run: | | ||
poetry run pytest . | ||
publish: | ||
if: startsWith(github.ref, 'refs/tags') | ||
runs-on: ubuntu-latest | ||
needs: lint_and_test | ||
steps: | ||
# Checkout the repository | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
# Set python version to 3.11 | ||
- name: set python version | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: 3.11 | ||
|
||
# Install Build stuff | ||
- name: Install Dependencies | ||
run: | | ||
pip install poetry \ | ||
&& poetry config virtualenvs.create false \ | ||
&& poetry install | ||
# build package using poetry | ||
- name: Build Package | ||
run: | | ||
poetry build | ||
# Publish to PyPi | ||
- name: Pypi publish | ||
run: | | ||
poetry config pypi-token.pypi ${{ secrets.PYPI_TOKEN }} | ||
poetry publish |
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "mistralai" | ||
version = "0.0.1" | ||
version = "0.2.0" | ||
description = "" | ||
authors = ["Bam4d <[email protected]>"] | ||
readme = "README.md" | ||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
import os | ||
import posixpath | ||
import time | ||
from json import JSONDecodeError | ||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
|
||
|
||
RETRY_STATUS_CODES = {429, 500, 502, 503, 504} | ||
|
||
ENDPOINT = "https://api.mistral.ai" |
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
from unittest import mock | ||
|
||
import pytest | ||
from mistralai.async_client import MistralAsyncClient | ||
from mistralai.client import MistralClient | ||
|
||
|
||
@pytest.fixture() | ||
def client(): | ||
client = MistralClient(api_key="test_api_key") | ||
client._client = mock.MagicMock() | ||
return client | ||
|
||
|
||
@pytest.fixture() | ||
def async_client(): | ||
client = MistralAsyncClient(api_key="test_api_key") | ||
client._client = mock.AsyncMock() | ||
return client |
Oops, something went wrong.