profound 0.7.0__tar.gz → 0.15.1__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.
Files changed (111) hide show
  1. profound-0.15.1/.release-please-manifest.json +3 -0
  2. profound-0.15.1/CHANGELOG.md +233 -0
  3. {profound-0.7.0 → profound-0.15.1}/LICENSE +1 -1
  4. {profound-0.7.0 → profound-0.15.1}/PKG-INFO +7 -8
  5. {profound-0.7.0 → profound-0.15.1}/README.md +4 -5
  6. {profound-0.7.0 → profound-0.15.1}/api.md +4 -0
  7. {profound-0.7.0 → profound-0.15.1}/pyproject.toml +13 -11
  8. {profound-0.7.0 → profound-0.15.1}/requirements-dev.lock +62 -50
  9. {profound-0.7.0 → profound-0.15.1}/requirements.lock +20 -19
  10. {profound-0.7.0 → profound-0.15.1}/src/profound/_base_client.py +8 -2
  11. {profound-0.7.0 → profound-0.15.1}/src/profound/_client.py +179 -46
  12. {profound-0.7.0 → profound-0.15.1}/src/profound/_models.py +37 -15
  13. {profound-0.7.0 → profound-0.15.1}/src/profound/_streaming.py +12 -12
  14. {profound-0.7.0 → profound-0.15.1}/src/profound/_types.py +3 -2
  15. {profound-0.7.0 → profound-0.15.1}/src/profound/_utils/_sync.py +3 -31
  16. {profound-0.7.0 → profound-0.15.1}/src/profound/_utils/_utils.py +1 -1
  17. {profound-0.7.0 → profound-0.15.1}/src/profound/_version.py +1 -1
  18. {profound-0.7.0 → profound-0.15.1}/src/profound/resources/logs/raw.py +8 -0
  19. {profound-0.7.0 → profound-0.15.1}/src/profound/resources/organizations/categories.py +79 -0
  20. {profound-0.7.0 → profound-0.15.1}/src/profound/resources/organizations/organizations.py +51 -0
  21. {profound-0.7.0 → profound-0.15.1}/src/profound/resources/reports.py +68 -8
  22. {profound-0.7.0 → profound-0.15.1}/src/profound/types/__init__.py +1 -0
  23. {profound-0.7.0 → profound-0.15.1}/src/profound/types/logs/raw_bots_params.py +134 -2
  24. {profound-0.7.0 → profound-0.15.1}/src/profound/types/logs/raw_bots_response.py +2 -0
  25. {profound-0.7.0 → profound-0.15.1}/src/profound/types/logs/raw_logs_params.py +22 -0
  26. {profound-0.7.0 → profound-0.15.1}/src/profound/types/logs/raw_logs_response.py +2 -0
  27. profound-0.15.1/src/profound/types/organization_list_assets_response.py +29 -0
  28. {profound-0.7.0 → profound-0.15.1}/src/profound/types/organizations/__init__.py +1 -0
  29. profound-0.15.1/src/profound/types/organizations/category_assets_response.py +26 -0
  30. {profound-0.7.0 → profound-0.15.1}/src/profound/types/prompt_answers_params.py +26 -1
  31. {profound-0.7.0 → profound-0.15.1}/src/profound/types/prompt_answers_response.py +20 -1
  32. {profound-0.7.0 → profound-0.15.1}/src/profound/types/report_citations_params.py +34 -1
  33. {profound-0.7.0 → profound-0.15.1}/src/profound/types/report_info.py +2 -0
  34. {profound-0.7.0 → profound-0.15.1}/src/profound/types/report_response.py +2 -0
  35. {profound-0.7.0 → profound-0.15.1}/src/profound/types/report_result.py +4 -2
  36. {profound-0.7.0 → profound-0.15.1}/src/profound/types/report_sentiment_params.py +32 -2
  37. {profound-0.7.0 → profound-0.15.1}/src/profound/types/report_visibility_params.py +15 -1
  38. {profound-0.7.0 → profound-0.15.1}/src/profound/types/shared/pagination.py +2 -0
  39. {profound-0.7.0 → profound-0.15.1}/src/profound/types/shared_params/pagination.py +2 -0
  40. {profound-0.7.0 → profound-0.15.1}/tests/api_resources/logs/test_raw.py +4 -4
  41. {profound-0.7.0 → profound-0.15.1}/tests/api_resources/organizations/test_categories.py +85 -0
  42. {profound-0.7.0 → profound-0.15.1}/tests/api_resources/test_organizations.py +62 -1
  43. {profound-0.7.0 → profound-0.15.1}/tests/api_resources/test_prompts.py +6 -0
  44. {profound-0.7.0 → profound-0.15.1}/tests/test_client.py +198 -164
  45. {profound-0.7.0 → profound-0.15.1}/tests/test_models.py +4 -4
  46. profound-0.7.0/.release-please-manifest.json +0 -3
  47. profound-0.7.0/CHANGELOG.md +0 -99
  48. {profound-0.7.0 → profound-0.15.1}/.gitignore +0 -0
  49. {profound-0.7.0 → profound-0.15.1}/CONTRIBUTING.md +0 -0
  50. {profound-0.7.0 → profound-0.15.1}/SECURITY.md +0 -0
  51. {profound-0.7.0 → profound-0.15.1}/bin/check-release-environment +0 -0
  52. {profound-0.7.0 → profound-0.15.1}/bin/publish-pypi +0 -0
  53. {profound-0.7.0 → profound-0.15.1}/examples/.keep +0 -0
  54. {profound-0.7.0 → profound-0.15.1}/noxfile.py +0 -0
  55. {profound-0.7.0 → profound-0.15.1}/release-please-config.json +0 -0
  56. {profound-0.7.0 → profound-0.15.1}/src/profound/__init__.py +0 -0
  57. {profound-0.7.0 → profound-0.15.1}/src/profound/_compat.py +0 -0
  58. {profound-0.7.0 → profound-0.15.1}/src/profound/_constants.py +0 -0
  59. {profound-0.7.0 → profound-0.15.1}/src/profound/_exceptions.py +0 -0
  60. {profound-0.7.0 → profound-0.15.1}/src/profound/_files.py +0 -0
  61. {profound-0.7.0 → profound-0.15.1}/src/profound/_qs.py +0 -0
  62. {profound-0.7.0 → profound-0.15.1}/src/profound/_resource.py +0 -0
  63. {profound-0.7.0 → profound-0.15.1}/src/profound/_response.py +0 -0
  64. {profound-0.7.0 → profound-0.15.1}/src/profound/_utils/__init__.py +0 -0
  65. {profound-0.7.0 → profound-0.15.1}/src/profound/_utils/_compat.py +0 -0
  66. {profound-0.7.0 → profound-0.15.1}/src/profound/_utils/_datetime_parse.py +0 -0
  67. {profound-0.7.0 → profound-0.15.1}/src/profound/_utils/_logs.py +0 -0
  68. {profound-0.7.0 → profound-0.15.1}/src/profound/_utils/_proxy.py +0 -0
  69. {profound-0.7.0 → profound-0.15.1}/src/profound/_utils/_reflection.py +0 -0
  70. {profound-0.7.0 → profound-0.15.1}/src/profound/_utils/_resources_proxy.py +0 -0
  71. {profound-0.7.0 → profound-0.15.1}/src/profound/_utils/_streams.py +0 -0
  72. {profound-0.7.0 → profound-0.15.1}/src/profound/_utils/_transform.py +0 -0
  73. {profound-0.7.0 → profound-0.15.1}/src/profound/_utils/_typing.py +0 -0
  74. {profound-0.7.0 → profound-0.15.1}/src/profound/lib/.keep +0 -0
  75. {profound-0.7.0 → profound-0.15.1}/src/profound/py.typed +0 -0
  76. {profound-0.7.0 → profound-0.15.1}/src/profound/resources/__init__.py +0 -0
  77. {profound-0.7.0 → profound-0.15.1}/src/profound/resources/logs/__init__.py +0 -0
  78. {profound-0.7.0 → profound-0.15.1}/src/profound/resources/logs/logs.py +0 -0
  79. {profound-0.7.0 → profound-0.15.1}/src/profound/resources/organizations/__init__.py +0 -0
  80. {profound-0.7.0 → profound-0.15.1}/src/profound/resources/prompts.py +0 -0
  81. {profound-0.7.0 → profound-0.15.1}/src/profound/types/logs/__init__.py +0 -0
  82. {profound-0.7.0 → profound-0.15.1}/src/profound/types/organization_domains_response.py +0 -0
  83. {profound-0.7.0 → profound-0.15.1}/src/profound/types/organization_models_response.py +0 -0
  84. {profound-0.7.0 → profound-0.15.1}/src/profound/types/organization_regions_response.py +0 -0
  85. {profound-0.7.0 → profound-0.15.1}/src/profound/types/organizations/category_list_response.py +0 -0
  86. {profound-0.7.0 → profound-0.15.1}/src/profound/types/organizations/category_prompts_response.py +0 -0
  87. {profound-0.7.0 → profound-0.15.1}/src/profound/types/organizations/category_tags_response.py +0 -0
  88. {profound-0.7.0 → profound-0.15.1}/src/profound/types/organizations/category_topics_response.py +0 -0
  89. {profound-0.7.0 → profound-0.15.1}/src/profound/types/organizations/org_item.py +0 -0
  90. {profound-0.7.0 → profound-0.15.1}/src/profound/types/report_citations_response.py +0 -0
  91. {profound-0.7.0 → profound-0.15.1}/src/profound/types/shared/__init__.py +0 -0
  92. {profound-0.7.0 → profound-0.15.1}/src/profound/types/shared_params/__init__.py +0 -0
  93. {profound-0.7.0 → profound-0.15.1}/tests/__init__.py +0 -0
  94. {profound-0.7.0 → profound-0.15.1}/tests/api_resources/__init__.py +0 -0
  95. {profound-0.7.0 → profound-0.15.1}/tests/api_resources/logs/__init__.py +0 -0
  96. {profound-0.7.0 → profound-0.15.1}/tests/api_resources/organizations/__init__.py +0 -0
  97. {profound-0.7.0 → profound-0.15.1}/tests/api_resources/test_reports.py +0 -0
  98. {profound-0.7.0 → profound-0.15.1}/tests/conftest.py +0 -0
  99. {profound-0.7.0 → profound-0.15.1}/tests/sample_file.txt +0 -0
  100. {profound-0.7.0 → profound-0.15.1}/tests/test_deepcopy.py +0 -0
  101. {profound-0.7.0 → profound-0.15.1}/tests/test_extract_files.py +0 -0
  102. {profound-0.7.0 → profound-0.15.1}/tests/test_files.py +0 -0
  103. {profound-0.7.0 → profound-0.15.1}/tests/test_qs.py +0 -0
  104. {profound-0.7.0 → profound-0.15.1}/tests/test_required_args.py +0 -0
  105. {profound-0.7.0 → profound-0.15.1}/tests/test_response.py +0 -0
  106. {profound-0.7.0 → profound-0.15.1}/tests/test_streaming.py +0 -0
  107. {profound-0.7.0 → profound-0.15.1}/tests/test_transform.py +0 -0
  108. {profound-0.7.0 → profound-0.15.1}/tests/test_utils/test_datetime_parse.py +0 -0
  109. {profound-0.7.0 → profound-0.15.1}/tests/test_utils/test_proxy.py +0 -0
  110. {profound-0.7.0 → profound-0.15.1}/tests/test_utils/test_typing.py +0 -0
  111. {profound-0.7.0 → profound-0.15.1}/tests/utils.py +0 -0
@@ -0,0 +1,3 @@
1
+ {
2
+ ".": "0.15.1"
3
+ }
@@ -0,0 +1,233 @@
1
+ # Changelog
2
+
3
+ ## 0.15.1 (2026-01-06)
4
+
5
+ Full Changelog: [v0.15.0...v0.15.1](https://github.com/cooper-square-technologies/profound-python-sdk/compare/v0.15.0...v0.15.1)
6
+
7
+ ### Chores
8
+
9
+ * **internal:** codegen related update ([4638fed](https://github.com/cooper-square-technologies/profound-python-sdk/commit/4638fed067725b504f535ff22bb7e77c114756bc))
10
+
11
+ ## 0.15.0 (2025-12-30)
12
+
13
+ Full Changelog: [v0.14.0...v0.15.0](https://github.com/cooper-square-technologies/profound-python-sdk/compare/v0.14.0...v0.15.0)
14
+
15
+ ### Features
16
+
17
+ * **api:** api update ([f8e641f](https://github.com/cooper-square-technologies/profound-python-sdk/commit/f8e641f05936e690ca5be4be35116108b9ff2b67))
18
+ * **api:** api update ([143d969](https://github.com/cooper-square-technologies/profound-python-sdk/commit/143d96960614b1f6c207970beda8a1140de36528))
19
+ * **api:** api update ([8182f33](https://github.com/cooper-square-technologies/profound-python-sdk/commit/8182f33d856951a35746de2752f5cf2d1ab96696))
20
+
21
+
22
+ ### Bug Fixes
23
+
24
+ * use async_to_httpx_files in patch method ([e0e219c](https://github.com/cooper-square-technologies/profound-python-sdk/commit/e0e219cc848e9794d45f53998ee6dcac46be52e5))
25
+
26
+
27
+ ### Chores
28
+
29
+ * **internal:** add `--fix` argument to lint script ([57c6d49](https://github.com/cooper-square-technologies/profound-python-sdk/commit/57c6d499d0f9c7a68714067ec55ab0a1d908a14a))
30
+ * **internal:** add missing files argument to base client ([f514b1b](https://github.com/cooper-square-technologies/profound-python-sdk/commit/f514b1b42cc88ecb4ac40fe8dea36be289603674))
31
+ * speedup initial import ([316b0d8](https://github.com/cooper-square-technologies/profound-python-sdk/commit/316b0d8bb4e7d993ed829082616873aabc3ff6ae))
32
+
33
+ ## 0.14.0 (2025-12-12)
34
+
35
+ Full Changelog: [v0.13.0...v0.14.0](https://github.com/cooper-square-technologies/profound-python-sdk/compare/v0.13.0...v0.14.0)
36
+
37
+ ### Features
38
+
39
+ * **api:** api update ([8864b02](https://github.com/cooper-square-technologies/profound-python-sdk/commit/8864b02d9e403962aa086dd3e204f5e21e8fb6a7))
40
+ * **api:** api update ([7e96bac](https://github.com/cooper-square-technologies/profound-python-sdk/commit/7e96baca78ddbe24f90c38a5f4cc0f4a691b2045))
41
+
42
+
43
+ ### Bug Fixes
44
+
45
+ * **types:** allow pyright to infer TypedDict types within SequenceNotStr ([c2c8d12](https://github.com/cooper-square-technologies/profound-python-sdk/commit/c2c8d120144f6fc2025716319fff1dce93ac7148))
46
+
47
+
48
+ ### Chores
49
+
50
+ * add missing docstrings ([3e04a82](https://github.com/cooper-square-technologies/profound-python-sdk/commit/3e04a824af99bbee4543c781a9d592ec304dd504))
51
+
52
+ ## 0.13.0 (2025-12-03)
53
+
54
+ Full Changelog: [v0.12.0...v0.13.0](https://github.com/cooper-square-technologies/profound-python-sdk/compare/v0.12.0...v0.13.0)
55
+
56
+ ### Features
57
+
58
+ * **api:** api update ([bf9299c](https://github.com/cooper-square-technologies/profound-python-sdk/commit/bf9299c3b9f844311dedbbc536c02db13db3100e))
59
+ * **api:** api update ([a8d74d3](https://github.com/cooper-square-technologies/profound-python-sdk/commit/a8d74d33b8cc6f4d04634e6d3e8afb25662ddc0f))
60
+
61
+
62
+ ### Bug Fixes
63
+
64
+ * ensure streams are always closed ([49a5d37](https://github.com/cooper-square-technologies/profound-python-sdk/commit/49a5d37750aa6adf7f671c592e9c4a6514f98105))
65
+
66
+
67
+ ### Chores
68
+
69
+ * **deps:** mypy 1.18.1 has a regression, pin to 1.17 ([0715bd2](https://github.com/cooper-square-technologies/profound-python-sdk/commit/0715bd2a8b92ff962259d6dc473563788b95d6f2))
70
+ * **docs:** use environment variables for authentication in code snippets ([426dd1c](https://github.com/cooper-square-technologies/profound-python-sdk/commit/426dd1c47cddc5e573f40c4ada52d0e58c74e37d))
71
+ * update lockfile ([1ab8506](https://github.com/cooper-square-technologies/profound-python-sdk/commit/1ab850656e13f8555453740d58c1be30d656f7be))
72
+
73
+ ## 0.12.0 (2025-11-25)
74
+
75
+ Full Changelog: [v0.11.0...v0.12.0](https://github.com/cooper-square-technologies/profound-python-sdk/compare/v0.11.0...v0.12.0)
76
+
77
+ ### Features
78
+
79
+ * **api:** api update ([10996e0](https://github.com/cooper-square-technologies/profound-python-sdk/commit/10996e0ad8c482f33a97195d2a7cf1f7f33ce286))
80
+ * **api:** api update ([6b1f48e](https://github.com/cooper-square-technologies/profound-python-sdk/commit/6b1f48e1a6fe0103afe327d5b79d26656add4f3f))
81
+
82
+
83
+ ### Chores
84
+
85
+ * add Python 3.14 classifier and testing ([4041368](https://github.com/cooper-square-technologies/profound-python-sdk/commit/4041368c3f8987738cc3a5e5e33f5e0f7d0e27e9))
86
+
87
+ ## 0.11.0 (2025-11-21)
88
+
89
+ Full Changelog: [v0.10.0...v0.11.0](https://github.com/cooper-square-technologies/profound-python-sdk/compare/v0.10.0...v0.11.0)
90
+
91
+ ### Features
92
+
93
+ * **api:** added `get /v1/org/assets` ([0c82b6b](https://github.com/cooper-square-technologies/profound-python-sdk/commit/0c82b6b859c3c1099d5fec3702c6cb49d5a23aa1))
94
+
95
+ ## 0.10.0 (2025-11-20)
96
+
97
+ Full Changelog: [v0.9.1...v0.10.0](https://github.com/cooper-square-technologies/profound-python-sdk/compare/v0.9.1...v0.10.0)
98
+
99
+ ### Features
100
+
101
+ * **api:** add assets endpoint ([8ec3780](https://github.com/cooper-square-technologies/profound-python-sdk/commit/8ec378015028d3d9b1ec4da7dd4a5e26f795e1a3))
102
+
103
+ ## 0.9.1 (2025-11-13)
104
+
105
+ Full Changelog: [v0.9.0...v0.9.1](https://github.com/cooper-square-technologies/profound-python-sdk/compare/v0.9.0...v0.9.1)
106
+
107
+ ## 0.9.0 (2025-11-12)
108
+
109
+ Full Changelog: [v0.8.0...v0.9.0](https://github.com/cooper-square-technologies/profound-python-sdk/compare/v0.8.0...v0.9.0)
110
+
111
+ ### Features
112
+
113
+ * **api:** api update ([47d3e50](https://github.com/cooper-square-technologies/profound-python-sdk/commit/47d3e50261b0c6554bd6ce507932dd72d138cdab))
114
+
115
+
116
+ ### Bug Fixes
117
+
118
+ * **client:** close streams without requiring full consumption ([9ae7af9](https://github.com/cooper-square-technologies/profound-python-sdk/commit/9ae7af92567de6cfbe7739b2a12470b4518420f5))
119
+ * compat with Python 3.14 ([a41771d](https://github.com/cooper-square-technologies/profound-python-sdk/commit/a41771db29daa4c0f73ac248c5794eff0394f999))
120
+ * **compat:** update signatures of `model_dump` and `model_dump_json` for Pydantic v1 ([e25c18a](https://github.com/cooper-square-technologies/profound-python-sdk/commit/e25c18a3d1d954cf005ea667c1d1cc1f2ed8f08d))
121
+
122
+
123
+ ### Chores
124
+
125
+ * **internal/tests:** avoid race condition with implicit client cleanup ([48e555a](https://github.com/cooper-square-technologies/profound-python-sdk/commit/48e555a385eacdb968e459946e53806dff35a028))
126
+ * **internal:** grammar fix (it's -> its) ([8233893](https://github.com/cooper-square-technologies/profound-python-sdk/commit/82338939c32ee3997a20e30ee24aab86d97c5ec9))
127
+ * **package:** drop Python 3.8 support ([db71ed2](https://github.com/cooper-square-technologies/profound-python-sdk/commit/db71ed2ad307fb5cefba7dd30f4374c5bb94f10e))
128
+
129
+ ## 0.8.0 (2025-10-28)
130
+
131
+ Full Changelog: [v0.7.0...v0.8.0](https://github.com/cooper-square-technologies/profound-python-sdk/compare/v0.7.0...v0.8.0)
132
+
133
+ ### Features
134
+
135
+ * **api:** api update ([7958299](https://github.com/cooper-square-technologies/profound-python-sdk/commit/7958299a1156ad45de08e406fd0d520c32dac51c))
136
+
137
+ ## 0.7.0 (2025-10-27)
138
+
139
+ Full Changelog: [v0.6.0...v0.7.0](https://github.com/cooper-square-technologies/profound-python-sdk/compare/v0.6.0...v0.7.0)
140
+
141
+ ### Features
142
+
143
+ * **api:** api update ([375f64d](https://github.com/cooper-square-technologies/profound-python-sdk/commit/375f64db88b85ce558e5132e00067af6bdc4ff1f))
144
+
145
+ ## 0.6.0 (2025-10-21)
146
+
147
+ Full Changelog: [v0.5.0...v0.6.0](https://github.com/cooper-square-technologies/profound-python-sdk/compare/v0.5.0...v0.6.0)
148
+
149
+ ### Features
150
+
151
+ * **api:** api update ([4e244ad](https://github.com/cooper-square-technologies/profound-python-sdk/commit/4e244ad88c7e6185b4a3865b3db3b83981e2a865))
152
+
153
+
154
+ ### Chores
155
+
156
+ * bump `httpx-aiohttp` version to 0.1.9 ([c4d4695](https://github.com/cooper-square-technologies/profound-python-sdk/commit/c4d46955efd31cff4e9d7d22bdd943b116ef5c08))
157
+
158
+ ## 0.5.0 (2025-10-17)
159
+
160
+ Full Changelog: [v0.4.0...v0.5.0](https://github.com/cooper-square-technologies/profound-python-sdk/compare/v0.4.0...v0.5.0)
161
+
162
+ ### Features
163
+
164
+ * **api:** api update ([e0655be](https://github.com/cooper-square-technologies/profound-python-sdk/commit/e0655be0272e66cfed2a71244594557ff5599bc5))
165
+
166
+ ## 0.4.0 (2025-10-15)
167
+
168
+ Full Changelog: [v0.3.0...v0.4.0](https://github.com/cooper-square-technologies/profound-python-sdk/compare/v0.3.0...v0.4.0)
169
+
170
+ ### Features
171
+
172
+ * **api:** api update ([186f6c4](https://github.com/cooper-square-technologies/profound-python-sdk/commit/186f6c4159e5317e67c7b2c3682c06f75243eabc))
173
+
174
+ ## 0.3.0 (2025-10-15)
175
+
176
+ Full Changelog: [v0.2.1...v0.3.0](https://github.com/cooper-square-technologies/profound-python-sdk/compare/v0.2.1...v0.3.0)
177
+
178
+ ### Features
179
+
180
+ * **api:** api update ([53cac67](https://github.com/cooper-square-technologies/profound-python-sdk/commit/53cac6701202525be9cf6b1e26df6470c92c657a))
181
+ * **api:** api update ([1ac0003](https://github.com/cooper-square-technologies/profound-python-sdk/commit/1ac00030a0d587441d3748427852431d6591edbc))
182
+
183
+ ## 0.2.1 (2025-10-11)
184
+
185
+ Full Changelog: [v0.2.0...v0.2.1](https://github.com/cooper-square-technologies/profound-python-sdk/compare/v0.2.0...v0.2.1)
186
+
187
+ ### Chores
188
+
189
+ * **internal:** detect missing future annotations with ruff ([6089e80](https://github.com/cooper-square-technologies/profound-python-sdk/commit/6089e80afdf7d32aa06eaee1c3598620999d04fd))
190
+
191
+ ## 0.2.0 (2025-10-08)
192
+
193
+ Full Changelog: [v0.1.0...v0.2.0](https://github.com/cooper-square-technologies/profound-python-sdk/compare/v0.1.0...v0.2.0)
194
+
195
+ ### ⚠ BREAKING CHANGES
196
+
197
+ * **api:** move Pagination to shared models
198
+ * **api:** rename reports models
199
+
200
+ ### Features
201
+
202
+ * **api:** api update ([dfc3d79](https://github.com/cooper-square-technologies/profound-python-sdk/commit/dfc3d7909d6c41534e267114514bd9b94bd0bc0a))
203
+ * **api:** manual updates ([99bf2bc](https://github.com/cooper-square-technologies/profound-python-sdk/commit/99bf2bcf8300c6bc8db63e8bfee7c9a9c4bf3bfc))
204
+ * **api:** move Pagination to shared models ([aeae55d](https://github.com/cooper-square-technologies/profound-python-sdk/commit/aeae55d2461ad5bacb206c4e887faad4a6e904fa))
205
+ * **api:** rename reports models ([435b4fb](https://github.com/cooper-square-technologies/profound-python-sdk/commit/435b4fb8f08c8e7526d58f7bc2515b9826062fc3))
206
+
207
+ ## 0.1.0 (2025-10-03)
208
+
209
+ Full Changelog: [v0.0.1...v0.1.0](https://github.com/cooper-square-technologies/profound-python-sdk/compare/v0.0.1...v0.1.0)
210
+
211
+ ### Features
212
+
213
+ * **api:** api update ([2572b3c](https://github.com/cooper-square-technologies/profound-python-sdk/commit/2572b3c3be7bf6cddc832478cee783e3033065d8))
214
+ * **api:** api update ([c0c8f82](https://github.com/cooper-square-technologies/profound-python-sdk/commit/c0c8f8200192aa74cea5b419cb30f9c143f2c35a))
215
+ * **api:** api update ([50d7655](https://github.com/cooper-square-technologies/profound-python-sdk/commit/50d765510b400352beb48d3b4f93948e7d37659a))
216
+ * **api:** api update ([a9288cf](https://github.com/cooper-square-technologies/profound-python-sdk/commit/a9288cff233e74cce029f1b3985c619f954e45f6))
217
+ * **api:** manual updates ([35b9d06](https://github.com/cooper-square-technologies/profound-python-sdk/commit/35b9d06f6add37221a19f0f514f375c108e29318))
218
+ * **api:** manual updates ([10650c8](https://github.com/cooper-square-technologies/profound-python-sdk/commit/10650c803530ec140b973ea1159491ed826dd966))
219
+ * **api:** manual updates ([555ef71](https://github.com/cooper-square-technologies/profound-python-sdk/commit/555ef71c7d84621e1f60752afd5e17e8e543f631))
220
+ * **api:** manual updates ([8aeebd9](https://github.com/cooper-square-technologies/profound-python-sdk/commit/8aeebd9a655310d8f9e34fd6adad982f2bfbd09c))
221
+ * **api:** manual updates ([d2b48ca](https://github.com/cooper-square-technologies/profound-python-sdk/commit/d2b48ca9ed0bb2dc836c5bcf5c4fe72ce45b43e1))
222
+ * **api:** manual updates ([53a38b1](https://github.com/cooper-square-technologies/profound-python-sdk/commit/53a38b17411e7596a61f9cab7a8e73f058fe71fc))
223
+ * **api:** manual updates ([744b812](https://github.com/cooper-square-technologies/profound-python-sdk/commit/744b8125ebd1b2841523497416615a8f7a29a47b))
224
+ * **api:** manual updates ([a252b75](https://github.com/cooper-square-technologies/profound-python-sdk/commit/a252b75817d07c3fca801b1e14bbffa31036a088))
225
+ * **api:** manual updates ([a777a52](https://github.com/cooper-square-technologies/profound-python-sdk/commit/a777a52c3c7b98a9d5cb7a1d4269a293160ab086))
226
+ * **api:** manual updates ([59b83c0](https://github.com/cooper-square-technologies/profound-python-sdk/commit/59b83c01f5bd18d00adeeae9cad709747d1b6d03))
227
+
228
+
229
+ ### Chores
230
+
231
+ * internal changes ([8298af1](https://github.com/cooper-square-technologies/profound-python-sdk/commit/8298af12a5732b34b5935aaa379d5680e25387e2))
232
+ * update SDK settings ([986fbd7](https://github.com/cooper-square-technologies/profound-python-sdk/commit/986fbd7a2732151af5e1bd49ff0a7ca610b30e8c))
233
+ * update SDK settings ([ed9b35e](https://github.com/cooper-square-technologies/profound-python-sdk/commit/ed9b35e5047fa9fac3f04c37b5e383f293e0c231))
@@ -186,7 +186,7 @@
186
186
  same "printed page" as the copyright notice for easier
187
187
  identification within third-party archives.
188
188
 
189
- Copyright 2025 Profound
189
+ Copyright 2026 Profound
190
190
 
191
191
  Licensed under the Apache License, Version 2.0 (the "License");
192
192
  you may not use this file except in compliance with the License.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: profound
3
- Version: 0.7.0
3
+ Version: 0.15.1
4
4
  Summary: The official Python library for the profound API
5
5
  Project-URL: Homepage, https://github.com/cooper-square-technologies/profound-python-sdk
6
6
  Project-URL: Repository, https://github.com/cooper-square-technologies/profound-python-sdk
@@ -13,15 +13,15 @@ Classifier: Operating System :: Microsoft :: Windows
13
13
  Classifier: Operating System :: OS Independent
14
14
  Classifier: Operating System :: POSIX
15
15
  Classifier: Operating System :: POSIX :: Linux
16
- Classifier: Programming Language :: Python :: 3.8
17
16
  Classifier: Programming Language :: Python :: 3.9
18
17
  Classifier: Programming Language :: Python :: 3.10
19
18
  Classifier: Programming Language :: Python :: 3.11
20
19
  Classifier: Programming Language :: Python :: 3.12
21
20
  Classifier: Programming Language :: Python :: 3.13
21
+ Classifier: Programming Language :: Python :: 3.14
22
22
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
23
23
  Classifier: Typing :: Typed
24
- Requires-Python: >=3.8
24
+ Requires-Python: >=3.9
25
25
  Requires-Dist: anyio<5,>=3.5.0
26
26
  Requires-Dist: distro<2,>=1.7.0
27
27
  Requires-Dist: httpx<1,>=0.23.0
@@ -38,12 +38,10 @@ Description-Content-Type: text/markdown
38
38
  <!-- prettier-ignore -->
39
39
  [![PyPI version](https://img.shields.io/pypi/v/profound.svg?label=pypi%20(stable))](https://pypi.org/project/profound/)
40
40
 
41
- The Profound Python library provides convenient access to the Profound REST API from any Python 3.8+
41
+ The Profound Python library provides convenient access to the Profound REST API from any Python 3.9+
42
42
  application. The library includes type definitions for all request params and response fields,
43
43
  and offers both synchronous and asynchronous clients powered by [httpx](https://github.com/encode/httpx).
44
44
 
45
- It is generated with [Stainless](https://www.stainless.com/).
46
-
47
45
  ## Documentation
48
46
 
49
47
  The REST API documentation can be found on [docs.tryprofound.com](https://docs.tryprofound.com). The full API of this library can be found in [api.md](https://github.com/cooper-square-technologies/profound-python-sdk/tree/main/api.md).
@@ -112,6 +110,7 @@ pip install profound[aiohttp]
112
110
  Then you can enable it by instantiating the client with `http_client=DefaultAioHttpClient()`:
113
111
 
114
112
  ```python
113
+ import os
115
114
  import asyncio
116
115
  from profound import DefaultAioHttpClient
117
116
  from profound import AsyncProfound
@@ -119,7 +118,7 @@ from profound import AsyncProfound
119
118
 
120
119
  async def main() -> None:
121
120
  async with AsyncProfound(
122
- api_key="My API Key",
121
+ api_key=os.environ.get("PROFOUND_API_KEY"), # This is the default and can be omitted
123
122
  http_client=DefaultAioHttpClient(),
124
123
  ) as client:
125
124
  org_items = await client.organizations.categories.list()
@@ -408,7 +407,7 @@ print(profound.__version__)
408
407
 
409
408
  ## Requirements
410
409
 
411
- Python 3.8 or higher.
410
+ Python 3.9 or higher.
412
411
 
413
412
  ## Contributing
414
413
 
@@ -3,12 +3,10 @@
3
3
  <!-- prettier-ignore -->
4
4
  [![PyPI version](https://img.shields.io/pypi/v/profound.svg?label=pypi%20(stable))](https://pypi.org/project/profound/)
5
5
 
6
- The Profound Python library provides convenient access to the Profound REST API from any Python 3.8+
6
+ The Profound Python library provides convenient access to the Profound REST API from any Python 3.9+
7
7
  application. The library includes type definitions for all request params and response fields,
8
8
  and offers both synchronous and asynchronous clients powered by [httpx](https://github.com/encode/httpx).
9
9
 
10
- It is generated with [Stainless](https://www.stainless.com/).
11
-
12
10
  ## Documentation
13
11
 
14
12
  The REST API documentation can be found on [docs.tryprofound.com](https://docs.tryprofound.com). The full API of this library can be found in [api.md](api.md).
@@ -77,6 +75,7 @@ pip install profound[aiohttp]
77
75
  Then you can enable it by instantiating the client with `http_client=DefaultAioHttpClient()`:
78
76
 
79
77
  ```python
78
+ import os
80
79
  import asyncio
81
80
  from profound import DefaultAioHttpClient
82
81
  from profound import AsyncProfound
@@ -84,7 +83,7 @@ from profound import AsyncProfound
84
83
 
85
84
  async def main() -> None:
86
85
  async with AsyncProfound(
87
- api_key="My API Key",
86
+ api_key=os.environ.get("PROFOUND_API_KEY"), # This is the default and can be omitted
88
87
  http_client=DefaultAioHttpClient(),
89
88
  ) as client:
90
89
  org_items = await client.organizations.categories.list()
@@ -373,7 +372,7 @@ print(profound.__version__)
373
372
 
374
373
  ## Requirements
375
374
 
376
- Python 3.8 or higher.
375
+ Python 3.9 or higher.
377
376
 
378
377
  ## Contributing
379
378
 
@@ -11,6 +11,7 @@ Types:
11
11
  ```python
12
12
  from profound.types import (
13
13
  OrganizationDomainsResponse,
14
+ OrganizationListAssetsResponse,
14
15
  OrganizationModelsResponse,
15
16
  OrganizationRegionsResponse,
16
17
  )
@@ -19,6 +20,7 @@ from profound.types import (
19
20
  Methods:
20
21
 
21
22
  - <code title="get /v1/org/domains">client.organizations.<a href="./src/profound/resources/organizations/organizations.py">domains</a>() -> <a href="./src/profound/types/organization_domains_response.py">OrganizationDomainsResponse</a></code>
23
+ - <code title="get /v1/org/assets">client.organizations.<a href="./src/profound/resources/organizations/organizations.py">list_assets</a>() -> <a href="./src/profound/types/organization_list_assets_response.py">OrganizationListAssetsResponse</a></code>
22
24
  - <code title="get /v1/org/models">client.organizations.<a href="./src/profound/resources/organizations/organizations.py">models</a>() -> <a href="./src/profound/types/organization_models_response.py">OrganizationModelsResponse</a></code>
23
25
  - <code title="get /v1/org/regions">client.organizations.<a href="./src/profound/resources/organizations/organizations.py">regions</a>() -> <a href="./src/profound/types/organization_regions_response.py">OrganizationRegionsResponse</a></code>
24
26
 
@@ -30,6 +32,7 @@ Types:
30
32
  from profound.types.organizations import (
31
33
  OrgItem,
32
34
  CategoryListResponse,
35
+ CategoryAssetsResponse,
33
36
  CategoryPromptsResponse,
34
37
  CategoryTagsResponse,
35
38
  CategoryTopicsResponse,
@@ -39,6 +42,7 @@ from profound.types.organizations import (
39
42
  Methods:
40
43
 
41
44
  - <code title="get /v1/org/categories">client.organizations.categories.<a href="./src/profound/resources/organizations/categories.py">list</a>() -> <a href="./src/profound/types/organizations/category_list_response.py">CategoryListResponse</a></code>
45
+ - <code title="get /v1/org/categories/{category_id}/assets">client.organizations.categories.<a href="./src/profound/resources/organizations/categories.py">assets</a>(category_id) -> <a href="./src/profound/types/organizations/category_assets_response.py">CategoryAssetsResponse</a></code>
42
46
  - <code title="get /v1/org/categories/{category_id}/prompts">client.organizations.categories.<a href="./src/profound/resources/organizations/categories.py">prompts</a>(category_id) -> <a href="./src/profound/types/organizations/category_prompts_response.py">CategoryPromptsResponse</a></code>
43
47
  - <code title="get /v1/org/categories/{category_id}/tags">client.organizations.categories.<a href="./src/profound/resources/organizations/categories.py">tags</a>(category_id) -> <a href="./src/profound/types/organizations/category_tags_response.py">CategoryTagsResponse</a></code>
44
48
  - <code title="get /v1/org/categories/{category_id}/topics">client.organizations.categories.<a href="./src/profound/resources/organizations/categories.py">topics</a>(category_id) -> <a href="./src/profound/types/organizations/category_topics_response.py">CategoryTopicsResponse</a></code>
@@ -1,30 +1,32 @@
1
1
  [project]
2
2
  name = "profound"
3
- version = "0.7.0"
3
+ version = "0.15.1"
4
4
  description = "The official Python library for the profound API"
5
5
  dynamic = ["readme"]
6
6
  license = "Apache-2.0"
7
7
  authors = [
8
8
  { name = "Profound", email = "support@tryprofound.com" },
9
9
  ]
10
+
10
11
  dependencies = [
11
- "httpx>=0.23.0, <1",
12
- "pydantic>=1.9.0, <3",
13
- "typing-extensions>=4.10, <5",
14
- "anyio>=3.5.0, <5",
15
- "distro>=1.7.0, <2",
16
- "sniffio",
12
+ "httpx>=0.23.0, <1",
13
+ "pydantic>=1.9.0, <3",
14
+ "typing-extensions>=4.10, <5",
15
+ "anyio>=3.5.0, <5",
16
+ "distro>=1.7.0, <2",
17
+ "sniffio",
17
18
  ]
18
- requires-python = ">= 3.8"
19
+
20
+ requires-python = ">= 3.9"
19
21
  classifiers = [
20
22
  "Typing :: Typed",
21
23
  "Intended Audience :: Developers",
22
- "Programming Language :: Python :: 3.8",
23
24
  "Programming Language :: Python :: 3.9",
24
25
  "Programming Language :: Python :: 3.10",
25
26
  "Programming Language :: Python :: 3.11",
26
27
  "Programming Language :: Python :: 3.12",
27
28
  "Programming Language :: Python :: 3.13",
29
+ "Programming Language :: Python :: 3.14",
28
30
  "Operating System :: OS Independent",
29
31
  "Operating System :: POSIX",
30
32
  "Operating System :: MacOS",
@@ -46,7 +48,7 @@ managed = true
46
48
  # version pins are in requirements-dev.lock
47
49
  dev-dependencies = [
48
50
  "pyright==1.1.399",
49
- "mypy",
51
+ "mypy==1.17",
50
52
  "respx",
51
53
  "pytest",
52
54
  "pytest-asyncio",
@@ -141,7 +143,7 @@ filterwarnings = [
141
143
  # there are a couple of flags that are still disabled by
142
144
  # default in strict mode as they are experimental and niche.
143
145
  typeCheckingMode = "strict"
144
- pythonVersion = "3.8"
146
+ pythonVersion = "3.9"
145
147
 
146
148
  exclude = [
147
149
  "_dev",
@@ -12,40 +12,45 @@
12
12
  -e file:.
13
13
  aiohappyeyeballs==2.6.1
14
14
  # via aiohttp
15
- aiohttp==3.12.8
15
+ aiohttp==3.13.2
16
16
  # via httpx-aiohttp
17
17
  # via profound
18
- aiosignal==1.3.2
18
+ aiosignal==1.4.0
19
19
  # via aiohttp
20
- annotated-types==0.6.0
20
+ annotated-types==0.7.0
21
21
  # via pydantic
22
- anyio==4.4.0
22
+ anyio==4.12.0
23
23
  # via httpx
24
24
  # via profound
25
- argcomplete==3.1.2
25
+ argcomplete==3.6.3
26
26
  # via nox
27
27
  async-timeout==5.0.1
28
28
  # via aiohttp
29
- attrs==25.3.0
29
+ attrs==25.4.0
30
30
  # via aiohttp
31
- certifi==2023.7.22
31
+ # via nox
32
+ backports-asyncio-runner==1.2.0
33
+ # via pytest-asyncio
34
+ certifi==2025.11.12
32
35
  # via httpcore
33
36
  # via httpx
34
- colorlog==6.7.0
37
+ colorlog==6.10.1
38
+ # via nox
39
+ dependency-groups==1.3.1
35
40
  # via nox
36
- dirty-equals==0.6.0
37
- distlib==0.3.7
41
+ dirty-equals==0.11
42
+ distlib==0.4.0
38
43
  # via virtualenv
39
- distro==1.8.0
44
+ distro==1.9.0
40
45
  # via profound
41
- exceptiongroup==1.2.2
46
+ exceptiongroup==1.3.1
42
47
  # via anyio
43
48
  # via pytest
44
- execnet==2.1.1
49
+ execnet==2.1.2
45
50
  # via pytest-xdist
46
- filelock==3.12.4
51
+ filelock==3.19.1
47
52
  # via virtualenv
48
- frozenlist==1.6.2
53
+ frozenlist==1.8.0
49
54
  # via aiohttp
50
55
  # via aiosignal
51
56
  h11==0.16.0
@@ -58,80 +63,87 @@ httpx==0.28.1
58
63
  # via respx
59
64
  httpx-aiohttp==0.1.9
60
65
  # via profound
61
- idna==3.4
66
+ humanize==4.13.0
67
+ # via nox
68
+ idna==3.11
62
69
  # via anyio
63
70
  # via httpx
64
71
  # via yarl
65
- importlib-metadata==7.0.0
66
- iniconfig==2.0.0
72
+ importlib-metadata==8.7.0
73
+ iniconfig==2.1.0
67
74
  # via pytest
68
75
  markdown-it-py==3.0.0
69
76
  # via rich
70
77
  mdurl==0.1.2
71
78
  # via markdown-it-py
72
- multidict==6.4.4
79
+ multidict==6.7.0
73
80
  # via aiohttp
74
81
  # via yarl
75
- mypy==1.14.1
76
- mypy-extensions==1.0.0
82
+ mypy==1.17.0
83
+ mypy-extensions==1.1.0
77
84
  # via mypy
78
- nodeenv==1.8.0
85
+ nodeenv==1.9.1
79
86
  # via pyright
80
- nox==2023.4.22
81
- packaging==23.2
87
+ nox==2025.11.12
88
+ packaging==25.0
89
+ # via dependency-groups
82
90
  # via nox
83
91
  # via pytest
84
- platformdirs==3.11.0
92
+ pathspec==0.12.1
93
+ # via mypy
94
+ platformdirs==4.4.0
85
95
  # via virtualenv
86
- pluggy==1.5.0
96
+ pluggy==1.6.0
87
97
  # via pytest
88
- propcache==0.3.1
98
+ propcache==0.4.1
89
99
  # via aiohttp
90
100
  # via yarl
91
- pydantic==2.11.9
101
+ pydantic==2.12.5
92
102
  # via profound
93
- pydantic-core==2.33.2
103
+ pydantic-core==2.41.5
94
104
  # via pydantic
95
- pygments==2.18.0
105
+ pygments==2.19.2
106
+ # via pytest
96
107
  # via rich
97
108
  pyright==1.1.399
98
- pytest==8.3.3
109
+ pytest==8.4.2
99
110
  # via pytest-asyncio
100
111
  # via pytest-xdist
101
- pytest-asyncio==0.24.0
102
- pytest-xdist==3.7.0
103
- python-dateutil==2.8.2
112
+ pytest-asyncio==1.2.0
113
+ pytest-xdist==3.8.0
114
+ python-dateutil==2.9.0.post0
104
115
  # via time-machine
105
- pytz==2023.3.post1
106
- # via dirty-equals
107
116
  respx==0.22.0
108
- rich==13.7.1
109
- ruff==0.9.4
110
- setuptools==68.2.2
111
- # via nodeenv
112
- six==1.16.0
117
+ rich==14.2.0
118
+ ruff==0.14.7
119
+ six==1.17.0
113
120
  # via python-dateutil
114
- sniffio==1.3.0
115
- # via anyio
121
+ sniffio==1.3.1
116
122
  # via profound
117
- time-machine==2.9.0
118
- tomli==2.0.2
123
+ time-machine==2.19.0
124
+ tomli==2.3.0
125
+ # via dependency-groups
119
126
  # via mypy
127
+ # via nox
120
128
  # via pytest
121
- typing-extensions==4.12.2
129
+ typing-extensions==4.15.0
130
+ # via aiosignal
122
131
  # via anyio
132
+ # via exceptiongroup
123
133
  # via multidict
124
134
  # via mypy
125
135
  # via profound
126
136
  # via pydantic
127
137
  # via pydantic-core
128
138
  # via pyright
139
+ # via pytest-asyncio
129
140
  # via typing-inspection
130
- typing-inspection==0.4.1
141
+ # via virtualenv
142
+ typing-inspection==0.4.2
131
143
  # via pydantic
132
- virtualenv==20.24.5
144
+ virtualenv==20.35.4
133
145
  # via nox
134
- yarl==1.20.0
146
+ yarl==1.22.0
135
147
  # via aiohttp
136
- zipp==3.17.0
148
+ zipp==3.23.0
137
149
  # via importlib-metadata