Metadata-Version: 2.1
Name: ivycheck
Version: 0.11.17
Summary: IvyCheck Python Client SDK
Home-page: https://github.com/ivycheck/ivycheck-python.git
Author: IvyCheck
License: UNKNOWN
Platform: UNKNOWN
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: certifi>=2023.7.22
Requires-Dist: charset-normalizer>=3.2.0
Requires-Dist: dataclasses-json>=0.6.4
Requires-Dist: idna>=3.4
Requires-Dist: jsonpath-python>=1.0.6
Requires-Dist: marshmallow>=3.19.0
Requires-Dist: mypy-extensions>=1.0.0
Requires-Dist: packaging>=23.1
Requires-Dist: python-dateutil>=2.8.2
Requires-Dist: requests>=2.31.0
Requires-Dist: six>=1.16.0
Requires-Dist: typing-inspect>=0.9.0
Requires-Dist: typing-extensions>=4.7.1
Requires-Dist: urllib3>=1.26.18
Provides-Extra: dev
Requires-Dist: pylint==3.1.0; extra == "dev"

# IvyCheck-SDK

<div align="left">
    <a href="https://speakeasyapi.dev/"><img src="https://custom-icon-badges.demolab.com/badge/-Built%20By%20Speakeasy-212015?style=for-the-badge&logoColor=FBE331&logo=speakeasy&labelColor=545454" /></a>
    <a href="https://opensource.org/licenses/MIT">
        <img src="https://img.shields.io/badge/License-MIT-blue.svg" style="width: 100px; height: 28px;" />
    </a>
</div>

<!-- Start Summary [summary] -->
## Summary


<!-- End Summary [summary] -->

<!-- Start Table of Contents [toc] -->
## Table of Contents
<!-- $toc-max-depth=2 -->
* [IvyCheck-SDK](https://github.com/ivycheck/ivycheck-python/blob/master/#ivycheck-sdk)
  * [SDK Installation](https://github.com/ivycheck/ivycheck-python/blob/master/#sdk-installation)
  * [SDK Example Usage](https://github.com/ivycheck/ivycheck-python/blob/master/#sdk-example-usage)
  * [Available Resources and Operations](https://github.com/ivycheck/ivycheck-python/blob/master/#available-resources-and-operations)
  * [Error Handling](https://github.com/ivycheck/ivycheck-python/blob/master/#error-handling)
  * [Custom HTTP Client](https://github.com/ivycheck/ivycheck-python/blob/master/#custom-http-client)
  * [Authentication](https://github.com/ivycheck/ivycheck-python/blob/master/#authentication)
* [Development](https://github.com/ivycheck/ivycheck-python/blob/master/#development)
  * [Maturity](https://github.com/ivycheck/ivycheck-python/blob/master/#maturity)
  * [Contributions](https://github.com/ivycheck/ivycheck-python/blob/master/#contributions)

<!-- End Table of Contents [toc] -->

<!-- Start SDK Installation [installation] -->
## SDK Installation

The SDK can be installed using the *pip* package manager, with dependencies and metadata stored in the `setup.py` file.

```bash
pip install ivycheck
```
<!-- End SDK Installation [installation] -->

## SDK Example Usage

### Example

```python
import ivycheck

ivy = ivycheck.IvyCheck(
    api_key="<YOUR_TOKEN_HERE>",
)

res = ivy.checks.hallucination(response="It is sunny outside", context="It is rainig cats and dogs")
# CheckResult(passed=False, score=0.9992709300131537, message='Hallucination detected')

```

<!-- No SDK Example Usage [usage] -->

<!-- Start Available Resources and Operations [operations] -->
## Available Resources and Operations

<details open>
<summary>Available methods</summary>

### [checks](https://github.com/ivycheck/ivycheck-python/blob/master/docs/sdks/checks/README.md)

* [hallucination](https://github.com/ivycheck/ivycheck-python/blob/master/docs/sdks/checks/README.md#hallucination) - Hallucination
* [pii](https://github.com/ivycheck/ivycheck-python/blob/master/docs/sdks/checks/README.md#pii) - Pii
* [prompt_injection](https://github.com/ivycheck/ivycheck-python/blob/master/docs/sdks/checks/README.md#prompt_injection) - Prompt Injection


</details>
<!-- End Available Resources and Operations [operations] -->

<!-- Start Error Handling [errors] -->
## Error Handling

Handling errors in this SDK should largely match your expectations. All operations return a response object or raise an exception.

By default, an API error will raise a models.SDKError exception, which has the following properties:

| Property        | Type             | Description           |
|-----------------|------------------|-----------------------|
| `.status_code`  | *int*            | The HTTP status code  |
| `.message`      | *str*            | The error message     |
| `.raw_response` | *httpx.Response* | The raw HTTP response |
| `.body`         | *str*            | The response content  |

When custom error responses are specified for an operation, the SDK may also raise their associated exception. You can refer to respective *Errors* tables in SDK docs for more details on possible exception types for each operation. For example, the `hallucination` method may raise the following exceptions:

| Error Type                 | Status Code | Content Type     |
| -------------------------- | ----------- | ---------------- |
| models.HTTPValidationError | 422         | application/json |
| models.SDKError            | 4XX, 5XX    | \*/\*            |

### Example

```python
import ivycheck
from ivycheck import models

s = ivycheck.IvyCheck(
    api_key='<YOUR_BEARER_TOKEN_HERE>',
)

res = None
try:
    res = s.checks.hallucination(response='<value>', context='<value>')

except models.HTTPValidationError as e:
    # handle exception
    raise(e)
except models.SDKError as e:
    # handle exception
    raise(e)

if res.check_result is not None:
    # handle response
    pass

```
<!-- End Error Handling [errors] -->
<!-- No Server Selection [server] -->

<!-- Start Custom HTTP Client [http-client] -->
## Custom HTTP Client

The Python SDK makes API calls using the [requests](https://pypi.org/project/requests/) HTTP library.  In order to provide a convenient way to configure timeouts, cookies, proxies, custom headers, and other low-level configuration, you can initialize the SDK client with a custom `requests.Session` object.

For example, you could specify a header for every request that this sdk makes as follows:
```python
import ivycheck
import requests

http_client = requests.Session()
http_client.headers.update({'x-custom-header': 'someValue'})
s = ivycheck.IvyCheck(client=http_client)
```
<!-- End Custom HTTP Client [http-client] -->

<!-- Start Authentication [security] -->
## Authentication

### Per-Client Security Schemes

This SDK supports the following security scheme globally:

| Name      | Type | Scheme      |
| --------- | ---- | ----------- |
| `api_key` | http | HTTP Bearer |

To authenticate with the API the `api_key` parameter must be set when initializing the SDK client instance. For example:
```python
import ivycheck

s = ivycheck.IvyCheck(
    api_key='<YOUR_BEARER_TOKEN_HERE>',
)


res = s.checks.hallucination(response='<value>', context='<value>')

if res.check_result is not None:
    # handle response
    pass

```
<!-- End Authentication [security] -->

<!-- Placeholder for Future Speakeasy SDK Sections -->

# Development

## Maturity

This SDK is in beta, and there may be breaking changes between versions without a major version update. Therefore, we recommend pinning usage
to a specific package version. This way, you can install the same version each time without breaking changes unless you are intentionally
looking for the latest version.

## Contributions

While we value open-source contributions to this SDK, this library is generated programmatically.
Feel free to open a PR or a Github issue as a proof of concept and we'll do our best to include it in a future release!

### SDK Created by [Speakeasy](https://docs.speakeasyapi.dev/docs/using-speakeasy/client-sdks)


