raccoonai 0.1.0a8__tar.gz → 0.1.0a19__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {raccoonai-0.1.0a8 → raccoonai-0.1.0a19}/.gitignore +0 -1
- raccoonai-0.1.0a19/.release-please-manifest.json +3 -0
- raccoonai-0.1.0a19/CHANGELOG.md +286 -0
- {raccoonai-0.1.0a8 → raccoonai-0.1.0a19}/CONTRIBUTING.md +1 -2
- {raccoonai-0.1.0a8 → raccoonai-0.1.0a19}/PKG-INFO +74 -10
- {raccoonai-0.1.0a8 → raccoonai-0.1.0a19}/README.md +66 -5
- {raccoonai-0.1.0a8 → raccoonai-0.1.0a19}/SECURITY.md +2 -2
- raccoonai-0.1.0a19/api.md +98 -0
- {raccoonai-0.1.0a8 → raccoonai-0.1.0a19}/bin/check-release-environment +1 -1
- raccoonai-0.1.0a19/bin/publish-pypi +6 -0
- {raccoonai-0.1.0a8 → raccoonai-0.1.0a19}/pyproject.toml +67 -8
- {raccoonai-0.1.0a8 → raccoonai-0.1.0a19}/requirements-dev.lock +40 -6
- {raccoonai-0.1.0a8 → raccoonai-0.1.0a19}/requirements.lock +35 -4
- {raccoonai-0.1.0a8 → raccoonai-0.1.0a19}/src/raccoonai/__init__.py +10 -2
- {raccoonai-0.1.0a8 → raccoonai-0.1.0a19}/src/raccoonai/_base_client.py +273 -342
- {raccoonai-0.1.0a8 → raccoonai-0.1.0a19}/src/raccoonai/_client.py +17 -27
- {raccoonai-0.1.0a8 → raccoonai-0.1.0a19}/src/raccoonai/_compat.py +48 -48
- {raccoonai-0.1.0a8 → raccoonai-0.1.0a19}/src/raccoonai/_files.py +4 -4
- {raccoonai-0.1.0a8 → raccoonai-0.1.0a19}/src/raccoonai/_models.py +88 -54
- {raccoonai-0.1.0a8 → raccoonai-0.1.0a19}/src/raccoonai/_qs.py +7 -7
- {raccoonai-0.1.0a8 → raccoonai-0.1.0a19}/src/raccoonai/_response.py +1 -1
- {raccoonai-0.1.0a8 → raccoonai-0.1.0a19}/src/raccoonai/_streaming.py +4 -6
- {raccoonai-0.1.0a8 → raccoonai-0.1.0a19}/src/raccoonai/_types.py +55 -12
- {raccoonai-0.1.0a8 → raccoonai-0.1.0a19}/src/raccoonai/_utils/__init__.py +9 -2
- raccoonai-0.1.0a19/src/raccoonai/_utils/_compat.py +45 -0
- raccoonai-0.1.0a19/src/raccoonai/_utils/_datetime_parse.py +136 -0
- {raccoonai-0.1.0a8 → raccoonai-0.1.0a19}/src/raccoonai/_utils/_proxy.py +4 -1
- raccoonai-0.1.0a19/src/raccoonai/_utils/_resources_proxy.py +24 -0
- {raccoonai-0.1.0a8 → raccoonai-0.1.0a19}/src/raccoonai/_utils/_transform.py +58 -3
- {raccoonai-0.1.0a8 → raccoonai-0.1.0a19}/src/raccoonai/_utils/_typing.py +9 -2
- {raccoonai-0.1.0a8 → raccoonai-0.1.0a19}/src/raccoonai/_utils/_utils.py +14 -7
- {raccoonai-0.1.0a8 → raccoonai-0.1.0a19}/src/raccoonai/_version.py +1 -1
- {raccoonai-0.1.0a8 → raccoonai-0.1.0a19}/src/raccoonai/resources/__init__.py +0 -14
- raccoonai-0.1.0a19/src/raccoonai/resources/fleet/__init__.py +47 -0
- {raccoonai-0.1.0a8/src/raccoonai/resources → raccoonai-0.1.0a19/src/raccoonai/resources/fleet}/extensions.py +18 -23
- raccoonai-0.1.0a19/src/raccoonai/resources/fleet/fleet.py +134 -0
- raccoonai-0.1.0a8/src/raccoonai/resources/fleet.py → raccoonai-0.1.0a19/src/raccoonai/resources/fleet/sessions.py +274 -196
- raccoonai-0.1.0a19/src/raccoonai/resources/lam/__init__.py +33 -0
- {raccoonai-0.1.0a8/src/raccoonai/resources → raccoonai-0.1.0a19/src/raccoonai/resources/lam}/lam.py +103 -238
- raccoonai-0.1.0a19/src/raccoonai/resources/lam/tasks.py +333 -0
- {raccoonai-0.1.0a8 → raccoonai-0.1.0a19}/src/raccoonai/resources/tail/__init__.py +14 -14
- {raccoonai-0.1.0a8 → raccoonai-0.1.0a19}/src/raccoonai/resources/tail/apps.py +6 -9
- raccoonai-0.1.0a19/src/raccoonai/resources/tail/tail.py +134 -0
- raccoonai-0.1.0a19/src/raccoonai/resources/tail/users.py +402 -0
- raccoonai-0.1.0a19/src/raccoonai/types/__init__.py +6 -0
- raccoonai-0.1.0a19/src/raccoonai/types/fleet/__init__.py +16 -0
- {raccoonai-0.1.0a8/src/raccoonai/types → raccoonai-0.1.0a19/src/raccoonai/types/fleet}/extension_all_response.py +1 -1
- {raccoonai-0.1.0a8/src/raccoonai/types → raccoonai-0.1.0a19/src/raccoonai/types/fleet}/extension_get_response.py +1 -2
- {raccoonai-0.1.0a8/src/raccoonai/types → raccoonai-0.1.0a19/src/raccoonai/types/fleet}/extension_upload_params.py +1 -1
- {raccoonai-0.1.0a8/src/raccoonai/types → raccoonai-0.1.0a19/src/raccoonai/types/fleet}/extension_upload_response.py +1 -2
- raccoonai-0.1.0a8/src/raccoonai/types/fleet_sessions_params.py → raccoonai-0.1.0a19/src/raccoonai/types/fleet/session_all_params.py +7 -5
- raccoonai-0.1.0a8/src/raccoonai/types/fleet_sessions_response.py → raccoonai-0.1.0a19/src/raccoonai/types/fleet/session_all_response.py +5 -5
- raccoonai-0.1.0a8/src/raccoonai/types/fleet_create_params.py → raccoonai-0.1.0a19/src/raccoonai/types/fleet/session_create_params.py +16 -11
- raccoonai-0.1.0a8/src/raccoonai/types/fleet_create_response.py → raccoonai-0.1.0a19/src/raccoonai/types/fleet/session_create_response.py +4 -4
- raccoonai-0.1.0a8/src/raccoonai/types/fleet_logs_response.py → raccoonai-0.1.0a19/src/raccoonai/types/fleet/session_logs_response.py +3 -4
- raccoonai-0.1.0a19/src/raccoonai/types/fleet/session_media_response.py +42 -0
- raccoonai-0.1.0a8/src/raccoonai/types/fleet_status_response.py → raccoonai-0.1.0a19/src/raccoonai/types/fleet/session_status_response.py +3 -3
- raccoonai-0.1.0a8/src/raccoonai/types/fleet_terminate_response.py → raccoonai-0.1.0a19/src/raccoonai/types/fleet/session_terminate_response.py +3 -3
- raccoonai-0.1.0a19/src/raccoonai/types/lam/__init__.py +7 -0
- raccoonai-0.1.0a8/src/raccoonai/types/lam_tasks_params.py → raccoonai-0.1.0a19/src/raccoonai/types/lam/task_all_params.py +7 -5
- raccoonai-0.1.0a8/src/raccoonai/types/lam_tasks_response.py → raccoonai-0.1.0a19/src/raccoonai/types/lam/task_all_response.py +5 -5
- raccoonai-0.1.0a19/src/raccoonai/types/lam/task_media_response.py +50 -0
- {raccoonai-0.1.0a8 → raccoonai-0.1.0a19}/src/raccoonai/types/lam_run_params.py +18 -8
- raccoonai-0.1.0a19/src/raccoonai/types/tail/__init__.py +13 -0
- raccoonai-0.1.0a8/src/raccoonai/types/tail_users_params.py → raccoonai-0.1.0a19/src/raccoonai/types/tail/user_all_params.py +3 -3
- raccoonai-0.1.0a8/src/raccoonai/types/tail_users_response.py → raccoonai-0.1.0a19/src/raccoonai/types/tail/user_all_response.py +3 -3
- raccoonai-0.1.0a19/src/raccoonai/types/tail/user_create_params.py +15 -0
- raccoonai-0.1.0a19/src/raccoonai/types/tail/user_create_response.py +21 -0
- raccoonai-0.1.0a8/src/raccoonai/types/tail/auth_status_params.py → raccoonai-0.1.0a19/src/raccoonai/types/tail/user_status_params.py +2 -2
- raccoonai-0.1.0a8/src/raccoonai/types/tail/auth_status_response.py → raccoonai-0.1.0a19/src/raccoonai/types/tail/user_status_response.py +2 -2
- {raccoonai-0.1.0a8/tests/api_resources → raccoonai-0.1.0a19/tests/api_resources/fleet}/test_extensions.py +36 -30
- raccoonai-0.1.0a8/tests/api_resources/test_fleet.py → raccoonai-0.1.0a19/tests/api_resources/fleet/test_sessions.py +214 -137
- raccoonai-0.1.0a19/tests/api_resources/lam/__init__.py +1 -0
- raccoonai-0.1.0a19/tests/api_resources/lam/test_tasks.py +180 -0
- raccoonai-0.1.0a19/tests/api_resources/tail/__init__.py +1 -0
- {raccoonai-0.1.0a8 → raccoonai-0.1.0a19}/tests/api_resources/tail/test_apps.py +3 -1
- raccoonai-0.1.0a19/tests/api_resources/tail/test_users.py +240 -0
- {raccoonai-0.1.0a8 → raccoonai-0.1.0a19}/tests/api_resources/test_lam.py +4 -86
- raccoonai-0.1.0a19/tests/conftest.py +84 -0
- {raccoonai-0.1.0a8 → raccoonai-0.1.0a19}/tests/test_client.py +324 -274
- {raccoonai-0.1.0a8 → raccoonai-0.1.0a19}/tests/test_models.py +132 -25
- {raccoonai-0.1.0a8 → raccoonai-0.1.0a19}/tests/test_transform.py +35 -9
- raccoonai-0.1.0a19/tests/test_utils/test_datetime_parse.py +110 -0
- {raccoonai-0.1.0a8 → raccoonai-0.1.0a19}/tests/test_utils/test_proxy.py +11 -0
- {raccoonai-0.1.0a8 → raccoonai-0.1.0a19}/tests/utils.py +13 -5
- raccoonai-0.1.0a8/.release-please-manifest.json +0 -3
- raccoonai-0.1.0a8/CHANGELOG.md +0 -100
- raccoonai-0.1.0a8/api.md +0 -91
- raccoonai-0.1.0a8/bin/publish-pypi +0 -9
- raccoonai-0.1.0a8/mypy.ini +0 -50
- raccoonai-0.1.0a8/src/raccoonai/resources/tail/auth.py +0 -186
- raccoonai-0.1.0a8/src/raccoonai/resources/tail/tail.py +0 -273
- raccoonai-0.1.0a8/src/raccoonai/types/__init__.py +0 -21
- raccoonai-0.1.0a8/src/raccoonai/types/tail/__init__.py +0 -9
- raccoonai-0.1.0a8/tests/api_resources/tail/test_auth.py +0 -90
- raccoonai-0.1.0a8/tests/api_resources/test_tail.py +0 -98
- raccoonai-0.1.0a8/tests/conftest.py +0 -51
- {raccoonai-0.1.0a8 → raccoonai-0.1.0a19}/LICENSE +0 -0
- {raccoonai-0.1.0a8 → raccoonai-0.1.0a19}/examples/.keep +0 -0
- {raccoonai-0.1.0a8 → raccoonai-0.1.0a19}/noxfile.py +0 -0
- {raccoonai-0.1.0a8 → raccoonai-0.1.0a19}/release-please-config.json +0 -0
- {raccoonai-0.1.0a8 → raccoonai-0.1.0a19}/src/raccoonai/_constants.py +0 -0
- {raccoonai-0.1.0a8 → raccoonai-0.1.0a19}/src/raccoonai/_exceptions.py +0 -0
- {raccoonai-0.1.0a8 → raccoonai-0.1.0a19}/src/raccoonai/_resource.py +0 -0
- {raccoonai-0.1.0a8 → raccoonai-0.1.0a19}/src/raccoonai/_utils/_logs.py +0 -0
- {raccoonai-0.1.0a8 → raccoonai-0.1.0a19}/src/raccoonai/_utils/_reflection.py +0 -0
- {raccoonai-0.1.0a8 → raccoonai-0.1.0a19}/src/raccoonai/_utils/_streams.py +0 -0
- {raccoonai-0.1.0a8 → raccoonai-0.1.0a19}/src/raccoonai/_utils/_sync.py +0 -0
- {raccoonai-0.1.0a8 → raccoonai-0.1.0a19}/src/raccoonai/lib/.keep +0 -0
- {raccoonai-0.1.0a8 → raccoonai-0.1.0a19}/src/raccoonai/py.typed +0 -0
- {raccoonai-0.1.0a8 → raccoonai-0.1.0a19}/src/raccoonai/types/lam_run_response.py +0 -0
- {raccoonai-0.1.0a8 → raccoonai-0.1.0a19}/src/raccoonai/types/tail/app_all_response.py +0 -0
- {raccoonai-0.1.0a8 → raccoonai-0.1.0a19}/src/raccoonai/types/tail/app_linked_params.py +0 -0
- {raccoonai-0.1.0a8 → raccoonai-0.1.0a19}/src/raccoonai/types/tail/app_linked_response.py +0 -0
- {raccoonai-0.1.0a8 → raccoonai-0.1.0a19}/tests/__init__.py +0 -0
- {raccoonai-0.1.0a8 → raccoonai-0.1.0a19}/tests/api_resources/__init__.py +0 -0
- {raccoonai-0.1.0a8/tests/api_resources/tail → raccoonai-0.1.0a19/tests/api_resources/fleet}/__init__.py +0 -0
- {raccoonai-0.1.0a8 → raccoonai-0.1.0a19}/tests/sample_file.txt +0 -0
- {raccoonai-0.1.0a8 → raccoonai-0.1.0a19}/tests/test_deepcopy.py +0 -0
- {raccoonai-0.1.0a8 → raccoonai-0.1.0a19}/tests/test_extract_files.py +0 -0
- {raccoonai-0.1.0a8 → raccoonai-0.1.0a19}/tests/test_files.py +0 -0
- {raccoonai-0.1.0a8 → raccoonai-0.1.0a19}/tests/test_qs.py +0 -0
- {raccoonai-0.1.0a8 → raccoonai-0.1.0a19}/tests/test_required_args.py +0 -0
- {raccoonai-0.1.0a8 → raccoonai-0.1.0a19}/tests/test_response.py +0 -0
- {raccoonai-0.1.0a8 → raccoonai-0.1.0a19}/tests/test_streaming.py +0 -0
- {raccoonai-0.1.0a8 → raccoonai-0.1.0a19}/tests/test_utils/test_typing.py +0 -0
|
@@ -0,0 +1,286 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## 0.1.0-alpha.19 (2025-11-04)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.1.0-alpha.18...v0.1.0-alpha.19](https://github.com/raccoonaihq/raccoonai-python/compare/v0.1.0-alpha.18...v0.1.0-alpha.19)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* clean up environment call outs ([64ab1f8](https://github.com/raccoonaihq/raccoonai-python/commit/64ab1f88832be94991c827eac9b1b6fc5937d28f))
|
|
10
|
+
* **client:** add support for aiohttp ([f55551a](https://github.com/raccoonaihq/raccoonai-python/commit/f55551aae49ad94af24239e0e26f316698021754))
|
|
11
|
+
* **client:** support file upload requests ([124c4c0](https://github.com/raccoonaihq/raccoonai-python/commit/124c4c0cc214e547fa25433053e38cbd7b6338f6))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
* **ci:** correct conditional ([4e4eca9](https://github.com/raccoonaihq/raccoonai-python/commit/4e4eca947c064446b95ded935941af2c19ae59b6))
|
|
17
|
+
* **ci:** release-doctor — report correct token name ([fcbd5d3](https://github.com/raccoonaihq/raccoonai-python/commit/fcbd5d3abd43ef9ee9d2bd3ba2e8731bb02e42be))
|
|
18
|
+
* **client:** don't send Content-Type header on GET requests ([af58369](https://github.com/raccoonaihq/raccoonai-python/commit/af583699fc05b962f33278b1fa0feab3ab495c67))
|
|
19
|
+
* **parsing:** correctly handle nested discriminated unions ([661189a](https://github.com/raccoonaihq/raccoonai-python/commit/661189a2a3d503b66ed2c2f499dce0905987ed10))
|
|
20
|
+
* **parsing:** ignore empty metadata ([6d4bca8](https://github.com/raccoonaihq/raccoonai-python/commit/6d4bca8de4db86ce82c4addbaf599433f374a646))
|
|
21
|
+
* **parsing:** parse extra field types ([3e1aba6](https://github.com/raccoonaihq/raccoonai-python/commit/3e1aba60cb0effd848fbd9412855d568600e7f5c))
|
|
22
|
+
* **tests:** fix: tests which call HTTP endpoints directly with the example parameters ([44715e4](https://github.com/raccoonaihq/raccoonai-python/commit/44715e41f17460b45ae2bf5e18dc35ccfa82fc38))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Chores
|
|
26
|
+
|
|
27
|
+
* **ci:** change upload type ([3b22540](https://github.com/raccoonaihq/raccoonai-python/commit/3b22540f1c3f6144dc7af703cfec8221f983188e))
|
|
28
|
+
* **ci:** only run for pushes and fork pull requests ([c0a2ec3](https://github.com/raccoonaihq/raccoonai-python/commit/c0a2ec355594dd9f609a078b237d44703fd51368))
|
|
29
|
+
* **internal:** bump pinned h11 dep ([ddf8719](https://github.com/raccoonaihq/raccoonai-python/commit/ddf871977794ce8b7208b669ed7a0104fd836d6c))
|
|
30
|
+
* **internal:** codegen related update ([4f91217](https://github.com/raccoonaihq/raccoonai-python/commit/4f91217e8f0584b4e456c12061ad0016637ff2aa))
|
|
31
|
+
* **internal:** codegen related update ([a37625d](https://github.com/raccoonaihq/raccoonai-python/commit/a37625d9889ad5abca5267dcbe11ac38dc79060e))
|
|
32
|
+
* **internal:** codegen related update ([92e2b6a](https://github.com/raccoonaihq/raccoonai-python/commit/92e2b6a93faad0e9d5f5a14fbd8f69aa4f47780e))
|
|
33
|
+
* **internal:** codegen related update ([6a542a6](https://github.com/raccoonaihq/raccoonai-python/commit/6a542a6f2c23a988acc20c73809960418434c5fc))
|
|
34
|
+
* **internal:** codegen related update ([d8e8a73](https://github.com/raccoonaihq/raccoonai-python/commit/d8e8a736f71b694ca9463bce54cce7a1414351b7))
|
|
35
|
+
* **internal:** codegen related update ([902ae5e](https://github.com/raccoonaihq/raccoonai-python/commit/902ae5e0f6b083845b85c4bf293a915a63f5b38c))
|
|
36
|
+
* **internal:** codegen related update ([609e96d](https://github.com/raccoonaihq/raccoonai-python/commit/609e96de49b1fdc8ac4d8a66530e4292c130ee1c))
|
|
37
|
+
* **internal:** fix ruff target version ([cbd2c47](https://github.com/raccoonaihq/raccoonai-python/commit/cbd2c4791e411d3c60afb909a934d641a1aad959))
|
|
38
|
+
* **internal:** update comment in script ([ed19702](https://github.com/raccoonaihq/raccoonai-python/commit/ed19702d3c38a2a5c627d401f16a658d87e61f08))
|
|
39
|
+
* **package:** mark python 3.13 as supported ([64b34a0](https://github.com/raccoonaihq/raccoonai-python/commit/64b34a04c3344d4d2b6c6c8be258f08480f420fb))
|
|
40
|
+
* **project:** add settings file for vscode ([fd70189](https://github.com/raccoonaihq/raccoonai-python/commit/fd70189a623ca46cf2137b6d77e6bde5c21f5cb5))
|
|
41
|
+
* **readme:** fix version rendering on pypi ([c06b9e9](https://github.com/raccoonaihq/raccoonai-python/commit/c06b9e905696a5d15f97088c59f20499b91c7926))
|
|
42
|
+
* **readme:** update badges ([6152d97](https://github.com/raccoonaihq/raccoonai-python/commit/6152d9729ea7bec51e2fac8c04c74b8312f86d88))
|
|
43
|
+
* **tests:** skip some failing tests on the latest python versions ([e508628](https://github.com/raccoonaihq/raccoonai-python/commit/e508628735120437dc1d92e1e5b3f4f34eda2a45))
|
|
44
|
+
* update @stainless-api/prism-cli to v5.15.0 ([6ec9c06](https://github.com/raccoonaihq/raccoonai-python/commit/6ec9c06c7133ebdc9bb723cad5d3e92ce95e2da0))
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
### Documentation
|
|
48
|
+
|
|
49
|
+
* **client:** fix httpx.Timeout documentation reference ([02eccd7](https://github.com/raccoonaihq/raccoonai-python/commit/02eccd75aa5c06a17d8097112d326fbc2de46d94))
|
|
50
|
+
|
|
51
|
+
## 0.1.0-alpha.18 (2025-06-17)
|
|
52
|
+
|
|
53
|
+
Full Changelog: [v0.1.0-alpha.17...v0.1.0-alpha.18](https://github.com/raccoonaihq/raccoonai-python/compare/v0.1.0-alpha.17...v0.1.0-alpha.18)
|
|
54
|
+
|
|
55
|
+
### Features
|
|
56
|
+
|
|
57
|
+
* **client:** add follow_redirects request option ([ead1aa2](https://github.com/raccoonaihq/raccoonai-python/commit/ead1aa29c13d4f033a0168fdeacee20f85fc487a))
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
### Bug Fixes
|
|
61
|
+
|
|
62
|
+
* **client:** correctly parse binary response | stream ([5428452](https://github.com/raccoonaihq/raccoonai-python/commit/5428452fe2a72d1779f18dd5d94f05a790e5d374))
|
|
63
|
+
* **docs/api:** remove references to nonexistent types ([c914c59](https://github.com/raccoonaihq/raccoonai-python/commit/c914c596f8f1269d52ac9e733fe6c0687e48934a))
|
|
64
|
+
* **package:** support direct resource imports ([f3a27ab](https://github.com/raccoonaihq/raccoonai-python/commit/f3a27ab2bb0a836a24f096588509e295677723e3))
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
### Chores
|
|
68
|
+
|
|
69
|
+
* **ci:** enable for pull requests ([b9d4d4a](https://github.com/raccoonaihq/raccoonai-python/commit/b9d4d4ae8d0056704b3a3041d283e65d056709ba))
|
|
70
|
+
* **ci:** fix installation instructions ([a8ca3a5](https://github.com/raccoonaihq/raccoonai-python/commit/a8ca3a501421f8ff560aae6544327a17f737a3f2))
|
|
71
|
+
* **ci:** upload sdks to package manager ([180aa07](https://github.com/raccoonaihq/raccoonai-python/commit/180aa079b0dbe5d9ad507a90ecc86f300c647a7a))
|
|
72
|
+
* **docs:** grammar improvements ([3c7226c](https://github.com/raccoonaihq/raccoonai-python/commit/3c7226cab9643f76ff8478b53ac7e69c05e9a71f))
|
|
73
|
+
* **docs:** remove reference to rye shell ([fdf4e0a](https://github.com/raccoonaihq/raccoonai-python/commit/fdf4e0a89c78828f52bfd3a328b76c5c883eb4b9))
|
|
74
|
+
* **docs:** remove unnecessary param examples ([1e465a4](https://github.com/raccoonaihq/raccoonai-python/commit/1e465a444fdf34a1a55abd7cdb0558520985f701))
|
|
75
|
+
* **internal:** avoid errors for isinstance checks on proxies ([0e03ccf](https://github.com/raccoonaihq/raccoonai-python/commit/0e03ccf60cfcd90fdae07ffb27a83e7acb3455b4))
|
|
76
|
+
* **internal:** codegen related update ([8336f4c](https://github.com/raccoonaihq/raccoonai-python/commit/8336f4c7c9217951d908d9d4b201687bc1578a17))
|
|
77
|
+
* **internal:** update conftest.py ([07c3955](https://github.com/raccoonaihq/raccoonai-python/commit/07c39557bc235720039aab307764faa6bea099b2))
|
|
78
|
+
* **tests:** add tests for httpx client instantiation & proxies ([a9961c3](https://github.com/raccoonaihq/raccoonai-python/commit/a9961c3882797827f7d1b09a2b65f31ce2c7a1e4))
|
|
79
|
+
* **tests:** run tests in parallel ([781ba6d](https://github.com/raccoonaihq/raccoonai-python/commit/781ba6d84ce3459e44b7e56e89f091d9f7db53cc))
|
|
80
|
+
|
|
81
|
+
## 0.1.0-alpha.17 (2025-04-24)
|
|
82
|
+
|
|
83
|
+
Full Changelog: [v0.1.0-alpha.16...v0.1.0-alpha.17](https://github.com/raccoonaihq/raccoonai-python/compare/v0.1.0-alpha.16...v0.1.0-alpha.17)
|
|
84
|
+
|
|
85
|
+
### Bug Fixes
|
|
86
|
+
|
|
87
|
+
* **perf:** optimize some hot paths ([5a0becc](https://github.com/raccoonaihq/raccoonai-python/commit/5a0becc2ea338f48ead2c7593e2727e4636c7991))
|
|
88
|
+
* **perf:** skip traversing types for NotGiven values ([b710b22](https://github.com/raccoonaihq/raccoonai-python/commit/b710b22dd8918404dbf8b3436b0a0a275cbc2c55))
|
|
89
|
+
* **pydantic v1:** more robust ModelField.annotation check ([da858d7](https://github.com/raccoonaihq/raccoonai-python/commit/da858d7536a9b151aa0dbd38e98e30130b1d219e))
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
### Chores
|
|
93
|
+
|
|
94
|
+
* broadly detect json family of content-type headers ([90f94bd](https://github.com/raccoonaihq/raccoonai-python/commit/90f94bd047e0522e4956a99da6248259d0619350))
|
|
95
|
+
* **ci:** add timeout thresholds for CI jobs ([3256eaa](https://github.com/raccoonaihq/raccoonai-python/commit/3256eaa8373c187a67806366fe5d79e28199fdf9))
|
|
96
|
+
* **ci:** only use depot for staging repos ([e50b221](https://github.com/raccoonaihq/raccoonai-python/commit/e50b22110b2bf2b508222589b051b1a94a573a92))
|
|
97
|
+
* **client:** minor internal fixes ([3aae4e2](https://github.com/raccoonaihq/raccoonai-python/commit/3aae4e22e2cb6af2281ea4ab9e6d8381eeed86b2))
|
|
98
|
+
* **internal:** base client updates ([4f2fd7e](https://github.com/raccoonaihq/raccoonai-python/commit/4f2fd7e046b5ceb9d1d133b066a4d299541151b0))
|
|
99
|
+
* **internal:** bump pyright version ([797794a](https://github.com/raccoonaihq/raccoonai-python/commit/797794a5c4d145b64f3f08249e846aa58f95c2de))
|
|
100
|
+
* **internal:** codegen related update ([941d8a6](https://github.com/raccoonaihq/raccoonai-python/commit/941d8a6c82ccb521730d9658059936100e4f38e3))
|
|
101
|
+
* **internal:** expand CI branch coverage ([b33e54c](https://github.com/raccoonaihq/raccoonai-python/commit/b33e54c4795e36cddc163be5d7f634e0c03048ba))
|
|
102
|
+
* **internal:** fix list file params ([795c8f4](https://github.com/raccoonaihq/raccoonai-python/commit/795c8f4980057fe365c08d1e8825e0a94481cf3e))
|
|
103
|
+
* **internal:** import reformatting ([1dae4cf](https://github.com/raccoonaihq/raccoonai-python/commit/1dae4cf04bf1aa5f21013e2de72ef0533c43489f))
|
|
104
|
+
* **internal:** minor formatting changes ([5d2b343](https://github.com/raccoonaihq/raccoonai-python/commit/5d2b3430c3f6ce32aa5478b161767b34896f04cb))
|
|
105
|
+
* **internal:** reduce CI branch coverage ([887e41e](https://github.com/raccoonaihq/raccoonai-python/commit/887e41e985b049f404af0ae9bb9020d2f7231f54))
|
|
106
|
+
* **internal:** refactor retries to not use recursion ([e4bd23e](https://github.com/raccoonaihq/raccoonai-python/commit/e4bd23e645ba1a1607cc16f087f2d7636346fa57))
|
|
107
|
+
* **internal:** slight transform perf improvement ([#68](https://github.com/raccoonaihq/raccoonai-python/issues/68)) ([d5bf5bd](https://github.com/raccoonaihq/raccoonai-python/commit/d5bf5bdb0cc56ac907aa40e93bd2385c5ef7cf66))
|
|
108
|
+
* **internal:** update models test ([0d60312](https://github.com/raccoonaihq/raccoonai-python/commit/0d60312d61e3514827c57e839b60d10fba7d3f39))
|
|
109
|
+
* **internal:** update pyright settings ([b059fbe](https://github.com/raccoonaihq/raccoonai-python/commit/b059fbeaeae96b42303b5b12b92a6f77d5120b8d))
|
|
110
|
+
* slight wording improvement in README ([#69](https://github.com/raccoonaihq/raccoonai-python/issues/69)) ([a99f7da](https://github.com/raccoonaihq/raccoonai-python/commit/a99f7dac1a402c7afe64bcc22e5726931b65cdf0))
|
|
111
|
+
|
|
112
|
+
## 0.1.0-alpha.16 (2025-04-05)
|
|
113
|
+
|
|
114
|
+
Full Changelog: [v0.1.0-alpha.15...v0.1.0-alpha.16](https://github.com/raccoonaihq/raccoonai-python/compare/v0.1.0-alpha.15...v0.1.0-alpha.16)
|
|
115
|
+
|
|
116
|
+
### Chores
|
|
117
|
+
|
|
118
|
+
* **internal:** remove trailing character ([#65](https://github.com/raccoonaihq/raccoonai-python/issues/65)) ([a82b752](https://github.com/raccoonaihq/raccoonai-python/commit/a82b7527085ac2664785a04f481bcb585716528c))
|
|
119
|
+
|
|
120
|
+
## 0.1.0-alpha.15 (2025-03-27)
|
|
121
|
+
|
|
122
|
+
Full Changelog: [v0.1.0-alpha.14...v0.1.0-alpha.15](https://github.com/raccoonaihq/raccoonai-python/compare/v0.1.0-alpha.14...v0.1.0-alpha.15)
|
|
123
|
+
|
|
124
|
+
### Chores
|
|
125
|
+
|
|
126
|
+
* fix typos ([#62](https://github.com/raccoonaihq/raccoonai-python/issues/62)) ([48b308d](https://github.com/raccoonaihq/raccoonai-python/commit/48b308d54385b04e0d7139b81690a81194499310))
|
|
127
|
+
|
|
128
|
+
## 0.1.0-alpha.14 (2025-03-18)
|
|
129
|
+
|
|
130
|
+
Full Changelog: [v0.1.0-alpha.13...v0.1.0-alpha.14](https://github.com/raccoonaihq/raccoonai-python/compare/v0.1.0-alpha.13...v0.1.0-alpha.14)
|
|
131
|
+
|
|
132
|
+
### Features
|
|
133
|
+
|
|
134
|
+
* **api:** api update ([#59](https://github.com/raccoonaihq/raccoonai-python/issues/59)) ([8c3e83c](https://github.com/raccoonaihq/raccoonai-python/commit/8c3e83cc030af8c2dfe01e79676b9b3f80bd3f8b))
|
|
135
|
+
* **api:** update new domain ([#60](https://github.com/raccoonaihq/raccoonai-python/issues/60)) ([89b0074](https://github.com/raccoonaihq/raccoonai-python/commit/89b00747c646dc3ac8dfe84a025ba59aee06bbff))
|
|
136
|
+
|
|
137
|
+
|
|
138
|
+
### Bug Fixes
|
|
139
|
+
|
|
140
|
+
* **ci:** ensure pip is always available ([#56](https://github.com/raccoonaihq/raccoonai-python/issues/56)) ([1317d91](https://github.com/raccoonaihq/raccoonai-python/commit/1317d91a7551ea5e44d56e2538b1f8498cdc3f0e))
|
|
141
|
+
* **ci:** remove publishing patch ([#58](https://github.com/raccoonaihq/raccoonai-python/issues/58)) ([fd0c16a](https://github.com/raccoonaihq/raccoonai-python/commit/fd0c16ab03e82f28591c3fde7b5ed079fe8f0557))
|
|
142
|
+
|
|
143
|
+
## 0.1.0-alpha.13 (2025-03-15)
|
|
144
|
+
|
|
145
|
+
Full Changelog: [v0.1.0-alpha.12...v0.1.0-alpha.13](https://github.com/raccoonaihq/raccoonai-python/compare/v0.1.0-alpha.12...v0.1.0-alpha.13)
|
|
146
|
+
|
|
147
|
+
### Bug Fixes
|
|
148
|
+
|
|
149
|
+
* **types:** handle more discriminated union shapes ([#54](https://github.com/raccoonaihq/raccoonai-python/issues/54)) ([89309c4](https://github.com/raccoonaihq/raccoonai-python/commit/89309c469b5350d7883e9d979ee34af7178ebb11))
|
|
150
|
+
|
|
151
|
+
|
|
152
|
+
### Chores
|
|
153
|
+
|
|
154
|
+
* **internal:** bump rye to 0.44.0 ([#53](https://github.com/raccoonaihq/raccoonai-python/issues/53)) ([8c6bbb6](https://github.com/raccoonaihq/raccoonai-python/commit/8c6bbb67d288e897cda0d492a6217ae3138e0ba5))
|
|
155
|
+
* **internal:** codegen related update ([#51](https://github.com/raccoonaihq/raccoonai-python/issues/51)) ([f1ef956](https://github.com/raccoonaihq/raccoonai-python/commit/f1ef956cfe8fe417214ffc79dff0f233c48a2f82))
|
|
156
|
+
|
|
157
|
+
## 0.1.0-alpha.12 (2025-03-14)
|
|
158
|
+
|
|
159
|
+
Full Changelog: [v0.1.0-alpha.11...v0.1.0-alpha.12](https://github.com/raccoonaihq/raccoonai-python/compare/v0.1.0-alpha.11...v0.1.0-alpha.12)
|
|
160
|
+
|
|
161
|
+
### Chores
|
|
162
|
+
|
|
163
|
+
* **internal:** remove extra empty newlines ([#48](https://github.com/raccoonaihq/raccoonai-python/issues/48)) ([3e29f20](https://github.com/raccoonaihq/raccoonai-python/commit/3e29f20507433c0c7c020d01d7bd1f1a167fcb3c))
|
|
164
|
+
|
|
165
|
+
## 0.1.0-alpha.11 (2025-03-11)
|
|
166
|
+
|
|
167
|
+
Full Changelog: [v0.1.0-alpha.10...v0.1.0-alpha.11](https://github.com/raccoonaihq/raccoonai-python/compare/v0.1.0-alpha.10...v0.1.0-alpha.11)
|
|
168
|
+
|
|
169
|
+
### Documentation
|
|
170
|
+
|
|
171
|
+
* revise readme docs about nested params ([#44](https://github.com/raccoonaihq/raccoonai-python/issues/44)) ([68f152e](https://github.com/raccoonaihq/raccoonai-python/commit/68f152e06a22cae44c28e4f6171df6ee87965866))
|
|
172
|
+
|
|
173
|
+
## 0.1.0-alpha.10 (2025-03-04)
|
|
174
|
+
|
|
175
|
+
Full Changelog: [v0.1.0-alpha.9...v0.1.0-alpha.10](https://github.com/raccoonaihq/raccoonai-python/compare/v0.1.0-alpha.9...v0.1.0-alpha.10)
|
|
176
|
+
|
|
177
|
+
### Features
|
|
178
|
+
|
|
179
|
+
* **api:** add create user and media endpoints + restructure ([#41](https://github.com/raccoonaihq/raccoonai-python/issues/41)) ([9ed4ec5](https://github.com/raccoonaihq/raccoonai-python/commit/9ed4ec5780ebb3ce33e4ba7cd3abb547d3566fa2))
|
|
180
|
+
|
|
181
|
+
## 0.1.0-alpha.9 (2025-03-04)
|
|
182
|
+
|
|
183
|
+
Full Changelog: [v0.1.0-alpha.8...v0.1.0-alpha.9](https://github.com/raccoonaihq/raccoonai-python/compare/v0.1.0-alpha.8...v0.1.0-alpha.9)
|
|
184
|
+
|
|
185
|
+
### Chores
|
|
186
|
+
|
|
187
|
+
* **internal:** remove unused http client options forwarding ([#38](https://github.com/raccoonaihq/raccoonai-python/issues/38)) ([3f63c81](https://github.com/raccoonaihq/raccoonai-python/commit/3f63c811fbd58e6a91beb1e03f26cb9fa084a529))
|
|
188
|
+
|
|
189
|
+
## 0.1.0-alpha.8 (2025-03-03)
|
|
190
|
+
|
|
191
|
+
Full Changelog: [v0.1.0-alpha.7...v0.1.0-alpha.8](https://github.com/raccoonaihq/raccoonai-python/compare/v0.1.0-alpha.7...v0.1.0-alpha.8)
|
|
192
|
+
|
|
193
|
+
### Features
|
|
194
|
+
|
|
195
|
+
* **api:** add tail and extensions resources + update old ones ([#34](https://github.com/raccoonaihq/raccoonai-python/issues/34)) ([46e7bc7](https://github.com/raccoonaihq/raccoonai-python/commit/46e7bc7a131e41a47f05ff3103ad2859997719b9))
|
|
196
|
+
|
|
197
|
+
|
|
198
|
+
### Bug Fixes
|
|
199
|
+
|
|
200
|
+
* **api:** tail users get path ([#36](https://github.com/raccoonaihq/raccoonai-python/issues/36)) ([00b9303](https://github.com/raccoonaihq/raccoonai-python/commit/00b9303a013a4202f4d4e9c824f8065013d1e236))
|
|
201
|
+
|
|
202
|
+
## 0.1.0-alpha.7 (2025-03-03)
|
|
203
|
+
|
|
204
|
+
Full Changelog: [v0.1.0-alpha.6...v0.1.0-alpha.7](https://github.com/raccoonaihq/raccoonai-python/compare/v0.1.0-alpha.6...v0.1.0-alpha.7)
|
|
205
|
+
|
|
206
|
+
### Features
|
|
207
|
+
|
|
208
|
+
* **api:** api update ([#32](https://github.com/raccoonaihq/raccoonai-python/issues/32)) ([122dfbd](https://github.com/raccoonaihq/raccoonai-python/commit/122dfbdab0b497c7baa5c1e30e8c53d971a99b0c))
|
|
209
|
+
|
|
210
|
+
|
|
211
|
+
### Chores
|
|
212
|
+
|
|
213
|
+
* **docs:** update client docstring ([#31](https://github.com/raccoonaihq/raccoonai-python/issues/31)) ([7d5b1cb](https://github.com/raccoonaihq/raccoonai-python/commit/7d5b1cbbbc21e7d7daf7860951236ebbfcc3ba70))
|
|
214
|
+
* **internal:** fix devcontainers setup ([#27](https://github.com/raccoonaihq/raccoonai-python/issues/27)) ([8b3178e](https://github.com/raccoonaihq/raccoonai-python/commit/8b3178e30fe72e1326eb46c49891b668a15db3ca))
|
|
215
|
+
* **internal:** properly set __pydantic_private__ ([#29](https://github.com/raccoonaihq/raccoonai-python/issues/29)) ([f457c28](https://github.com/raccoonaihq/raccoonai-python/commit/f457c28d9b5bbe682cc83156bfad97a0d5216444))
|
|
216
|
+
|
|
217
|
+
|
|
218
|
+
### Documentation
|
|
219
|
+
|
|
220
|
+
* update URLs from stainlessapi.com to stainless.com ([#30](https://github.com/raccoonaihq/raccoonai-python/issues/30)) ([a90f1af](https://github.com/raccoonaihq/raccoonai-python/commit/a90f1afa15b717ae8b8df892b56ee29c1061d441))
|
|
221
|
+
|
|
222
|
+
## 0.1.0-alpha.6 (2025-02-21)
|
|
223
|
+
|
|
224
|
+
Full Changelog: [v0.1.0-alpha.5...v0.1.0-alpha.6](https://github.com/raccoonaihq/raccoonai-python/compare/v0.1.0-alpha.5...v0.1.0-alpha.6)
|
|
225
|
+
|
|
226
|
+
### Features
|
|
227
|
+
|
|
228
|
+
* **client:** allow passing `NotGiven` for body ([#24](https://github.com/raccoonaihq/raccoonai-python/issues/24)) ([c632aa5](https://github.com/raccoonaihq/raccoonai-python/commit/c632aa57554681c776cb5aad35c673b2c2db65c7))
|
|
229
|
+
|
|
230
|
+
|
|
231
|
+
### Bug Fixes
|
|
232
|
+
|
|
233
|
+
* **client:** mark some request bodies as optional ([c632aa5](https://github.com/raccoonaihq/raccoonai-python/commit/c632aa57554681c776cb5aad35c673b2c2db65c7))
|
|
234
|
+
|
|
235
|
+
## 0.1.0-alpha.5 (2025-02-20)
|
|
236
|
+
|
|
237
|
+
Full Changelog: [v0.1.0-alpha.4...v0.1.0-alpha.5](https://github.com/raccoonaihq/raccoonai-python/compare/v0.1.0-alpha.4...v0.1.0-alpha.5)
|
|
238
|
+
|
|
239
|
+
### Features
|
|
240
|
+
|
|
241
|
+
* **api:** manual updates ([#22](https://github.com/raccoonaihq/raccoonai-python/issues/22)) ([cc6e554](https://github.com/raccoonaihq/raccoonai-python/commit/cc6e55441b2f704061e3a83573e4fc74503c8a68))
|
|
242
|
+
* **client:** increase initial delay in retries to 1 sec ([#21](https://github.com/raccoonaihq/raccoonai-python/issues/21)) ([7db68d9](https://github.com/raccoonaihq/raccoonai-python/commit/7db68d9a20f316e75c35cefdabb24856435c34cf))
|
|
243
|
+
* **client:** set default_timeout to 10 minutes and max_retries to 0 ([#18](https://github.com/raccoonaihq/raccoonai-python/issues/18)) ([51cc5e4](https://github.com/raccoonaihq/raccoonai-python/commit/51cc5e441b12bef5f11d7e942c2ce276f1fe71a0))
|
|
244
|
+
* **config:** update github org name ([#19](https://github.com/raccoonaihq/raccoonai-python/issues/19)) ([de5f0e1](https://github.com/raccoonaihq/raccoonai-python/commit/de5f0e128512d004b0e945e0b8a4c280bffe411b))
|
|
245
|
+
|
|
246
|
+
## 0.1.0-alpha.4 (2025-02-14)
|
|
247
|
+
|
|
248
|
+
Full Changelog: [v0.1.0-alpha.3...v0.1.0-alpha.4](https://github.com/flyingraccoonai/raccoonai-python/compare/v0.1.0-alpha.3...v0.1.0-alpha.4)
|
|
249
|
+
|
|
250
|
+
### Bug Fixes
|
|
251
|
+
|
|
252
|
+
* asyncify on non-asyncio runtimes ([#15](https://github.com/flyingraccoonai/raccoonai-python/issues/15)) ([5a8345e](https://github.com/flyingraccoonai/raccoonai-python/commit/5a8345e71be12864429fa19e8d4d55c9b70a63db))
|
|
253
|
+
|
|
254
|
+
## 0.1.0-alpha.3 (2025-02-13)
|
|
255
|
+
|
|
256
|
+
Full Changelog: [v0.1.0-alpha.2...v0.1.0-alpha.3](https://github.com/flyingraccoonai/raccoonai-python/compare/v0.1.0-alpha.2...v0.1.0-alpha.3)
|
|
257
|
+
|
|
258
|
+
### Features
|
|
259
|
+
|
|
260
|
+
* **api:** api update ([#13](https://github.com/flyingraccoonai/raccoonai-python/issues/13)) ([72b8d09](https://github.com/flyingraccoonai/raccoonai-python/commit/72b8d0941c8b4e3d4c880815a4bfd4f92ab3f208))
|
|
261
|
+
* **client:** send `X-Stainless-Read-Timeout` header ([#9](https://github.com/flyingraccoonai/raccoonai-python/issues/9)) ([8034585](https://github.com/flyingraccoonai/raccoonai-python/commit/80345850aeeb00d8551d467804554b33216866a4))
|
|
262
|
+
|
|
263
|
+
|
|
264
|
+
### Chores
|
|
265
|
+
|
|
266
|
+
* **internal:** bummp ruff dependency ([#8](https://github.com/flyingraccoonai/raccoonai-python/issues/8)) ([248b017](https://github.com/flyingraccoonai/raccoonai-python/commit/248b017f449a20d44fd9d3f750b61713c2267b08))
|
|
267
|
+
* **internal:** change default timeout to an int ([#6](https://github.com/flyingraccoonai/raccoonai-python/issues/6)) ([b889fd3](https://github.com/flyingraccoonai/raccoonai-python/commit/b889fd33d45027dcb9a388be08096e7dc7a1ab9c))
|
|
268
|
+
* **internal:** fix type traversing dictionary params ([#10](https://github.com/flyingraccoonai/raccoonai-python/issues/10)) ([4f5365b](https://github.com/flyingraccoonai/raccoonai-python/commit/4f5365bb697819c392bb4e9bc162f7f9f051fdbf))
|
|
269
|
+
* **internal:** minor type handling changes ([#11](https://github.com/flyingraccoonai/raccoonai-python/issues/11)) ([9e102a6](https://github.com/flyingraccoonai/raccoonai-python/commit/9e102a69172abf65c913290656137e52b1519d4e))
|
|
270
|
+
* **internal:** update client tests ([#12](https://github.com/flyingraccoonai/raccoonai-python/issues/12)) ([13f2190](https://github.com/flyingraccoonai/raccoonai-python/commit/13f2190c2e9fd7d4b6f3159a962d47ef6c2d9316))
|
|
271
|
+
|
|
272
|
+
## 0.1.0-alpha.2 (2025-01-29)
|
|
273
|
+
|
|
274
|
+
Full Changelog: [v0.1.0-alpha.1...v0.1.0-alpha.2](https://github.com/flyingraccoonai/raccoonai-python/compare/v0.1.0-alpha.1...v0.1.0-alpha.2)
|
|
275
|
+
|
|
276
|
+
### Features
|
|
277
|
+
|
|
278
|
+
* **api:** api update ([#3](https://github.com/flyingraccoonai/raccoonai-python/issues/3)) ([e251dc3](https://github.com/flyingraccoonai/raccoonai-python/commit/e251dc358ce3cc88ef81c20911125a237cd88d07))
|
|
279
|
+
|
|
280
|
+
## 0.1.0-alpha.1 (2025-01-24)
|
|
281
|
+
|
|
282
|
+
Full Changelog: [v0.0.1-alpha.0...v0.1.0-alpha.1](https://github.com/flyingraccoonai/raccoonai-python/compare/v0.0.1-alpha.0...v0.1.0-alpha.1)
|
|
283
|
+
|
|
284
|
+
### Features
|
|
285
|
+
|
|
286
|
+
* **api:** update via SDK Studio ([b4beda1](https://github.com/flyingraccoonai/raccoonai-python/commit/b4beda18093cfb681ade68610e307b7ce07fa4d2))
|
|
@@ -17,8 +17,7 @@ $ rye sync --all-features
|
|
|
17
17
|
You can then run scripts using `rye run python script.py` or by activating the virtual environment:
|
|
18
18
|
|
|
19
19
|
```sh
|
|
20
|
-
|
|
21
|
-
# or manually activate - https://docs.python.org/3/library/venv.html#how-venvs-work
|
|
20
|
+
# Activate the virtual environment - https://docs.python.org/3/library/venv.html#how-venvs-work
|
|
22
21
|
$ source .venv/bin/activate
|
|
23
22
|
|
|
24
23
|
# now you can omit the `rye run` prefix
|
|
@@ -1,12 +1,11 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.3
|
|
2
2
|
Name: raccoonai
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.0a19
|
|
4
4
|
Summary: The official Python library for the raccoonAI API
|
|
5
5
|
Project-URL: Homepage, https://github.com/raccoonaihq/raccoonai-python
|
|
6
6
|
Project-URL: Repository, https://github.com/raccoonaihq/raccoonai-python
|
|
7
|
-
Author-email: Raccoon AI <team@
|
|
8
|
-
License
|
|
9
|
-
License-File: LICENSE
|
|
7
|
+
Author-email: Raccoon AI <team@raccoonai.tech>
|
|
8
|
+
License: Apache-2.0
|
|
10
9
|
Classifier: Intended Audience :: Developers
|
|
11
10
|
Classifier: License :: OSI Approved :: Apache Software License
|
|
12
11
|
Classifier: Operating System :: MacOS
|
|
@@ -19,6 +18,7 @@ Classifier: Programming Language :: Python :: 3.9
|
|
|
19
18
|
Classifier: Programming Language :: Python :: 3.10
|
|
20
19
|
Classifier: Programming Language :: Python :: 3.11
|
|
21
20
|
Classifier: Programming Language :: Python :: 3.12
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
22
22
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
23
23
|
Classifier: Typing :: Typed
|
|
24
24
|
Requires-Python: >=3.8
|
|
@@ -28,11 +28,15 @@ Requires-Dist: httpx<1,>=0.23.0
|
|
|
28
28
|
Requires-Dist: pydantic<3,>=1.9.0
|
|
29
29
|
Requires-Dist: sniffio
|
|
30
30
|
Requires-Dist: typing-extensions<5,>=4.10
|
|
31
|
+
Provides-Extra: aiohttp
|
|
32
|
+
Requires-Dist: aiohttp; extra == 'aiohttp'
|
|
33
|
+
Requires-Dist: httpx-aiohttp>=0.1.9; extra == 'aiohttp'
|
|
31
34
|
Description-Content-Type: text/markdown
|
|
32
35
|
|
|
33
36
|
# Raccoon AI Python API library
|
|
34
37
|
|
|
35
|
-
|
|
38
|
+
<!-- prettier-ignore -->
|
|
39
|
+
[)](https://pypi.org/project/raccoonai/)
|
|
36
40
|
|
|
37
41
|
The Raccoon AI Python library provides convenient access to the Raccoon AI REST API from any Python 3.8+
|
|
38
42
|
application. The library includes type definitions for all request params and response fields,
|
|
@@ -42,7 +46,7 @@ It is generated with [Stainless](https://www.stainless.com/).
|
|
|
42
46
|
|
|
43
47
|
## Documentation
|
|
44
48
|
|
|
45
|
-
The REST API documentation can be found on [docs.
|
|
49
|
+
The REST API documentation can be found on [docs.raccoonai.tech](https://docs.raccoonai.tech). The full API of this library can be found in [api.md](https://github.com/raccoonaihq/raccoonai-python/tree/main/api.md).
|
|
46
50
|
|
|
47
51
|
## Installation
|
|
48
52
|
|
|
@@ -106,6 +110,40 @@ asyncio.run(main())
|
|
|
106
110
|
|
|
107
111
|
Functionality between the synchronous and asynchronous clients is otherwise identical.
|
|
108
112
|
|
|
113
|
+
### With aiohttp
|
|
114
|
+
|
|
115
|
+
By default, the async client uses `httpx` for HTTP requests. However, for improved concurrency performance you may also use `aiohttp` as the HTTP backend.
|
|
116
|
+
|
|
117
|
+
You can enable this by installing `aiohttp`:
|
|
118
|
+
|
|
119
|
+
```sh
|
|
120
|
+
# install from PyPI
|
|
121
|
+
pip install --pre raccoonai[aiohttp]
|
|
122
|
+
```
|
|
123
|
+
|
|
124
|
+
Then you can enable it by instantiating the client with `http_client=DefaultAioHttpClient()`:
|
|
125
|
+
|
|
126
|
+
```python
|
|
127
|
+
import asyncio
|
|
128
|
+
from raccoonai import DefaultAioHttpClient
|
|
129
|
+
from raccoonai import AsyncRaccoonAI
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
async def main() -> None:
|
|
133
|
+
async with AsyncRaccoonAI(
|
|
134
|
+
secret_key="My Secret Key",
|
|
135
|
+
http_client=DefaultAioHttpClient(),
|
|
136
|
+
) as client:
|
|
137
|
+
response = await client.lam.run(
|
|
138
|
+
query="Find YCombinator startups who got funded in W24.",
|
|
139
|
+
raccoon_passcode="<end-user-raccoon-passcode>",
|
|
140
|
+
)
|
|
141
|
+
print(response.data)
|
|
142
|
+
|
|
143
|
+
|
|
144
|
+
asyncio.run(main())
|
|
145
|
+
```
|
|
146
|
+
|
|
109
147
|
## Streaming responses
|
|
110
148
|
|
|
111
149
|
We provide support for streaming responses using Server Side Events (SSE).
|
|
@@ -149,9 +187,35 @@ Nested request parameters are [TypedDicts](https://docs.python.org/3/library/typ
|
|
|
149
187
|
|
|
150
188
|
Typed requests and responses provide autocomplete and documentation within your editor. If you would like to see type errors in VS Code to help catch bugs earlier, set `python.analysis.typeCheckingMode` to `basic`.
|
|
151
189
|
|
|
190
|
+
## Nested params
|
|
191
|
+
|
|
192
|
+
Nested parameters are dictionaries, typed using `TypedDict`, for example:
|
|
193
|
+
|
|
194
|
+
```python
|
|
195
|
+
from raccoonai import RaccoonAI
|
|
196
|
+
|
|
197
|
+
client = RaccoonAI()
|
|
198
|
+
|
|
199
|
+
response = client.lam.run(
|
|
200
|
+
query="Find YCombinator startups who got funded in W24.",
|
|
201
|
+
raccoon_passcode="<end-user-raccoon-passcode>",
|
|
202
|
+
advanced={
|
|
203
|
+
"block_ads": True,
|
|
204
|
+
"proxy": {
|
|
205
|
+
"city": "sanfrancisco",
|
|
206
|
+
"country": "us",
|
|
207
|
+
"state": "ca",
|
|
208
|
+
"zip": 94102,
|
|
209
|
+
},
|
|
210
|
+
"solve_captchas": True,
|
|
211
|
+
},
|
|
212
|
+
)
|
|
213
|
+
print(response.advanced)
|
|
214
|
+
```
|
|
215
|
+
|
|
152
216
|
## File uploads
|
|
153
217
|
|
|
154
|
-
Request parameters that correspond to file uploads can be passed as `bytes`, a [`PathLike`](https://docs.python.org/3/library/os.html#os.PathLike) instance or a tuple of `(filename, contents, media type)`.
|
|
218
|
+
Request parameters that correspond to file uploads can be passed as `bytes`, or a [`PathLike`](https://docs.python.org/3/library/os.html#os.PathLike) instance or a tuple of `(filename, contents, media type)`.
|
|
155
219
|
|
|
156
220
|
```python
|
|
157
221
|
from pathlib import Path
|
|
@@ -159,7 +223,7 @@ from raccoonai import RaccoonAI
|
|
|
159
223
|
|
|
160
224
|
client = RaccoonAI()
|
|
161
225
|
|
|
162
|
-
client.extensions.upload(
|
|
226
|
+
client.fleet.extensions.upload(
|
|
163
227
|
file=Path("/path/to/file"),
|
|
164
228
|
)
|
|
165
229
|
```
|
|
@@ -237,7 +301,7 @@ client.with_options(max_retries=5).lam.run(
|
|
|
237
301
|
### Timeouts
|
|
238
302
|
|
|
239
303
|
By default requests time out after 10 minutes. You can configure this with a `timeout` option,
|
|
240
|
-
which accepts a float or an [`httpx.Timeout`](https://www.python-httpx.org/advanced/#fine-tuning-the-configuration) object:
|
|
304
|
+
which accepts a float or an [`httpx.Timeout`](https://www.python-httpx.org/advanced/timeouts/#fine-tuning-the-configuration) object:
|
|
241
305
|
|
|
242
306
|
```python
|
|
243
307
|
from raccoonai import RaccoonAI
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
# Raccoon AI Python API library
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
<!-- prettier-ignore -->
|
|
4
|
+
[)](https://pypi.org/project/raccoonai/)
|
|
4
5
|
|
|
5
6
|
The Raccoon AI Python library provides convenient access to the Raccoon AI REST API from any Python 3.8+
|
|
6
7
|
application. The library includes type definitions for all request params and response fields,
|
|
@@ -10,7 +11,7 @@ It is generated with [Stainless](https://www.stainless.com/).
|
|
|
10
11
|
|
|
11
12
|
## Documentation
|
|
12
13
|
|
|
13
|
-
The REST API documentation can be found on [docs.
|
|
14
|
+
The REST API documentation can be found on [docs.raccoonai.tech](https://docs.raccoonai.tech). The full API of this library can be found in [api.md](api.md).
|
|
14
15
|
|
|
15
16
|
## Installation
|
|
16
17
|
|
|
@@ -74,6 +75,40 @@ asyncio.run(main())
|
|
|
74
75
|
|
|
75
76
|
Functionality between the synchronous and asynchronous clients is otherwise identical.
|
|
76
77
|
|
|
78
|
+
### With aiohttp
|
|
79
|
+
|
|
80
|
+
By default, the async client uses `httpx` for HTTP requests. However, for improved concurrency performance you may also use `aiohttp` as the HTTP backend.
|
|
81
|
+
|
|
82
|
+
You can enable this by installing `aiohttp`:
|
|
83
|
+
|
|
84
|
+
```sh
|
|
85
|
+
# install from PyPI
|
|
86
|
+
pip install --pre raccoonai[aiohttp]
|
|
87
|
+
```
|
|
88
|
+
|
|
89
|
+
Then you can enable it by instantiating the client with `http_client=DefaultAioHttpClient()`:
|
|
90
|
+
|
|
91
|
+
```python
|
|
92
|
+
import asyncio
|
|
93
|
+
from raccoonai import DefaultAioHttpClient
|
|
94
|
+
from raccoonai import AsyncRaccoonAI
|
|
95
|
+
|
|
96
|
+
|
|
97
|
+
async def main() -> None:
|
|
98
|
+
async with AsyncRaccoonAI(
|
|
99
|
+
secret_key="My Secret Key",
|
|
100
|
+
http_client=DefaultAioHttpClient(),
|
|
101
|
+
) as client:
|
|
102
|
+
response = await client.lam.run(
|
|
103
|
+
query="Find YCombinator startups who got funded in W24.",
|
|
104
|
+
raccoon_passcode="<end-user-raccoon-passcode>",
|
|
105
|
+
)
|
|
106
|
+
print(response.data)
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
asyncio.run(main())
|
|
110
|
+
```
|
|
111
|
+
|
|
77
112
|
## Streaming responses
|
|
78
113
|
|
|
79
114
|
We provide support for streaming responses using Server Side Events (SSE).
|
|
@@ -117,9 +152,35 @@ Nested request parameters are [TypedDicts](https://docs.python.org/3/library/typ
|
|
|
117
152
|
|
|
118
153
|
Typed requests and responses provide autocomplete and documentation within your editor. If you would like to see type errors in VS Code to help catch bugs earlier, set `python.analysis.typeCheckingMode` to `basic`.
|
|
119
154
|
|
|
155
|
+
## Nested params
|
|
156
|
+
|
|
157
|
+
Nested parameters are dictionaries, typed using `TypedDict`, for example:
|
|
158
|
+
|
|
159
|
+
```python
|
|
160
|
+
from raccoonai import RaccoonAI
|
|
161
|
+
|
|
162
|
+
client = RaccoonAI()
|
|
163
|
+
|
|
164
|
+
response = client.lam.run(
|
|
165
|
+
query="Find YCombinator startups who got funded in W24.",
|
|
166
|
+
raccoon_passcode="<end-user-raccoon-passcode>",
|
|
167
|
+
advanced={
|
|
168
|
+
"block_ads": True,
|
|
169
|
+
"proxy": {
|
|
170
|
+
"city": "sanfrancisco",
|
|
171
|
+
"country": "us",
|
|
172
|
+
"state": "ca",
|
|
173
|
+
"zip": 94102,
|
|
174
|
+
},
|
|
175
|
+
"solve_captchas": True,
|
|
176
|
+
},
|
|
177
|
+
)
|
|
178
|
+
print(response.advanced)
|
|
179
|
+
```
|
|
180
|
+
|
|
120
181
|
## File uploads
|
|
121
182
|
|
|
122
|
-
Request parameters that correspond to file uploads can be passed as `bytes`, a [`PathLike`](https://docs.python.org/3/library/os.html#os.PathLike) instance or a tuple of `(filename, contents, media type)`.
|
|
183
|
+
Request parameters that correspond to file uploads can be passed as `bytes`, or a [`PathLike`](https://docs.python.org/3/library/os.html#os.PathLike) instance or a tuple of `(filename, contents, media type)`.
|
|
123
184
|
|
|
124
185
|
```python
|
|
125
186
|
from pathlib import Path
|
|
@@ -127,7 +188,7 @@ from raccoonai import RaccoonAI
|
|
|
127
188
|
|
|
128
189
|
client = RaccoonAI()
|
|
129
190
|
|
|
130
|
-
client.extensions.upload(
|
|
191
|
+
client.fleet.extensions.upload(
|
|
131
192
|
file=Path("/path/to/file"),
|
|
132
193
|
)
|
|
133
194
|
```
|
|
@@ -205,7 +266,7 @@ client.with_options(max_retries=5).lam.run(
|
|
|
205
266
|
### Timeouts
|
|
206
267
|
|
|
207
268
|
By default requests time out after 10 minutes. You can configure this with a `timeout` option,
|
|
208
|
-
which accepts a float or an [`httpx.Timeout`](https://www.python-httpx.org/advanced/#fine-tuning-the-configuration) object:
|
|
269
|
+
which accepts a float or an [`httpx.Timeout`](https://www.python-httpx.org/advanced/timeouts/#fine-tuning-the-configuration) object:
|
|
209
270
|
|
|
210
271
|
```python
|
|
211
272
|
from raccoonai import RaccoonAI
|
|
@@ -16,11 +16,11 @@ before making any information public.
|
|
|
16
16
|
## Reporting Non-SDK Related Security Issues
|
|
17
17
|
|
|
18
18
|
If you encounter security issues that are not directly related to SDKs but pertain to the services
|
|
19
|
-
or products provided by Raccoon AI please follow the respective company's security reporting guidelines.
|
|
19
|
+
or products provided by Raccoon AI, please follow the respective company's security reporting guidelines.
|
|
20
20
|
|
|
21
21
|
### Raccoon AI Terms and Policies
|
|
22
22
|
|
|
23
|
-
Please contact team@
|
|
23
|
+
Please contact team@raccoonai.tech for any questions or concerns regarding the security of our services.
|
|
24
24
|
|
|
25
25
|
---
|
|
26
26
|
|