perplexityai 0.9.0__tar.gz → 0.10.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 perplexityai might be problematic. Click here for more details.
- perplexityai-0.10.0/.release-please-manifest.json +3 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/CHANGELOG.md +8 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/PKG-INFO +1 -1
- {perplexityai-0.9.0 → perplexityai-0.10.0}/pyproject.toml +1 -1
- {perplexityai-0.9.0 → perplexityai-0.10.0}/src/perplexity/_version.py +1 -1
- {perplexityai-0.9.0 → perplexityai-0.10.0}/src/perplexity/resources/search.py +0 -32
- {perplexityai-0.9.0 → perplexityai-0.10.0}/src/perplexity/types/search_create_params.py +0 -16
- {perplexityai-0.9.0 → perplexityai-0.10.0}/tests/api_resources/test_search.py +0 -16
- perplexityai-0.9.0/.release-please-manifest.json +0 -3
- {perplexityai-0.9.0 → perplexityai-0.10.0}/.gitignore +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/CONTRIBUTING.md +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/LICENSE +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/README.md +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/SECURITY.md +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/api.md +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/bin/check-release-environment +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/bin/publish-pypi +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/examples/.keep +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/noxfile.py +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/release-please-config.json +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/requirements-dev.lock +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/requirements.lock +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/src/perplexity/__init__.py +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/src/perplexity/_base_client.py +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/src/perplexity/_client.py +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/src/perplexity/_compat.py +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/src/perplexity/_constants.py +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/src/perplexity/_exceptions.py +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/src/perplexity/_files.py +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/src/perplexity/_models.py +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/src/perplexity/_qs.py +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/src/perplexity/_resource.py +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/src/perplexity/_response.py +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/src/perplexity/_streaming.py +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/src/perplexity/_types.py +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/src/perplexity/_utils/__init__.py +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/src/perplexity/_utils/_compat.py +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/src/perplexity/_utils/_datetime_parse.py +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/src/perplexity/_utils/_logs.py +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/src/perplexity/_utils/_proxy.py +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/src/perplexity/_utils/_reflection.py +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/src/perplexity/_utils/_resources_proxy.py +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/src/perplexity/_utils/_streams.py +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/src/perplexity/_utils/_sync.py +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/src/perplexity/_utils/_transform.py +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/src/perplexity/_utils/_typing.py +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/src/perplexity/_utils/_utils.py +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/src/perplexity/lib/.keep +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/src/perplexity/py.typed +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/src/perplexity/resources/__init__.py +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/src/perplexity/resources/async_/__init__.py +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/src/perplexity/resources/async_/async_.py +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/src/perplexity/resources/async_/chat/__init__.py +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/src/perplexity/resources/async_/chat/chat.py +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/src/perplexity/resources/async_/chat/completions.py +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/src/perplexity/resources/chat/__init__.py +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/src/perplexity/resources/chat/chat.py +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/src/perplexity/resources/chat/completions.py +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/src/perplexity/types/__init__.py +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/src/perplexity/types/async_/__init__.py +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/src/perplexity/types/async_/chat/__init__.py +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/src/perplexity/types/async_/chat/completion_create_params.py +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/src/perplexity/types/async_/chat/completion_create_response.py +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/src/perplexity/types/async_/chat/completion_get_params.py +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/src/perplexity/types/async_/chat/completion_get_response.py +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/src/perplexity/types/async_/chat/completion_list_response.py +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/src/perplexity/types/chat/__init__.py +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/src/perplexity/types/chat/completion_create_params.py +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/src/perplexity/types/chat/completion_create_response.py +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/src/perplexity/types/search_create_response.py +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/src/perplexity/types/shared/__init__.py +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/src/perplexity/types/shared/api_public_search_result.py +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/src/perplexity/types/shared/chat_message_input.py +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/src/perplexity/types/shared/chat_message_output.py +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/src/perplexity/types/shared/choice.py +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/src/perplexity/types/shared/usage_info.py +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/src/perplexity/types/shared_params/__init__.py +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/src/perplexity/types/shared_params/api_public_search_result.py +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/src/perplexity/types/shared_params/chat_message_input.py +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/tests/__init__.py +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/tests/api_resources/__init__.py +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/tests/api_resources/async_/__init__.py +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/tests/api_resources/async_/chat/__init__.py +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/tests/api_resources/async_/chat/test_completions.py +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/tests/api_resources/chat/__init__.py +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/tests/api_resources/chat/test_completions.py +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/tests/conftest.py +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/tests/sample_file.txt +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/tests/test_client.py +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/tests/test_deepcopy.py +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/tests/test_extract_files.py +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/tests/test_files.py +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/tests/test_models.py +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/tests/test_qs.py +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/tests/test_required_args.py +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/tests/test_response.py +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/tests/test_streaming.py +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/tests/test_transform.py +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/tests/test_utils/test_datetime_parse.py +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/tests/test_utils/test_proxy.py +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/tests/test_utils/test_typing.py +0 -0
- {perplexityai-0.9.0 → perplexityai-0.10.0}/tests/utils.py +0 -0
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.10.0 (2025-09-19)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.9.0...v0.10.0](https://github.com/ppl-ai/perplexity-py/compare/v0.9.0...v0.10.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** manual updates ([7f38b2f](https://github.com/ppl-ai/perplexity-py/commit/7f38b2f1eb750a6d5e435a5bfd376b62fa5a9594))
|
|
10
|
+
|
|
3
11
|
## 0.9.0 (2025-09-17)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v0.8.0...v0.9.0](https://github.com/ppl-ai/perplexity-py/compare/v0.8.0...v0.9.0)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: perplexityai
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.10.0
|
|
4
4
|
Summary: The official Python library for the perplexity API
|
|
5
5
|
Project-URL: Homepage, https://github.com/ppl-ai/perplexity-py
|
|
6
6
|
Project-URL: Repository, https://github.com/ppl-ai/perplexity-py
|
|
@@ -48,18 +48,10 @@ class SearchResource(SyncAPIResource):
|
|
|
48
48
|
self,
|
|
49
49
|
*,
|
|
50
50
|
query: Union[str, SequenceNotStr[str]],
|
|
51
|
-
country: Optional[str] | NotGiven = NOT_GIVEN,
|
|
52
|
-
last_updated_after_filter: Optional[str] | NotGiven = NOT_GIVEN,
|
|
53
|
-
last_updated_before_filter: Optional[str] | NotGiven = NOT_GIVEN,
|
|
54
51
|
max_results: int | NotGiven = NOT_GIVEN,
|
|
55
52
|
max_tokens: int | NotGiven = NOT_GIVEN,
|
|
56
53
|
max_tokens_per_page: int | NotGiven = NOT_GIVEN,
|
|
57
|
-
safe_search: Optional[bool] | NotGiven = NOT_GIVEN,
|
|
58
|
-
search_after_date_filter: Optional[str] | NotGiven = NOT_GIVEN,
|
|
59
|
-
search_before_date_filter: Optional[str] | NotGiven = NOT_GIVEN,
|
|
60
|
-
search_domain_filter: Optional[SequenceNotStr[str]] | NotGiven = NOT_GIVEN,
|
|
61
54
|
search_mode: Optional[Literal["web", "academic", "sec"]] | NotGiven = NOT_GIVEN,
|
|
62
|
-
search_recency_filter: Optional[Literal["hour", "day", "week", "month", "year"]] | NotGiven = NOT_GIVEN,
|
|
63
55
|
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
64
56
|
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
65
57
|
extra_headers: Headers | None = None,
|
|
@@ -84,18 +76,10 @@ class SearchResource(SyncAPIResource):
|
|
|
84
76
|
body=maybe_transform(
|
|
85
77
|
{
|
|
86
78
|
"query": query,
|
|
87
|
-
"country": country,
|
|
88
|
-
"last_updated_after_filter": last_updated_after_filter,
|
|
89
|
-
"last_updated_before_filter": last_updated_before_filter,
|
|
90
79
|
"max_results": max_results,
|
|
91
80
|
"max_tokens": max_tokens,
|
|
92
81
|
"max_tokens_per_page": max_tokens_per_page,
|
|
93
|
-
"safe_search": safe_search,
|
|
94
|
-
"search_after_date_filter": search_after_date_filter,
|
|
95
|
-
"search_before_date_filter": search_before_date_filter,
|
|
96
|
-
"search_domain_filter": search_domain_filter,
|
|
97
82
|
"search_mode": search_mode,
|
|
98
|
-
"search_recency_filter": search_recency_filter,
|
|
99
83
|
},
|
|
100
84
|
search_create_params.SearchCreateParams,
|
|
101
85
|
),
|
|
@@ -130,18 +114,10 @@ class AsyncSearchResource(AsyncAPIResource):
|
|
|
130
114
|
self,
|
|
131
115
|
*,
|
|
132
116
|
query: Union[str, SequenceNotStr[str]],
|
|
133
|
-
country: Optional[str] | NotGiven = NOT_GIVEN,
|
|
134
|
-
last_updated_after_filter: Optional[str] | NotGiven = NOT_GIVEN,
|
|
135
|
-
last_updated_before_filter: Optional[str] | NotGiven = NOT_GIVEN,
|
|
136
117
|
max_results: int | NotGiven = NOT_GIVEN,
|
|
137
118
|
max_tokens: int | NotGiven = NOT_GIVEN,
|
|
138
119
|
max_tokens_per_page: int | NotGiven = NOT_GIVEN,
|
|
139
|
-
safe_search: Optional[bool] | NotGiven = NOT_GIVEN,
|
|
140
|
-
search_after_date_filter: Optional[str] | NotGiven = NOT_GIVEN,
|
|
141
|
-
search_before_date_filter: Optional[str] | NotGiven = NOT_GIVEN,
|
|
142
|
-
search_domain_filter: Optional[SequenceNotStr[str]] | NotGiven = NOT_GIVEN,
|
|
143
120
|
search_mode: Optional[Literal["web", "academic", "sec"]] | NotGiven = NOT_GIVEN,
|
|
144
|
-
search_recency_filter: Optional[Literal["hour", "day", "week", "month", "year"]] | NotGiven = NOT_GIVEN,
|
|
145
121
|
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
146
122
|
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
147
123
|
extra_headers: Headers | None = None,
|
|
@@ -166,18 +142,10 @@ class AsyncSearchResource(AsyncAPIResource):
|
|
|
166
142
|
body=await async_maybe_transform(
|
|
167
143
|
{
|
|
168
144
|
"query": query,
|
|
169
|
-
"country": country,
|
|
170
|
-
"last_updated_after_filter": last_updated_after_filter,
|
|
171
|
-
"last_updated_before_filter": last_updated_before_filter,
|
|
172
145
|
"max_results": max_results,
|
|
173
146
|
"max_tokens": max_tokens,
|
|
174
147
|
"max_tokens_per_page": max_tokens_per_page,
|
|
175
|
-
"safe_search": safe_search,
|
|
176
|
-
"search_after_date_filter": search_after_date_filter,
|
|
177
|
-
"search_before_date_filter": search_before_date_filter,
|
|
178
|
-
"search_domain_filter": search_domain_filter,
|
|
179
148
|
"search_mode": search_mode,
|
|
180
|
-
"search_recency_filter": search_recency_filter,
|
|
181
149
|
},
|
|
182
150
|
search_create_params.SearchCreateParams,
|
|
183
151
|
),
|
|
@@ -13,26 +13,10 @@ __all__ = ["SearchCreateParams"]
|
|
|
13
13
|
class SearchCreateParams(TypedDict, total=False):
|
|
14
14
|
query: Required[Union[str, SequenceNotStr[str]]]
|
|
15
15
|
|
|
16
|
-
country: Optional[str]
|
|
17
|
-
|
|
18
|
-
last_updated_after_filter: Optional[str]
|
|
19
|
-
|
|
20
|
-
last_updated_before_filter: Optional[str]
|
|
21
|
-
|
|
22
16
|
max_results: int
|
|
23
17
|
|
|
24
18
|
max_tokens: int
|
|
25
19
|
|
|
26
20
|
max_tokens_per_page: int
|
|
27
21
|
|
|
28
|
-
safe_search: Optional[bool]
|
|
29
|
-
|
|
30
|
-
search_after_date_filter: Optional[str]
|
|
31
|
-
|
|
32
|
-
search_before_date_filter: Optional[str]
|
|
33
|
-
|
|
34
|
-
search_domain_filter: Optional[SequenceNotStr[str]]
|
|
35
|
-
|
|
36
22
|
search_mode: Optional[Literal["web", "academic", "sec"]]
|
|
37
|
-
|
|
38
|
-
search_recency_filter: Optional[Literal["hour", "day", "week", "month", "year"]]
|
|
@@ -30,18 +30,10 @@ class TestSearch:
|
|
|
30
30
|
def test_method_create_with_all_params(self, client: Perplexity) -> None:
|
|
31
31
|
search = client.search.create(
|
|
32
32
|
query="string",
|
|
33
|
-
country="country",
|
|
34
|
-
last_updated_after_filter="last_updated_after_filter",
|
|
35
|
-
last_updated_before_filter="last_updated_before_filter",
|
|
36
33
|
max_results=0,
|
|
37
34
|
max_tokens=0,
|
|
38
35
|
max_tokens_per_page=0,
|
|
39
|
-
safe_search=True,
|
|
40
|
-
search_after_date_filter="search_after_date_filter",
|
|
41
|
-
search_before_date_filter="search_before_date_filter",
|
|
42
|
-
search_domain_filter=["string"],
|
|
43
36
|
search_mode="web",
|
|
44
|
-
search_recency_filter="hour",
|
|
45
37
|
)
|
|
46
38
|
assert_matches_type(SearchCreateResponse, search, path=["response"])
|
|
47
39
|
|
|
@@ -90,18 +82,10 @@ class TestAsyncSearch:
|
|
|
90
82
|
async def test_method_create_with_all_params(self, async_client: AsyncPerplexity) -> None:
|
|
91
83
|
search = await async_client.search.create(
|
|
92
84
|
query="string",
|
|
93
|
-
country="country",
|
|
94
|
-
last_updated_after_filter="last_updated_after_filter",
|
|
95
|
-
last_updated_before_filter="last_updated_before_filter",
|
|
96
85
|
max_results=0,
|
|
97
86
|
max_tokens=0,
|
|
98
87
|
max_tokens_per_page=0,
|
|
99
|
-
safe_search=True,
|
|
100
|
-
search_after_date_filter="search_after_date_filter",
|
|
101
|
-
search_before_date_filter="search_before_date_filter",
|
|
102
|
-
search_domain_filter=["string"],
|
|
103
88
|
search_mode="web",
|
|
104
|
-
search_recency_filter="hour",
|
|
105
89
|
)
|
|
106
90
|
assert_matches_type(SearchCreateResponse, search, path=["response"])
|
|
107
91
|
|
|
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
|
{perplexityai-0.9.0 → perplexityai-0.10.0}/src/perplexity/resources/async_/chat/completions.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
|
{perplexityai-0.9.0 → perplexityai-0.10.0}/src/perplexity/types/async_/chat/completion_get_params.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{perplexityai-0.9.0 → perplexityai-0.10.0}/src/perplexity/types/chat/completion_create_params.py
RENAMED
|
File without changes
|
{perplexityai-0.9.0 → perplexityai-0.10.0}/src/perplexity/types/chat/completion_create_response.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{perplexityai-0.9.0 → perplexityai-0.10.0}/src/perplexity/types/shared/api_public_search_result.py
RENAMED
|
File without changes
|
{perplexityai-0.9.0 → perplexityai-0.10.0}/src/perplexity/types/shared/chat_message_input.py
RENAMED
|
File without changes
|
{perplexityai-0.9.0 → perplexityai-0.10.0}/src/perplexity/types/shared/chat_message_output.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{perplexityai-0.9.0 → perplexityai-0.10.0}/src/perplexity/types/shared_params/chat_message_input.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{perplexityai-0.9.0 → perplexityai-0.10.0}/tests/api_resources/async_/chat/test_completions.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
|