From 72193332644e39b6585b28e0fb70011ae2ade6ca Mon Sep 17 00:00:00 2001 From: Raghotham Murthy Date: Tue, 2 Dec 2025 17:50:02 -0800 Subject: [PATCH] chore: add license header on all files --- .pre-commit-config.yaml | 11 +++++++++++ scripts/license_header.txt | 5 +++++ src/llama_stack_client/resources/batches.py | 6 ++++++ src/llama_stack_client/resources/beta/__init__.py | 6 ++++++ src/llama_stack_client/resources/beta/beta.py | 6 ++++++ src/llama_stack_client/resources/prompts/__init__.py | 6 ++++++ src/llama_stack_client/resources/prompts/prompts.py | 6 ++++++ src/llama_stack_client/resources/prompts/versions.py | 6 ++++++ src/llama_stack_client/types/batch_cancel_response.py | 6 ++++++ src/llama_stack_client/types/batch_create_params.py | 6 ++++++ src/llama_stack_client/types/batch_create_response.py | 6 ++++++ src/llama_stack_client/types/batch_list_params.py | 6 ++++++ src/llama_stack_client/types/batch_list_response.py | 6 ++++++ .../types/batch_retrieve_response.py | 6 ++++++ src/llama_stack_client/types/beta/__init__.py | 6 ++++++ .../types/conversations/item_delete_response.py | 6 ++++++ src/llama_stack_client/types/list_prompts_response.py | 6 ++++++ src/llama_stack_client/types/model_register_params.py | 6 ++++++ .../types/model_register_response.py | 6 ++++++ .../types/model_retrieve_response.py | 6 ++++++ src/llama_stack_client/types/prompt.py | 6 ++++++ src/llama_stack_client/types/prompt_create_params.py | 6 ++++++ src/llama_stack_client/types/prompt_list_response.py | 6 ++++++ .../types/prompt_retrieve_params.py | 6 ++++++ .../types/prompt_set_default_version_params.py | 6 ++++++ src/llama_stack_client/types/prompt_update_params.py | 6 ++++++ src/llama_stack_client/types/prompts/__init__.py | 6 ++++++ src/llama_stack_client/types/route_list_params.py | 6 ++++++ .../types/scoring_function_register_params.py | 6 ++++++ src/llama_stack_client/types/shared/param_type.py | 6 ++++++ .../types/shield_register_params.py | 6 ++++++ .../types/toolgroup_register_params.py | 6 ++++++ .../types/vector_stores/file_content_params.py | 6 ++++++ tests/api_resources/beta/__init__.py | 6 ++++++ tests/api_resources/prompts/__init__.py | 6 ++++++ tests/api_resources/prompts/test_versions.py | 6 ++++++ tests/api_resources/test_batches.py | 6 ++++++ tests/api_resources/test_prompts.py | 6 ++++++ 38 files changed, 232 insertions(+) create mode 100644 scripts/license_header.txt diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index b55a0a86..6d39e1ff 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -55,6 +55,17 @@ repos: # - id: markdown-link-check # args: ['--quiet'] + +- repo: https://github.com/Lucas-C/pre-commit-hooks + rev: v1.5.5 + hooks: + - id: insert-license + files: \.py$|\.sh$ + args: + - --license-filepath + - scripts/license_header.txt + + ci: autofix_commit_msg: 🎨 [pre-commit.ci] Auto format from pre-commit.com hooks autoupdate_commit_msg: ⬆ [pre-commit.ci] pre-commit autoupdate diff --git a/scripts/license_header.txt b/scripts/license_header.txt new file mode 100644 index 00000000..cfe551f5 --- /dev/null +++ b/scripts/license_header.txt @@ -0,0 +1,5 @@ +Copyright (c) Meta Platforms, Inc. and affiliates. +All rights reserved. + +This source code is licensed under the terms described in the LICENSE file in +the root directory of this source tree. diff --git a/src/llama_stack_client/resources/batches.py b/src/llama_stack_client/resources/batches.py index 94afa057..0f0a46ae 100644 --- a/src/llama_stack_client/resources/batches.py +++ b/src/llama_stack_client/resources/batches.py @@ -1,3 +1,9 @@ +# Copyright (c) Meta Platforms, Inc. and affiliates. +# All rights reserved. +# +# This source code is licensed under the terms described in the LICENSE file in +# the root directory of this source tree. + # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. from __future__ import annotations diff --git a/src/llama_stack_client/resources/beta/__init__.py b/src/llama_stack_client/resources/beta/__init__.py index 6fd69c43..f247fcee 100644 --- a/src/llama_stack_client/resources/beta/__init__.py +++ b/src/llama_stack_client/resources/beta/__init__.py @@ -1,3 +1,9 @@ +# Copyright (c) Meta Platforms, Inc. and affiliates. +# All rights reserved. +# +# This source code is licensed under the terms described in the LICENSE file in +# the root directory of this source tree. + # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. from .beta import ( diff --git a/src/llama_stack_client/resources/beta/beta.py b/src/llama_stack_client/resources/beta/beta.py index 7bf1c711..2fba0f7b 100644 --- a/src/llama_stack_client/resources/beta/beta.py +++ b/src/llama_stack_client/resources/beta/beta.py @@ -1,3 +1,9 @@ +# Copyright (c) Meta Platforms, Inc. and affiliates. +# All rights reserved. +# +# This source code is licensed under the terms described in the LICENSE file in +# the root directory of this source tree. + # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. from __future__ import annotations diff --git a/src/llama_stack_client/resources/prompts/__init__.py b/src/llama_stack_client/resources/prompts/__init__.py index d8c5c535..36f20be5 100644 --- a/src/llama_stack_client/resources/prompts/__init__.py +++ b/src/llama_stack_client/resources/prompts/__init__.py @@ -1,3 +1,9 @@ +# Copyright (c) Meta Platforms, Inc. and affiliates. +# All rights reserved. +# +# This source code is licensed under the terms described in the LICENSE file in +# the root directory of this source tree. + # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. from .prompts import ( diff --git a/src/llama_stack_client/resources/prompts/prompts.py b/src/llama_stack_client/resources/prompts/prompts.py index 514c6e28..154aeb0b 100644 --- a/src/llama_stack_client/resources/prompts/prompts.py +++ b/src/llama_stack_client/resources/prompts/prompts.py @@ -1,3 +1,9 @@ +# Copyright (c) Meta Platforms, Inc. and affiliates. +# All rights reserved. +# +# This source code is licensed under the terms described in the LICENSE file in +# the root directory of this source tree. + # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. from __future__ import annotations diff --git a/src/llama_stack_client/resources/prompts/versions.py b/src/llama_stack_client/resources/prompts/versions.py index 4572bbd8..d590050e 100644 --- a/src/llama_stack_client/resources/prompts/versions.py +++ b/src/llama_stack_client/resources/prompts/versions.py @@ -1,3 +1,9 @@ +# Copyright (c) Meta Platforms, Inc. and affiliates. +# All rights reserved. +# +# This source code is licensed under the terms described in the LICENSE file in +# the root directory of this source tree. + # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. from __future__ import annotations diff --git a/src/llama_stack_client/types/batch_cancel_response.py b/src/llama_stack_client/types/batch_cancel_response.py index 2408eaa5..97d8070d 100644 --- a/src/llama_stack_client/types/batch_cancel_response.py +++ b/src/llama_stack_client/types/batch_cancel_response.py @@ -1,3 +1,9 @@ +# Copyright (c) Meta Platforms, Inc. and affiliates. +# All rights reserved. +# +# This source code is licensed under the terms described in the LICENSE file in +# the root directory of this source tree. + # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import builtins diff --git a/src/llama_stack_client/types/batch_create_params.py b/src/llama_stack_client/types/batch_create_params.py index b22d9cad..64ebc841 100644 --- a/src/llama_stack_client/types/batch_create_params.py +++ b/src/llama_stack_client/types/batch_create_params.py @@ -1,3 +1,9 @@ +# Copyright (c) Meta Platforms, Inc. and affiliates. +# All rights reserved. +# +# This source code is licensed under the terms described in the LICENSE file in +# the root directory of this source tree. + # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. from __future__ import annotations diff --git a/src/llama_stack_client/types/batch_create_response.py b/src/llama_stack_client/types/batch_create_response.py index c1255f93..a3f12f93 100644 --- a/src/llama_stack_client/types/batch_create_response.py +++ b/src/llama_stack_client/types/batch_create_response.py @@ -1,3 +1,9 @@ +# Copyright (c) Meta Platforms, Inc. and affiliates. +# All rights reserved. +# +# This source code is licensed under the terms described in the LICENSE file in +# the root directory of this source tree. + # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import builtins diff --git a/src/llama_stack_client/types/batch_list_params.py b/src/llama_stack_client/types/batch_list_params.py index c5aecbec..78b78ff0 100644 --- a/src/llama_stack_client/types/batch_list_params.py +++ b/src/llama_stack_client/types/batch_list_params.py @@ -1,3 +1,9 @@ +# Copyright (c) Meta Platforms, Inc. and affiliates. +# All rights reserved. +# +# This source code is licensed under the terms described in the LICENSE file in +# the root directory of this source tree. + # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. from __future__ import annotations diff --git a/src/llama_stack_client/types/batch_list_response.py b/src/llama_stack_client/types/batch_list_response.py index 5064ef18..236ec213 100644 --- a/src/llama_stack_client/types/batch_list_response.py +++ b/src/llama_stack_client/types/batch_list_response.py @@ -1,3 +1,9 @@ +# Copyright (c) Meta Platforms, Inc. and affiliates. +# All rights reserved. +# +# This source code is licensed under the terms described in the LICENSE file in +# the root directory of this source tree. + # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import builtins diff --git a/src/llama_stack_client/types/batch_retrieve_response.py b/src/llama_stack_client/types/batch_retrieve_response.py index b866a740..429d4f60 100644 --- a/src/llama_stack_client/types/batch_retrieve_response.py +++ b/src/llama_stack_client/types/batch_retrieve_response.py @@ -1,3 +1,9 @@ +# Copyright (c) Meta Platforms, Inc. and affiliates. +# All rights reserved. +# +# This source code is licensed under the terms described in the LICENSE file in +# the root directory of this source tree. + # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import builtins diff --git a/src/llama_stack_client/types/beta/__init__.py b/src/llama_stack_client/types/beta/__init__.py index aab8d1b8..3f9f5033 100644 --- a/src/llama_stack_client/types/beta/__init__.py +++ b/src/llama_stack_client/types/beta/__init__.py @@ -1,3 +1,9 @@ +# Copyright (c) Meta Platforms, Inc. and affiliates. +# All rights reserved. +# +# This source code is licensed under the terms described in the LICENSE file in +# the root directory of this source tree. + # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. from __future__ import annotations diff --git a/src/llama_stack_client/types/conversations/item_delete_response.py b/src/llama_stack_client/types/conversations/item_delete_response.py index af7b7f64..2eac4e67 100644 --- a/src/llama_stack_client/types/conversations/item_delete_response.py +++ b/src/llama_stack_client/types/conversations/item_delete_response.py @@ -1,3 +1,9 @@ +# Copyright (c) Meta Platforms, Inc. and affiliates. +# All rights reserved. +# +# This source code is licensed under the terms described in the LICENSE file in +# the root directory of this source tree. + # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. from typing import Optional diff --git a/src/llama_stack_client/types/list_prompts_response.py b/src/llama_stack_client/types/list_prompts_response.py index cc5058d3..6e564602 100644 --- a/src/llama_stack_client/types/list_prompts_response.py +++ b/src/llama_stack_client/types/list_prompts_response.py @@ -1,3 +1,9 @@ +# Copyright (c) Meta Platforms, Inc. and affiliates. +# All rights reserved. +# +# This source code is licensed under the terms described in the LICENSE file in +# the root directory of this source tree. + # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. from .._models import BaseModel diff --git a/src/llama_stack_client/types/model_register_params.py b/src/llama_stack_client/types/model_register_params.py index 1b2b459d..de00d8d6 100644 --- a/src/llama_stack_client/types/model_register_params.py +++ b/src/llama_stack_client/types/model_register_params.py @@ -1,3 +1,9 @@ +# Copyright (c) Meta Platforms, Inc. and affiliates. +# All rights reserved. +# +# This source code is licensed under the terms described in the LICENSE file in +# the root directory of this source tree. + # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. from __future__ import annotations diff --git a/src/llama_stack_client/types/model_register_response.py b/src/llama_stack_client/types/model_register_response.py index bf9ada43..13bee478 100644 --- a/src/llama_stack_client/types/model_register_response.py +++ b/src/llama_stack_client/types/model_register_response.py @@ -1,3 +1,9 @@ +# Copyright (c) Meta Platforms, Inc. and affiliates. +# All rights reserved. +# +# This source code is licensed under the terms described in the LICENSE file in +# the root directory of this source tree. + # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. from typing import Dict, Optional diff --git a/src/llama_stack_client/types/model_retrieve_response.py b/src/llama_stack_client/types/model_retrieve_response.py index 3bef29d9..2aae408f 100644 --- a/src/llama_stack_client/types/model_retrieve_response.py +++ b/src/llama_stack_client/types/model_retrieve_response.py @@ -1,3 +1,9 @@ +# Copyright (c) Meta Platforms, Inc. and affiliates. +# All rights reserved. +# +# This source code is licensed under the terms described in the LICENSE file in +# the root directory of this source tree. + # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. from typing import Dict, Optional diff --git a/src/llama_stack_client/types/prompt.py b/src/llama_stack_client/types/prompt.py index f3820f6a..7a151824 100644 --- a/src/llama_stack_client/types/prompt.py +++ b/src/llama_stack_client/types/prompt.py @@ -1,3 +1,9 @@ +# Copyright (c) Meta Platforms, Inc. and affiliates. +# All rights reserved. +# +# This source code is licensed under the terms described in the LICENSE file in +# the root directory of this source tree. + # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. from typing import List, Optional diff --git a/src/llama_stack_client/types/prompt_create_params.py b/src/llama_stack_client/types/prompt_create_params.py index 0729a56b..d31305d7 100644 --- a/src/llama_stack_client/types/prompt_create_params.py +++ b/src/llama_stack_client/types/prompt_create_params.py @@ -1,3 +1,9 @@ +# Copyright (c) Meta Platforms, Inc. and affiliates. +# All rights reserved. +# +# This source code is licensed under the terms described in the LICENSE file in +# the root directory of this source tree. + # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. from __future__ import annotations diff --git a/src/llama_stack_client/types/prompt_list_response.py b/src/llama_stack_client/types/prompt_list_response.py index 37ac9b55..4c002a6f 100644 --- a/src/llama_stack_client/types/prompt_list_response.py +++ b/src/llama_stack_client/types/prompt_list_response.py @@ -1,3 +1,9 @@ +# Copyright (c) Meta Platforms, Inc. and affiliates. +# All rights reserved. +# +# This source code is licensed under the terms described in the LICENSE file in +# the root directory of this source tree. + # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. from typing import List diff --git a/src/llama_stack_client/types/prompt_retrieve_params.py b/src/llama_stack_client/types/prompt_retrieve_params.py index 0beb2ea2..1911cc56 100644 --- a/src/llama_stack_client/types/prompt_retrieve_params.py +++ b/src/llama_stack_client/types/prompt_retrieve_params.py @@ -1,3 +1,9 @@ +# Copyright (c) Meta Platforms, Inc. and affiliates. +# All rights reserved. +# +# This source code is licensed under the terms described in the LICENSE file in +# the root directory of this source tree. + # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. from __future__ import annotations diff --git a/src/llama_stack_client/types/prompt_set_default_version_params.py b/src/llama_stack_client/types/prompt_set_default_version_params.py index 4ce6aae7..c35c2cb8 100644 --- a/src/llama_stack_client/types/prompt_set_default_version_params.py +++ b/src/llama_stack_client/types/prompt_set_default_version_params.py @@ -1,3 +1,9 @@ +# Copyright (c) Meta Platforms, Inc. and affiliates. +# All rights reserved. +# +# This source code is licensed under the terms described in the LICENSE file in +# the root directory of this source tree. + # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. from __future__ import annotations diff --git a/src/llama_stack_client/types/prompt_update_params.py b/src/llama_stack_client/types/prompt_update_params.py index ee827fa5..0acab3a1 100644 --- a/src/llama_stack_client/types/prompt_update_params.py +++ b/src/llama_stack_client/types/prompt_update_params.py @@ -1,3 +1,9 @@ +# Copyright (c) Meta Platforms, Inc. and affiliates. +# All rights reserved. +# +# This source code is licensed under the terms described in the LICENSE file in +# the root directory of this source tree. + # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. from __future__ import annotations diff --git a/src/llama_stack_client/types/prompts/__init__.py b/src/llama_stack_client/types/prompts/__init__.py index f8ee8b14..d14ed874 100644 --- a/src/llama_stack_client/types/prompts/__init__.py +++ b/src/llama_stack_client/types/prompts/__init__.py @@ -1,3 +1,9 @@ +# Copyright (c) Meta Platforms, Inc. and affiliates. +# All rights reserved. +# +# This source code is licensed under the terms described in the LICENSE file in +# the root directory of this source tree. + # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. from __future__ import annotations diff --git a/src/llama_stack_client/types/route_list_params.py b/src/llama_stack_client/types/route_list_params.py index 657e128c..8517e4a6 100644 --- a/src/llama_stack_client/types/route_list_params.py +++ b/src/llama_stack_client/types/route_list_params.py @@ -1,3 +1,9 @@ +# Copyright (c) Meta Platforms, Inc. and affiliates. +# All rights reserved. +# +# This source code is licensed under the terms described in the LICENSE file in +# the root directory of this source tree. + # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. from __future__ import annotations diff --git a/src/llama_stack_client/types/scoring_function_register_params.py b/src/llama_stack_client/types/scoring_function_register_params.py index 729ecac5..ca0419cd 100644 --- a/src/llama_stack_client/types/scoring_function_register_params.py +++ b/src/llama_stack_client/types/scoring_function_register_params.py @@ -1,3 +1,9 @@ +# Copyright (c) Meta Platforms, Inc. and affiliates. +# All rights reserved. +# +# This source code is licensed under the terms described in the LICENSE file in +# the root directory of this source tree. + # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. from __future__ import annotations diff --git a/src/llama_stack_client/types/shared/param_type.py b/src/llama_stack_client/types/shared/param_type.py index 6b00b99b..8bec2b4d 100644 --- a/src/llama_stack_client/types/shared/param_type.py +++ b/src/llama_stack_client/types/shared/param_type.py @@ -1,3 +1,9 @@ +# Copyright (c) Meta Platforms, Inc. and affiliates. +# All rights reserved. +# +# This source code is licensed under the terms described in the LICENSE file in +# the root directory of this source tree. + # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. from typing import Union, Optional diff --git a/src/llama_stack_client/types/shield_register_params.py b/src/llama_stack_client/types/shield_register_params.py index a6bac640..fe59c0e1 100644 --- a/src/llama_stack_client/types/shield_register_params.py +++ b/src/llama_stack_client/types/shield_register_params.py @@ -1,3 +1,9 @@ +# Copyright (c) Meta Platforms, Inc. and affiliates. +# All rights reserved. +# +# This source code is licensed under the terms described in the LICENSE file in +# the root directory of this source tree. + # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. from __future__ import annotations diff --git a/src/llama_stack_client/types/toolgroup_register_params.py b/src/llama_stack_client/types/toolgroup_register_params.py index 2ac7e984..23205f0c 100644 --- a/src/llama_stack_client/types/toolgroup_register_params.py +++ b/src/llama_stack_client/types/toolgroup_register_params.py @@ -1,3 +1,9 @@ +# Copyright (c) Meta Platforms, Inc. and affiliates. +# All rights reserved. +# +# This source code is licensed under the terms described in the LICENSE file in +# the root directory of this source tree. + # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. from __future__ import annotations diff --git a/src/llama_stack_client/types/vector_stores/file_content_params.py b/src/llama_stack_client/types/vector_stores/file_content_params.py index d911da9b..6d055e1d 100644 --- a/src/llama_stack_client/types/vector_stores/file_content_params.py +++ b/src/llama_stack_client/types/vector_stores/file_content_params.py @@ -1,3 +1,9 @@ +# Copyright (c) Meta Platforms, Inc. and affiliates. +# All rights reserved. +# +# This source code is licensed under the terms described in the LICENSE file in +# the root directory of this source tree. + # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. from __future__ import annotations diff --git a/tests/api_resources/beta/__init__.py b/tests/api_resources/beta/__init__.py index fd8019a9..6a8e62e9 100644 --- a/tests/api_resources/beta/__init__.py +++ b/tests/api_resources/beta/__init__.py @@ -1 +1,7 @@ +# Copyright (c) Meta Platforms, Inc. and affiliates. +# All rights reserved. +# +# This source code is licensed under the terms described in the LICENSE file in +# the root directory of this source tree. + # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. diff --git a/tests/api_resources/prompts/__init__.py b/tests/api_resources/prompts/__init__.py index fd8019a9..6a8e62e9 100644 --- a/tests/api_resources/prompts/__init__.py +++ b/tests/api_resources/prompts/__init__.py @@ -1 +1,7 @@ +# Copyright (c) Meta Platforms, Inc. and affiliates. +# All rights reserved. +# +# This source code is licensed under the terms described in the LICENSE file in +# the root directory of this source tree. + # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. diff --git a/tests/api_resources/prompts/test_versions.py b/tests/api_resources/prompts/test_versions.py index 2955203b..00e9b805 100644 --- a/tests/api_resources/prompts/test_versions.py +++ b/tests/api_resources/prompts/test_versions.py @@ -1,3 +1,9 @@ +# Copyright (c) Meta Platforms, Inc. and affiliates. +# All rights reserved. +# +# This source code is licensed under the terms described in the LICENSE file in +# the root directory of this source tree. + # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. from __future__ import annotations diff --git a/tests/api_resources/test_batches.py b/tests/api_resources/test_batches.py index 90dbfa26..0364d9c4 100644 --- a/tests/api_resources/test_batches.py +++ b/tests/api_resources/test_batches.py @@ -1,3 +1,9 @@ +# Copyright (c) Meta Platforms, Inc. and affiliates. +# All rights reserved. +# +# This source code is licensed under the terms described in the LICENSE file in +# the root directory of this source tree. + # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. from __future__ import annotations diff --git a/tests/api_resources/test_prompts.py b/tests/api_resources/test_prompts.py index bf49479e..5b7a81c9 100644 --- a/tests/api_resources/test_prompts.py +++ b/tests/api_resources/test_prompts.py @@ -1,3 +1,9 @@ +# Copyright (c) Meta Platforms, Inc. and affiliates. +# All rights reserved. +# +# This source code is licensed under the terms described in the LICENSE file in +# the root directory of this source tree. + # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. from __future__ import annotations