-
Notifications
You must be signed in to change notification settings - Fork 413
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(fix): Restore the server backward compatibility code (#2327)
# Description The code included in PR #2248 breaks backward compatibility for older server versions. This PR restores the codebase for providing compatibility in those cases. **Type of change** (Please delete options that are not relevant. Remember to title the PR according to the type of change) - [x] Bug fix (non-breaking change which fixes an issue) **Checklist** - [x] I have merged the original branch into my forked branch - [x] I added relevant documentation - [x] follows the style guidelines of this project - [x] I did a self-review of my code - [x] I added comments to my code - [x] I made corresponding changes to the documentation - [x] My changes generate no new warnings - [x] I have added tests that prove my fix is effective or that my feature works --------- Co-authored-by: Francisco Aranda <francisco@recogn.ai> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
- Loading branch information
1 parent
106060f
commit e55ea3e
Showing
6 changed files
with
281 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
# coding=utf-8 | ||
# Copyright 2021-present, the Recognai S.L. team. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
from typing import List, Optional, Union | ||
|
||
import httpx | ||
|
||
from argilla.client.sdk.client import AuthenticatedClient | ||
from argilla.client.sdk.commons.api import build_data_response, build_param_dict | ||
from argilla.client.sdk.commons.models import ( | ||
ErrorMessage, | ||
HTTPValidationError, | ||
Response, | ||
) | ||
from argilla.client.sdk.text2text.models import Text2TextQuery, Text2TextRecord | ||
|
||
|
||
def data( | ||
client: AuthenticatedClient, | ||
name: str, | ||
request: Optional[Text2TextQuery] = None, | ||
limit: Optional[int] = None, | ||
id_from: Optional[str] = None, | ||
) -> Response[Union[List[Text2TextRecord], HTTPValidationError, ErrorMessage]]: | ||
|
||
path = f"/api/datasets/{name}/Text2Text/data" | ||
params = build_param_dict(id_from, limit) | ||
|
||
with client.stream( | ||
method="POST", | ||
path=path, | ||
params=params if params else None, | ||
json=request.dict() if request else {}, | ||
) as response: | ||
return build_data_response(response=response, data_type=Text2TextRecord) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.