From aa5c4665f0b4618e7be02af48e7ac7d6fbca657f Mon Sep 17 00:00:00 2001 From: sdiazlor Date: Wed, 2 Oct 2024 03:37:39 +0200 Subject: [PATCH] update license header --- LICENSE_HEADER | 20 +++++++++---------- src/argilla_llama_index/__init__.py | 20 +++++++++---------- src/argilla_llama_index/helpers.py | 20 +++++++++---------- .../llama_index_handler.py | 20 +++++++++---------- tests/test_helpers.py | 20 +++++++++---------- tests/test_llama_index_handler.py | 20 +++++++++---------- 6 files changed, 60 insertions(+), 60 deletions(-) diff --git a/LICENSE_HEADER b/LICENSE_HEADER index bc08648..034ee43 100644 --- a/LICENSE_HEADER +++ b/LICENSE_HEADER @@ -1,13 +1,13 @@ - Copyright 2021-present, the Recognai S.L. team. +Copyright 2024-present, Argilla, Inc. - 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 +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 + 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. +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. diff --git a/src/argilla_llama_index/__init__.py b/src/argilla_llama_index/__init__.py index c3a6791..e68593a 100644 --- a/src/argilla_llama_index/__init__.py +++ b/src/argilla_llama_index/__init__.py @@ -1,16 +1,16 @@ -# Copyright 2021-present, the Recognai S.L. team. +# Copyright 2024-present, Argilla, Inc. # -# 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 +# 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 +# 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. +# 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. __version__ = "2.1.0" diff --git a/src/argilla_llama_index/helpers.py b/src/argilla_llama_index/helpers.py index 13633fd..bf16531 100644 --- a/src/argilla_llama_index/helpers.py +++ b/src/argilla_llama_index/helpers.py @@ -1,16 +1,16 @@ -# Copyright 2021-present, the Recognai S.L. team. +# Copyright 2024-present, Argilla, Inc. # -# 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 +# 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 +# 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. +# 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 Any, Dict, List, Tuple diff --git a/src/argilla_llama_index/llama_index_handler.py b/src/argilla_llama_index/llama_index_handler.py index 77a2941..b0131bc 100644 --- a/src/argilla_llama_index/llama_index_handler.py +++ b/src/argilla_llama_index/llama_index_handler.py @@ -1,16 +1,16 @@ -# Copyright 2021-present, the Recognai S.L. team. +# Copyright 2024-present, Argilla, Inc. # -# 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 +# 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 +# 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. +# 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. import inspect import logging diff --git a/tests/test_helpers.py b/tests/test_helpers.py index 171a159..e201648 100644 --- a/tests/test_helpers.py +++ b/tests/test_helpers.py @@ -1,16 +1,16 @@ -# Copyright 2021-present, the Recognai S.L. team. +# Copyright 2024-present, Argilla, Inc. # -# 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 +# 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 +# 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. +# 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. import unittest diff --git a/tests/test_llama_index_handler.py b/tests/test_llama_index_handler.py index 276b42d..cbce7bb 100644 --- a/tests/test_llama_index_handler.py +++ b/tests/test_llama_index_handler.py @@ -1,16 +1,16 @@ -# Copyright 2021-present, the Recognai S.L. team. +# Copyright 2024-present, Argilla, Inc. # -# 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 +# 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 +# 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. +# 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. import inspect import unittest