profound 0.2.1__tar.gz → 0.3.0__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.
Potentially problematic release.
This version of profound might be problematic. Click here for more details.
- profound-0.3.0/.release-please-manifest.json +3 -0
- {profound-0.2.1 → profound-0.3.0}/CHANGELOG.md +9 -0
- {profound-0.2.1 → profound-0.3.0}/PKG-INFO +1 -1
- {profound-0.2.1 → profound-0.3.0}/pyproject.toml +1 -1
- {profound-0.2.1 → profound-0.3.0}/src/profound/_version.py +1 -1
- {profound-0.2.1 → profound-0.3.0}/src/profound/types/prompt_answers_params.py +2 -0
- {profound-0.2.1 → profound-0.3.0}/src/profound/types/prompt_answers_response.py +2 -0
- {profound-0.2.1 → profound-0.3.0}/tests/api_resources/organizations/test_categories.py +12 -12
- {profound-0.2.1 → profound-0.3.0}/tests/api_resources/test_prompts.py +2 -0
- profound-0.2.1/.release-please-manifest.json +0 -3
- {profound-0.2.1 → profound-0.3.0}/.gitignore +0 -0
- {profound-0.2.1 → profound-0.3.0}/CONTRIBUTING.md +0 -0
- {profound-0.2.1 → profound-0.3.0}/LICENSE +0 -0
- {profound-0.2.1 → profound-0.3.0}/README.md +0 -0
- {profound-0.2.1 → profound-0.3.0}/SECURITY.md +0 -0
- {profound-0.2.1 → profound-0.3.0}/api.md +0 -0
- {profound-0.2.1 → profound-0.3.0}/bin/check-release-environment +0 -0
- {profound-0.2.1 → profound-0.3.0}/bin/publish-pypi +0 -0
- {profound-0.2.1 → profound-0.3.0}/examples/.keep +0 -0
- {profound-0.2.1 → profound-0.3.0}/noxfile.py +0 -0
- {profound-0.2.1 → profound-0.3.0}/release-please-config.json +0 -0
- {profound-0.2.1 → profound-0.3.0}/requirements-dev.lock +0 -0
- {profound-0.2.1 → profound-0.3.0}/requirements.lock +0 -0
- {profound-0.2.1 → profound-0.3.0}/src/profound/__init__.py +0 -0
- {profound-0.2.1 → profound-0.3.0}/src/profound/_base_client.py +0 -0
- {profound-0.2.1 → profound-0.3.0}/src/profound/_client.py +0 -0
- {profound-0.2.1 → profound-0.3.0}/src/profound/_compat.py +0 -0
- {profound-0.2.1 → profound-0.3.0}/src/profound/_constants.py +0 -0
- {profound-0.2.1 → profound-0.3.0}/src/profound/_exceptions.py +0 -0
- {profound-0.2.1 → profound-0.3.0}/src/profound/_files.py +0 -0
- {profound-0.2.1 → profound-0.3.0}/src/profound/_models.py +0 -0
- {profound-0.2.1 → profound-0.3.0}/src/profound/_qs.py +0 -0
- {profound-0.2.1 → profound-0.3.0}/src/profound/_resource.py +0 -0
- {profound-0.2.1 → profound-0.3.0}/src/profound/_response.py +0 -0
- {profound-0.2.1 → profound-0.3.0}/src/profound/_streaming.py +0 -0
- {profound-0.2.1 → profound-0.3.0}/src/profound/_types.py +0 -0
- {profound-0.2.1 → profound-0.3.0}/src/profound/_utils/__init__.py +0 -0
- {profound-0.2.1 → profound-0.3.0}/src/profound/_utils/_compat.py +0 -0
- {profound-0.2.1 → profound-0.3.0}/src/profound/_utils/_datetime_parse.py +0 -0
- {profound-0.2.1 → profound-0.3.0}/src/profound/_utils/_logs.py +0 -0
- {profound-0.2.1 → profound-0.3.0}/src/profound/_utils/_proxy.py +0 -0
- {profound-0.2.1 → profound-0.3.0}/src/profound/_utils/_reflection.py +0 -0
- {profound-0.2.1 → profound-0.3.0}/src/profound/_utils/_resources_proxy.py +0 -0
- {profound-0.2.1 → profound-0.3.0}/src/profound/_utils/_streams.py +0 -0
- {profound-0.2.1 → profound-0.3.0}/src/profound/_utils/_sync.py +0 -0
- {profound-0.2.1 → profound-0.3.0}/src/profound/_utils/_transform.py +0 -0
- {profound-0.2.1 → profound-0.3.0}/src/profound/_utils/_typing.py +0 -0
- {profound-0.2.1 → profound-0.3.0}/src/profound/_utils/_utils.py +0 -0
- {profound-0.2.1 → profound-0.3.0}/src/profound/lib/.keep +0 -0
- {profound-0.2.1 → profound-0.3.0}/src/profound/py.typed +0 -0
- {profound-0.2.1 → profound-0.3.0}/src/profound/resources/__init__.py +0 -0
- {profound-0.2.1 → profound-0.3.0}/src/profound/resources/logs/__init__.py +0 -0
- {profound-0.2.1 → profound-0.3.0}/src/profound/resources/logs/logs.py +0 -0
- {profound-0.2.1 → profound-0.3.0}/src/profound/resources/logs/raw.py +0 -0
- {profound-0.2.1 → profound-0.3.0}/src/profound/resources/organizations/__init__.py +0 -0
- {profound-0.2.1 → profound-0.3.0}/src/profound/resources/organizations/categories.py +0 -0
- {profound-0.2.1 → profound-0.3.0}/src/profound/resources/organizations/organizations.py +0 -0
- {profound-0.2.1 → profound-0.3.0}/src/profound/resources/prompts.py +0 -0
- {profound-0.2.1 → profound-0.3.0}/src/profound/resources/reports.py +0 -0
- {profound-0.2.1 → profound-0.3.0}/src/profound/types/__init__.py +0 -0
- {profound-0.2.1 → profound-0.3.0}/src/profound/types/logs/__init__.py +0 -0
- {profound-0.2.1 → profound-0.3.0}/src/profound/types/logs/raw_bots_params.py +0 -0
- {profound-0.2.1 → profound-0.3.0}/src/profound/types/logs/raw_bots_response.py +0 -0
- {profound-0.2.1 → profound-0.3.0}/src/profound/types/logs/raw_logs_params.py +0 -0
- {profound-0.2.1 → profound-0.3.0}/src/profound/types/logs/raw_logs_response.py +0 -0
- {profound-0.2.1 → profound-0.3.0}/src/profound/types/organization_domains_response.py +0 -0
- {profound-0.2.1 → profound-0.3.0}/src/profound/types/organization_models_response.py +0 -0
- {profound-0.2.1 → profound-0.3.0}/src/profound/types/organization_regions_response.py +0 -0
- {profound-0.2.1 → profound-0.3.0}/src/profound/types/organizations/__init__.py +0 -0
- {profound-0.2.1 → profound-0.3.0}/src/profound/types/organizations/category_list_response.py +0 -0
- {profound-0.2.1 → profound-0.3.0}/src/profound/types/organizations/category_prompts_response.py +0 -0
- {profound-0.2.1 → profound-0.3.0}/src/profound/types/organizations/category_tags_response.py +0 -0
- {profound-0.2.1 → profound-0.3.0}/src/profound/types/organizations/category_topics_response.py +0 -0
- {profound-0.2.1 → profound-0.3.0}/src/profound/types/organizations/org_item.py +0 -0
- {profound-0.2.1 → profound-0.3.0}/src/profound/types/report_citations_params.py +0 -0
- {profound-0.2.1 → profound-0.3.0}/src/profound/types/report_citations_response.py +0 -0
- {profound-0.2.1 → profound-0.3.0}/src/profound/types/report_info.py +0 -0
- {profound-0.2.1 → profound-0.3.0}/src/profound/types/report_response.py +0 -0
- {profound-0.2.1 → profound-0.3.0}/src/profound/types/report_result.py +0 -0
- {profound-0.2.1 → profound-0.3.0}/src/profound/types/report_sentiment_params.py +0 -0
- {profound-0.2.1 → profound-0.3.0}/src/profound/types/report_visibility_params.py +0 -0
- {profound-0.2.1 → profound-0.3.0}/src/profound/types/shared/__init__.py +0 -0
- {profound-0.2.1 → profound-0.3.0}/src/profound/types/shared/pagination.py +0 -0
- {profound-0.2.1 → profound-0.3.0}/src/profound/types/shared_params/__init__.py +0 -0
- {profound-0.2.1 → profound-0.3.0}/src/profound/types/shared_params/pagination.py +0 -0
- {profound-0.2.1 → profound-0.3.0}/tests/__init__.py +0 -0
- {profound-0.2.1 → profound-0.3.0}/tests/api_resources/__init__.py +0 -0
- {profound-0.2.1 → profound-0.3.0}/tests/api_resources/logs/__init__.py +0 -0
- {profound-0.2.1 → profound-0.3.0}/tests/api_resources/logs/test_raw.py +0 -0
- {profound-0.2.1 → profound-0.3.0}/tests/api_resources/organizations/__init__.py +0 -0
- {profound-0.2.1 → profound-0.3.0}/tests/api_resources/test_organizations.py +0 -0
- {profound-0.2.1 → profound-0.3.0}/tests/api_resources/test_reports.py +0 -0
- {profound-0.2.1 → profound-0.3.0}/tests/conftest.py +0 -0
- {profound-0.2.1 → profound-0.3.0}/tests/sample_file.txt +0 -0
- {profound-0.2.1 → profound-0.3.0}/tests/test_client.py +0 -0
- {profound-0.2.1 → profound-0.3.0}/tests/test_deepcopy.py +0 -0
- {profound-0.2.1 → profound-0.3.0}/tests/test_extract_files.py +0 -0
- {profound-0.2.1 → profound-0.3.0}/tests/test_files.py +0 -0
- {profound-0.2.1 → profound-0.3.0}/tests/test_models.py +0 -0
- {profound-0.2.1 → profound-0.3.0}/tests/test_qs.py +0 -0
- {profound-0.2.1 → profound-0.3.0}/tests/test_required_args.py +0 -0
- {profound-0.2.1 → profound-0.3.0}/tests/test_response.py +0 -0
- {profound-0.2.1 → profound-0.3.0}/tests/test_streaming.py +0 -0
- {profound-0.2.1 → profound-0.3.0}/tests/test_transform.py +0 -0
- {profound-0.2.1 → profound-0.3.0}/tests/test_utils/test_datetime_parse.py +0 -0
- {profound-0.2.1 → profound-0.3.0}/tests/test_utils/test_proxy.py +0 -0
- {profound-0.2.1 → profound-0.3.0}/tests/test_utils/test_typing.py +0 -0
- {profound-0.2.1 → profound-0.3.0}/tests/utils.py +0 -0
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.3.0 (2025-10-15)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.2.1...v0.3.0](https://github.com/cooper-square-technologies/profound-python-sdk/compare/v0.2.1...v0.3.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([53cac67](https://github.com/cooper-square-technologies/profound-python-sdk/commit/53cac6701202525be9cf6b1e26df6470c92c657a))
|
|
10
|
+
* **api:** api update ([1ac0003](https://github.com/cooper-square-technologies/profound-python-sdk/commit/1ac00030a0d587441d3748427852431d6591edbc))
|
|
11
|
+
|
|
3
12
|
## 0.2.1 (2025-10-11)
|
|
4
13
|
|
|
5
14
|
Full Changelog: [v0.2.0...v0.2.1](https://github.com/cooper-square-technologies/profound-python-sdk/compare/v0.2.0...v0.2.1)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: profound
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.3.0
|
|
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
|
|
@@ -96,7 +96,7 @@ class TestCategories:
|
|
|
96
96
|
@parametrize
|
|
97
97
|
def test_method_tags(self, client: Profound) -> None:
|
|
98
98
|
category = client.organizations.categories.tags(
|
|
99
|
-
"
|
|
99
|
+
"182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
|
|
100
100
|
)
|
|
101
101
|
assert_matches_type(CategoryTagsResponse, category, path=["response"])
|
|
102
102
|
|
|
@@ -104,7 +104,7 @@ class TestCategories:
|
|
|
104
104
|
@parametrize
|
|
105
105
|
def test_raw_response_tags(self, client: Profound) -> None:
|
|
106
106
|
response = client.organizations.categories.with_raw_response.tags(
|
|
107
|
-
"
|
|
107
|
+
"182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
|
|
108
108
|
)
|
|
109
109
|
|
|
110
110
|
assert response.is_closed is True
|
|
@@ -116,7 +116,7 @@ class TestCategories:
|
|
|
116
116
|
@parametrize
|
|
117
117
|
def test_streaming_response_tags(self, client: Profound) -> None:
|
|
118
118
|
with client.organizations.categories.with_streaming_response.tags(
|
|
119
|
-
"
|
|
119
|
+
"182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
|
|
120
120
|
) as response:
|
|
121
121
|
assert not response.is_closed
|
|
122
122
|
assert response.http_request.headers.get("X-Stainless-Lang") == "python"
|
|
@@ -138,7 +138,7 @@ class TestCategories:
|
|
|
138
138
|
@parametrize
|
|
139
139
|
def test_method_topics(self, client: Profound) -> None:
|
|
140
140
|
category = client.organizations.categories.topics(
|
|
141
|
-
"
|
|
141
|
+
"182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
|
|
142
142
|
)
|
|
143
143
|
assert_matches_type(CategoryTopicsResponse, category, path=["response"])
|
|
144
144
|
|
|
@@ -146,7 +146,7 @@ class TestCategories:
|
|
|
146
146
|
@parametrize
|
|
147
147
|
def test_raw_response_topics(self, client: Profound) -> None:
|
|
148
148
|
response = client.organizations.categories.with_raw_response.topics(
|
|
149
|
-
"
|
|
149
|
+
"182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
|
|
150
150
|
)
|
|
151
151
|
|
|
152
152
|
assert response.is_closed is True
|
|
@@ -158,7 +158,7 @@ class TestCategories:
|
|
|
158
158
|
@parametrize
|
|
159
159
|
def test_streaming_response_topics(self, client: Profound) -> None:
|
|
160
160
|
with client.organizations.categories.with_streaming_response.topics(
|
|
161
|
-
"
|
|
161
|
+
"182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
|
|
162
162
|
) as response:
|
|
163
163
|
assert not response.is_closed
|
|
164
164
|
assert response.http_request.headers.get("X-Stainless-Lang") == "python"
|
|
@@ -256,7 +256,7 @@ class TestAsyncCategories:
|
|
|
256
256
|
@parametrize
|
|
257
257
|
async def test_method_tags(self, async_client: AsyncProfound) -> None:
|
|
258
258
|
category = await async_client.organizations.categories.tags(
|
|
259
|
-
"
|
|
259
|
+
"182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
|
|
260
260
|
)
|
|
261
261
|
assert_matches_type(CategoryTagsResponse, category, path=["response"])
|
|
262
262
|
|
|
@@ -264,7 +264,7 @@ class TestAsyncCategories:
|
|
|
264
264
|
@parametrize
|
|
265
265
|
async def test_raw_response_tags(self, async_client: AsyncProfound) -> None:
|
|
266
266
|
response = await async_client.organizations.categories.with_raw_response.tags(
|
|
267
|
-
"
|
|
267
|
+
"182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
|
|
268
268
|
)
|
|
269
269
|
|
|
270
270
|
assert response.is_closed is True
|
|
@@ -276,7 +276,7 @@ class TestAsyncCategories:
|
|
|
276
276
|
@parametrize
|
|
277
277
|
async def test_streaming_response_tags(self, async_client: AsyncProfound) -> None:
|
|
278
278
|
async with async_client.organizations.categories.with_streaming_response.tags(
|
|
279
|
-
"
|
|
279
|
+
"182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
|
|
280
280
|
) as response:
|
|
281
281
|
assert not response.is_closed
|
|
282
282
|
assert response.http_request.headers.get("X-Stainless-Lang") == "python"
|
|
@@ -298,7 +298,7 @@ class TestAsyncCategories:
|
|
|
298
298
|
@parametrize
|
|
299
299
|
async def test_method_topics(self, async_client: AsyncProfound) -> None:
|
|
300
300
|
category = await async_client.organizations.categories.topics(
|
|
301
|
-
"
|
|
301
|
+
"182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
|
|
302
302
|
)
|
|
303
303
|
assert_matches_type(CategoryTopicsResponse, category, path=["response"])
|
|
304
304
|
|
|
@@ -306,7 +306,7 @@ class TestAsyncCategories:
|
|
|
306
306
|
@parametrize
|
|
307
307
|
async def test_raw_response_topics(self, async_client: AsyncProfound) -> None:
|
|
308
308
|
response = await async_client.organizations.categories.with_raw_response.topics(
|
|
309
|
-
"
|
|
309
|
+
"182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
|
|
310
310
|
)
|
|
311
311
|
|
|
312
312
|
assert response.is_closed is True
|
|
@@ -318,7 +318,7 @@ class TestAsyncCategories:
|
|
|
318
318
|
@parametrize
|
|
319
319
|
async def test_streaming_response_topics(self, async_client: AsyncProfound) -> None:
|
|
320
320
|
async with async_client.organizations.categories.with_streaming_response.topics(
|
|
321
|
-
"
|
|
321
|
+
"182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
|
|
322
322
|
) as response:
|
|
323
323
|
assert not response.is_closed
|
|
324
324
|
assert response.http_request.headers.get("X-Stainless-Lang") == "python"
|
|
@@ -54,6 +54,7 @@ class TestPrompts:
|
|
|
54
54
|
"region": True,
|
|
55
55
|
"response": True,
|
|
56
56
|
"run_id": True,
|
|
57
|
+
"search_queries": True,
|
|
57
58
|
"tags": True,
|
|
58
59
|
"themes": True,
|
|
59
60
|
"topic": True,
|
|
@@ -137,6 +138,7 @@ class TestAsyncPrompts:
|
|
|
137
138
|
"region": True,
|
|
138
139
|
"response": True,
|
|
139
140
|
"run_id": True,
|
|
141
|
+
"search_queries": True,
|
|
140
142
|
"tags": True,
|
|
141
143
|
"themes": True,
|
|
142
144
|
"topic": True,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{profound-0.2.1 → profound-0.3.0}/src/profound/types/organizations/category_list_response.py
RENAMED
|
File without changes
|
{profound-0.2.1 → profound-0.3.0}/src/profound/types/organizations/category_prompts_response.py
RENAMED
|
File without changes
|
{profound-0.2.1 → profound-0.3.0}/src/profound/types/organizations/category_tags_response.py
RENAMED
|
File without changes
|
{profound-0.2.1 → profound-0.3.0}/src/profound/types/organizations/category_topics_response.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|