From 56317b41b8681f3faea17c77756355d4fe05b9b7 Mon Sep 17 00:00:00 2001 From: Charlie Doern Date: Thu, 30 Apr 2026 19:55:30 -0400 Subject: [PATCH 1/2] chore: drop insert-license pre-commit hook and Meta header file This is no longer a Meta project, so we don't want pre-commit re-stamping new files with the Meta copyright header. - Remove the insert-license hook from .pre-commit-config.yaml - Delete scripts/license_header.txt (the Meta-attribution header it injected) Existing headers in source files are left in place for now; they can be scrubbed in a follow-up. Signed-off-by: Charlie Doern --- .pre-commit-config.yaml | 10 ---------- scripts/license_header.txt | 5 ----- 2 files changed, 15 deletions(-) delete mode 100644 scripts/license_header.txt diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 9f9d1648..780ca4c9 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -56,16 +56,6 @@ repos: # args: ['--quiet'] -- repo: https://github.com/Lucas-C/pre-commit-hooks - rev: v1.5.5 - hooks: - - id: insert-license - files: ^src/(ogx_client|llama_stack_client)/lib/.*\.(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 deleted file mode 100644 index cfe551f5..00000000 --- a/scripts/license_header.txt +++ /dev/null @@ -1,5 +0,0 @@ -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. From 88ae78d16856036bf9a3a534e77e6432834d70d9 Mon Sep 17 00:00:00 2001 From: Charlie Doern Date: Thu, 30 Apr 2026 19:58:07 -0400 Subject: [PATCH 2/2] chore: strip Meta copyright headers from source files This is no longer a Meta project. Removes the 5-line "Copyright (c) Meta Platforms, Inc. and affiliates" block from every .py / .sh under the repo (286 files). Pairs with dropping the insert-license pre-commit hook in the previous commit so the headers don't get re-stamped. Signed-off-by: Charlie Doern --- examples/interactive_agent_cli.py | 5 ----- scripts/utils/ruffen-docs.py | 6 ------ scripts/utils/upload-artifact.sh | 6 ------ src/ogx_client/__init__.py | 6 ------ src/ogx_client/_base_client.py | 6 ------ src/ogx_client/_compat.py | 6 ------ src/ogx_client/_constants.py | 6 ------ src/ogx_client/_exceptions.py | 6 ------ src/ogx_client/_files.py | 6 ------ src/ogx_client/_models.py | 6 ------ src/ogx_client/_qs.py | 6 ------ src/ogx_client/_resource.py | 6 ------ src/ogx_client/_response.py | 6 ------ src/ogx_client/_streaming.py | 6 ------ src/ogx_client/_types.py | 6 ------ src/ogx_client/_utils/__init__.py | 6 ------ src/ogx_client/_utils/_compat.py | 6 ------ src/ogx_client/_utils/_datetime_parse.py | 6 ------ src/ogx_client/_utils/_json.py | 6 ------ src/ogx_client/_utils/_path.py | 6 ------ src/ogx_client/_utils/_proxy.py | 6 ------ src/ogx_client/_utils/_reflection.py | 6 ------ src/ogx_client/_utils/_streams.py | 6 ------ src/ogx_client/_utils/_sync.py | 6 ------ src/ogx_client/_utils/_transform.py | 6 ------ src/ogx_client/_utils/_typing.py | 6 ------ src/ogx_client/_utils/_utils.py | 6 ------ src/ogx_client/_version.py | 6 ------ src/ogx_client/_wrappers.py | 6 ------ src/ogx_client/lib/__init__.py | 6 ------ src/ogx_client/lib/agents/__init__.py | 5 ----- src/ogx_client/lib/agents/agent.py | 5 ----- src/ogx_client/lib/agents/client_tool.py | 6 ------ src/ogx_client/lib/agents/event_logger.py | 6 ------ src/ogx_client/lib/agents/event_synthesizer.py | 6 ------ src/ogx_client/lib/agents/react/__init__.py | 5 ----- src/ogx_client/lib/agents/react/agent.py | 5 ----- src/ogx_client/lib/agents/react/prompts.py | 6 ------ src/ogx_client/lib/agents/react/tool_parser.py | 6 ------ src/ogx_client/lib/agents/tool_parser.py | 6 ------ src/ogx_client/lib/agents/turn_events.py | 6 ------ src/ogx_client/lib/agents/types.py | 6 ------ src/ogx_client/lib/cli/__init__.py | 6 ------ src/ogx_client/lib/cli/common/__init__.py | 5 ----- src/ogx_client/lib/cli/common/utils.py | 5 ----- src/ogx_client/lib/cli/configure.py | 6 ------ src/ogx_client/lib/cli/constants.py | 6 ------ src/ogx_client/lib/cli/datasets/__init__.py | 6 ------ src/ogx_client/lib/cli/datasets/datasets.py | 5 ----- src/ogx_client/lib/cli/datasets/list.py | 6 ------ src/ogx_client/lib/cli/datasets/register.py | 5 ----- src/ogx_client/lib/cli/datasets/unregister.py | 5 ----- src/ogx_client/lib/cli/eval/__init__.py | 6 ------ src/ogx_client/lib/cli/eval/eval.py | 7 ------- src/ogx_client/lib/cli/eval/run_benchmark.py | 6 ------ src/ogx_client/lib/cli/eval/run_scoring.py | 6 ------ src/ogx_client/lib/cli/eval/utils.py | 6 ------ src/ogx_client/lib/cli/eval_tasks/__init__.py | 6 ------ src/ogx_client/lib/cli/eval_tasks/eval_tasks.py | 7 ------- src/ogx_client/lib/cli/eval_tasks/list.py | 6 ------ src/ogx_client/lib/cli/inference/__init__.py | 6 ------ src/ogx_client/lib/cli/inference/inference.py | 6 ------ src/ogx_client/lib/cli/inspect/__init__.py | 6 ------ src/ogx_client/lib/cli/inspect/inspect.py | 6 ------ src/ogx_client/lib/cli/inspect/version.py | 6 ------ src/ogx_client/lib/cli/llama_stack_client.py | 6 ------ src/ogx_client/lib/cli/models/__init__.py | 6 ------ src/ogx_client/lib/cli/models/models.py | 6 ------ src/ogx_client/lib/cli/providers/__init__.py | 6 ------ src/ogx_client/lib/cli/providers/inspect.py | 6 ------ src/ogx_client/lib/cli/providers/list.py | 6 ------ src/ogx_client/lib/cli/providers/providers.py | 6 ------ src/ogx_client/lib/cli/scoring_functions/__init__.py | 6 ------ src/ogx_client/lib/cli/scoring_functions/list.py | 6 ------ .../lib/cli/scoring_functions/scoring_functions.py | 6 ------ src/ogx_client/lib/cli/shields/__init__.py | 6 ------ src/ogx_client/lib/cli/shields/shields.py | 6 ------ src/ogx_client/lib/cli/vector_stores/__init__.py | 6 ------ src/ogx_client/lib/cli/vector_stores/vector_stores.py | 6 ------ src/ogx_client/lib/inference/__init__.py | 5 ----- src/ogx_client/lib/inference/event_logger.py | 5 ----- src/ogx_client/lib/inference/utils.py | 6 ------ src/ogx_client/lib/inline/inline.py | 5 ----- src/ogx_client/lib/stream_printer.py | 6 ------ src/ogx_client/lib/tools/mcp_oauth.py | 6 ------ src/ogx_client/pagination.py | 6 ------ src/ogx_client/resources/__init__.py | 6 ------ src/ogx_client/resources/alpha/__init__.py | 6 ------ src/ogx_client/resources/alpha/admin.py | 6 ------ src/ogx_client/resources/alpha/alpha.py | 6 ------ src/ogx_client/resources/alpha/inference.py | 6 ------ src/ogx_client/resources/batches.py | 6 ------ src/ogx_client/resources/chat/__init__.py | 6 ------ src/ogx_client/resources/chat/chat.py | 6 ------ src/ogx_client/resources/chat/completions.py | 6 ------ src/ogx_client/resources/completions.py | 6 ------ src/ogx_client/resources/conversations/__init__.py | 6 ------ src/ogx_client/resources/conversations/conversations.py | 6 ------ src/ogx_client/resources/conversations/items.py | 6 ------ src/ogx_client/resources/embeddings.py | 6 ------ src/ogx_client/resources/files.py | 6 ------ src/ogx_client/resources/inspect.py | 6 ------ src/ogx_client/resources/models/__init__.py | 6 ------ src/ogx_client/resources/models/models.py | 6 ------ src/ogx_client/resources/models/openai.py | 6 ------ src/ogx_client/resources/moderations.py | 6 ------ src/ogx_client/resources/prompts/__init__.py | 6 ------ src/ogx_client/resources/prompts/prompts.py | 6 ------ src/ogx_client/resources/prompts/versions.py | 6 ------ src/ogx_client/resources/providers.py | 6 ------ src/ogx_client/resources/responses/__init__.py | 6 ------ src/ogx_client/resources/responses/input_items.py | 6 ------ src/ogx_client/resources/responses/responses.py | 6 ------ src/ogx_client/resources/routes.py | 6 ------ src/ogx_client/resources/safety.py | 6 ------ src/ogx_client/resources/shields.py | 6 ------ src/ogx_client/resources/vector_io.py | 6 ------ src/ogx_client/resources/vector_stores/__init__.py | 6 ------ src/ogx_client/resources/vector_stores/file_batches.py | 6 ------ src/ogx_client/resources/vector_stores/files.py | 6 ------ src/ogx_client/resources/vector_stores/vector_stores.py | 6 ------ src/ogx_client/types/__init__.py | 6 ------ src/ogx_client/types/alpha/__init__.py | 6 ------ src/ogx_client/types/alpha/admin_list_routes_params.py | 6 ------ src/ogx_client/types/alpha/inference_rerank_params.py | 6 ------ src/ogx_client/types/alpha/inference_rerank_response.py | 6 ------ .../types/alpha/post_training/job_artifacts_params.py | 6 ------ .../types/alpha/post_training/job_cancel_params.py | 6 ------ .../types/alpha/post_training/job_status_params.py | 6 ------ src/ogx_client/types/batch_cancel_response.py | 6 ------ src/ogx_client/types/batch_create_params.py | 6 ------ src/ogx_client/types/batch_create_response.py | 6 ------ src/ogx_client/types/batch_list_params.py | 6 ------ src/ogx_client/types/batch_list_response.py | 6 ------ src/ogx_client/types/batch_retrieve_response.py | 6 ------ src/ogx_client/types/chat/__init__.py | 6 ------ src/ogx_client/types/chat/completion_create_params.py | 6 ------ src/ogx_client/types/chat/completion_create_response.py | 6 ------ src/ogx_client/types/chat/completion_list_params.py | 6 ------ src/ogx_client/types/chat/completion_list_response.py | 6 ------ src/ogx_client/types/chat/completion_retrieve_response.py | 6 ------ src/ogx_client/types/chat_completion_chunk.py | 6 ------ src/ogx_client/types/completion_create_params.py | 6 ------ src/ogx_client/types/completion_create_response.py | 6 ------ src/ogx_client/types/conversation_create_params.py | 6 ------ src/ogx_client/types/conversation_delete_response.py | 6 ------ src/ogx_client/types/conversation_object.py | 6 ------ src/ogx_client/types/conversation_update_params.py | 6 ------ src/ogx_client/types/conversations/__init__.py | 6 ------ src/ogx_client/types/conversations/item_create_params.py | 6 ------ src/ogx_client/types/conversations/item_create_response.py | 6 ------ src/ogx_client/types/conversations/item_delete_response.py | 6 ------ src/ogx_client/types/conversations/item_get_response.py | 6 ------ src/ogx_client/types/conversations/item_list_params.py | 6 ------ src/ogx_client/types/conversations/item_list_response.py | 6 ------ src/ogx_client/types/create_embeddings_response.py | 6 ------ src/ogx_client/types/create_response.py | 6 ------ src/ogx_client/types/delete_file_response.py | 6 ------ src/ogx_client/types/embedding_create_params.py | 6 ------ src/ogx_client/types/file.py | 6 ------ src/ogx_client/types/file_content_response.py | 6 ------ src/ogx_client/types/file_create_params.py | 6 ------ src/ogx_client/types/file_list_params.py | 6 ------ src/ogx_client/types/list_files_response.py | 6 ------ src/ogx_client/types/list_models_response.py | 6 ------ src/ogx_client/types/list_prompts_response.py | 6 ------ src/ogx_client/types/list_shields_response.py | 6 ------ src/ogx_client/types/list_vector_stores_response.py | 6 ------ src/ogx_client/types/model.py | 6 ------ src/ogx_client/types/model_retrieve_response.py | 6 ------ src/ogx_client/types/models/__init__.py | 6 ------ src/ogx_client/types/moderation_create_params.py | 6 ------ src/ogx_client/types/prompt.py | 6 ------ src/ogx_client/types/prompt_create_params.py | 6 ------ src/ogx_client/types/prompt_list_response.py | 6 ------ src/ogx_client/types/prompt_retrieve_params.py | 6 ------ src/ogx_client/types/prompt_set_default_version_params.py | 6 ------ src/ogx_client/types/prompt_update_params.py | 6 ------ src/ogx_client/types/prompts/__init__.py | 6 ------ src/ogx_client/types/provider_list_response.py | 6 ------ src/ogx_client/types/query_chunks_response.py | 6 ------ src/ogx_client/types/response_create_params.py | 6 ------ src/ogx_client/types/response_delete_response.py | 6 ------ src/ogx_client/types/response_list_params.py | 6 ------ src/ogx_client/types/response_list_response.py | 6 ------ src/ogx_client/types/response_object.py | 6 ------ src/ogx_client/types/response_object_stream.py | 6 ------ src/ogx_client/types/responses/__init__.py | 6 ------ src/ogx_client/types/responses/input_item_list_params.py | 6 ------ src/ogx_client/types/responses/input_item_list_response.py | 6 ------ src/ogx_client/types/route_list_params.py | 6 ------ src/ogx_client/types/route_list_response.py | 6 ------ src/ogx_client/types/run_shield_response.py | 6 ------ src/ogx_client/types/safety_run_shield_params.py | 6 ------ src/ogx_client/types/scoring_fn_params.py | 6 ------ src/ogx_client/types/scoring_fn_params_param.py | 6 ------ src/ogx_client/types/shared/__init__.py | 6 ------ src/ogx_client/types/shared/health_info.py | 6 ------ src/ogx_client/types/shared/interleaved_content.py | 6 ------ src/ogx_client/types/shared/interleaved_content_item.py | 6 ------ src/ogx_client/types/shared/list_providers_response.py | 6 ------ src/ogx_client/types/shared/list_routes_response.py | 6 ------ src/ogx_client/types/shared/param_type.py | 6 ------ src/ogx_client/types/shared/provider_info.py | 6 ------ src/ogx_client/types/shared/route_info.py | 6 ------ src/ogx_client/types/shared/safety_violation.py | 6 ------ src/ogx_client/types/shared/sampling_params.py | 6 ------ src/ogx_client/types/shared/system_message.py | 6 ------ src/ogx_client/types/shared/version_info.py | 6 ------ src/ogx_client/types/shield.py | 6 ------ src/ogx_client/types/shield_list_response.py | 6 ------ src/ogx_client/types/shield_register_params.py | 6 ------ src/ogx_client/types/vector_io_insert_params.py | 6 ------ src/ogx_client/types/vector_io_query_params.py | 6 ------ src/ogx_client/types/vector_store.py | 6 ------ src/ogx_client/types/vector_store_create_params.py | 6 ------ src/ogx_client/types/vector_store_delete_response.py | 6 ------ src/ogx_client/types/vector_store_list_params.py | 6 ------ src/ogx_client/types/vector_store_search_params.py | 6 ------ src/ogx_client/types/vector_store_search_response.py | 6 ------ src/ogx_client/types/vector_store_update_params.py | 6 ------ src/ogx_client/types/vector_stores/__init__.py | 6 ------ .../types/vector_stores/file_batch_create_params.py | 6 ------ .../types/vector_stores/file_batch_list_files_params.py | 6 ------ src/ogx_client/types/vector_stores/file_content_params.py | 6 ------ .../types/vector_stores/file_content_response.py | 6 ------ src/ogx_client/types/vector_stores/file_create_params.py | 6 ------ src/ogx_client/types/vector_stores/file_delete_response.py | 6 ------ src/ogx_client/types/vector_stores/file_list_params.py | 6 ------ src/ogx_client/types/vector_stores/file_update_params.py | 6 ------ .../list_vector_store_files_in_batch_response.py | 6 ------ src/ogx_client/types/vector_stores/vector_store_file.py | 6 ------ .../types/vector_stores/vector_store_file_batches.py | 6 ------ tests/__init__.py | 6 ------ tests/api_resources/__init__.py | 6 ------ tests/api_resources/alpha/__init__.py | 6 ------ tests/api_resources/alpha/test_admin.py | 6 ------ tests/api_resources/alpha/test_inference.py | 6 ------ tests/api_resources/chat/__init__.py | 6 ------ tests/api_resources/chat/test_completions.py | 6 ------ tests/api_resources/conversations/__init__.py | 6 ------ tests/api_resources/conversations/test_items.py | 6 ------ tests/api_resources/models/__init__.py | 6 ------ tests/api_resources/models/test_openai.py | 6 ------ tests/api_resources/prompts/__init__.py | 6 ------ tests/api_resources/prompts/test_versions.py | 6 ------ tests/api_resources/responses/__init__.py | 6 ------ tests/api_resources/responses/test_input_items.py | 6 ------ tests/api_resources/test_batches.py | 6 ------ tests/api_resources/test_completions.py | 6 ------ tests/api_resources/test_conversations.py | 6 ------ tests/api_resources/test_embeddings.py | 6 ------ tests/api_resources/test_files.py | 6 ------ tests/api_resources/test_inspect.py | 6 ------ tests/api_resources/test_models.py | 6 ------ tests/api_resources/test_moderations.py | 6 ------ tests/api_resources/test_prompts.py | 6 ------ tests/api_resources/test_providers.py | 6 ------ tests/api_resources/test_responses.py | 6 ------ tests/api_resources/test_routes.py | 6 ------ tests/api_resources/test_safety.py | 6 ------ tests/api_resources/test_shields.py | 6 ------ tests/api_resources/test_vector_io.py | 6 ------ tests/api_resources/test_vector_stores.py | 6 ------ tests/api_resources/vector_stores/__init__.py | 6 ------ tests/api_resources/vector_stores/test_file_batches.py | 6 ------ tests/api_resources/vector_stores/test_files.py | 6 ------ tests/conftest.py | 6 ------ tests/integration/test_agent_responses_e2e.py | 6 ------ tests/integration/test_agent_turn_step_events.py | 6 ------ tests/lib/agents/test_agent_responses.py | 6 ------ tests/test_client.py | 6 ------ tests/test_extract_files.py | 6 ------ tests/test_files.py | 6 ------ tests/test_models.py | 6 ------ tests/test_qs.py | 6 ------ tests/test_required_args.py | 6 ------ tests/test_response.py | 6 ------ tests/test_streaming.py | 6 ------ tests/test_transform.py | 6 ------ tests/test_utils/test_datetime_parse.py | 6 ------ tests/test_utils/test_json.py | 6 ------ tests/test_utils/test_path.py | 6 ------ tests/test_utils/test_proxy.py | 6 ------ tests/test_utils/test_typing.py | 6 ------ tests/utils.py | 6 ------ 286 files changed, 1705 deletions(-) diff --git a/examples/interactive_agent_cli.py b/examples/interactive_agent_cli.py index 01607914..c79d9efe 100755 --- a/examples/interactive_agent_cli.py +++ b/examples/interactive_agent_cli.py @@ -1,9 +1,4 @@ #!/usr/bin/env python3 -# 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. """Interactive CLI for exploring agent turn/step events with server-side tools. Usage: diff --git a/scripts/utils/ruffen-docs.py b/scripts/utils/ruffen-docs.py index 8ed17bd0..0cf2bd2f 100644 --- a/scripts/utils/ruffen-docs.py +++ b/scripts/utils/ruffen-docs.py @@ -1,9 +1,3 @@ -# 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. - # fork of https://github.com/asottile/blacken-docs adapted for ruff from __future__ import annotations diff --git a/scripts/utils/upload-artifact.sh b/scripts/utils/upload-artifact.sh index 32bd7e9e..9d3e878f 100755 --- a/scripts/utils/upload-artifact.sh +++ b/scripts/utils/upload-artifact.sh @@ -1,10 +1,4 @@ #!/bin/bash -# 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. - set -exuo pipefail FILENAME=$(basename dist/*.whl) diff --git a/src/ogx_client/__init__.py b/src/ogx_client/__init__.py index 5966b3c9..8564ace6 100644 --- a/src/ogx_client/__init__.py +++ b/src/ogx_client/__init__.py @@ -1,9 +1,3 @@ -# 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 typing as _t diff --git a/src/ogx_client/_base_client.py b/src/ogx_client/_base_client.py index 557dadb1..a4918a2f 100644 --- a/src/ogx_client/_base_client.py +++ b/src/ogx_client/_base_client.py @@ -1,9 +1,3 @@ -# 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. - from __future__ import annotations import sys diff --git a/src/ogx_client/_compat.py b/src/ogx_client/_compat.py index db494546..e6690a4f 100644 --- a/src/ogx_client/_compat.py +++ b/src/ogx_client/_compat.py @@ -1,9 +1,3 @@ -# 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. - from __future__ import annotations from typing import TYPE_CHECKING, Any, Union, Generic, TypeVar, Callable, cast, overload diff --git a/src/ogx_client/_constants.py b/src/ogx_client/_constants.py index a65117ad..6ddf2c71 100644 --- a/src/ogx_client/_constants.py +++ b/src/ogx_client/_constants.py @@ -1,9 +1,3 @@ -# 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 httpx diff --git a/src/ogx_client/_exceptions.py b/src/ogx_client/_exceptions.py index f4b70661..9982d0c7 100644 --- a/src/ogx_client/_exceptions.py +++ b/src/ogx_client/_exceptions.py @@ -1,9 +1,3 @@ -# 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/ogx_client/_files.py b/src/ogx_client/_files.py index d710165d..686f0be6 100644 --- a/src/ogx_client/_files.py +++ b/src/ogx_client/_files.py @@ -1,9 +1,3 @@ -# 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. - from __future__ import annotations import io diff --git a/src/ogx_client/_models.py b/src/ogx_client/_models.py index 733780fd..29070e05 100644 --- a/src/ogx_client/_models.py +++ b/src/ogx_client/_models.py @@ -1,9 +1,3 @@ -# 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. - from __future__ import annotations import os diff --git a/src/ogx_client/_qs.py b/src/ogx_client/_qs.py index a73897c1..4127c19c 100644 --- a/src/ogx_client/_qs.py +++ b/src/ogx_client/_qs.py @@ -1,9 +1,3 @@ -# 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. - from __future__ import annotations from typing import Any, List, Tuple, Union, Mapping, TypeVar diff --git a/src/ogx_client/_resource.py b/src/ogx_client/_resource.py index e1d86aa0..a7a31813 100644 --- a/src/ogx_client/_resource.py +++ b/src/ogx_client/_resource.py @@ -1,9 +1,3 @@ -# 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/ogx_client/_response.py b/src/ogx_client/_response.py index de2302be..095f3c8c 100644 --- a/src/ogx_client/_response.py +++ b/src/ogx_client/_response.py @@ -1,9 +1,3 @@ -# 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. - from __future__ import annotations import os diff --git a/src/ogx_client/_streaming.py b/src/ogx_client/_streaming.py index 761b8ea7..1162c61a 100644 --- a/src/ogx_client/_streaming.py +++ b/src/ogx_client/_streaming.py @@ -1,9 +1,3 @@ -# 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. - # Note: initially copied from https://github.com/florimondmanca/httpx-sse/blob/master/src/httpx_sse/_decoders.py from __future__ import annotations diff --git a/src/ogx_client/_types.py b/src/ogx_client/_types.py index 06a420e9..f6636995 100644 --- a/src/ogx_client/_types.py +++ b/src/ogx_client/_types.py @@ -1,9 +1,3 @@ -# 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. - from __future__ import annotations from os import PathLike diff --git a/src/ogx_client/_utils/__init__.py b/src/ogx_client/_utils/__init__.py index f82bfad7..1c090e51 100644 --- a/src/ogx_client/_utils/__init__.py +++ b/src/ogx_client/_utils/__init__.py @@ -1,9 +1,3 @@ -# 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. - from ._path import path_template as path_template from ._sync import asyncify as asyncify from ._proxy import LazyProxy as LazyProxy diff --git a/src/ogx_client/_utils/_compat.py b/src/ogx_client/_utils/_compat.py index 6746f233..2c70b299 100644 --- a/src/ogx_client/_utils/_compat.py +++ b/src/ogx_client/_utils/_compat.py @@ -1,9 +1,3 @@ -# 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. - from __future__ import annotations import sys diff --git a/src/ogx_client/_utils/_datetime_parse.py b/src/ogx_client/_utils/_datetime_parse.py index 6a2c21d3..7cb9d9e6 100644 --- a/src/ogx_client/_utils/_datetime_parse.py +++ b/src/ogx_client/_utils/_datetime_parse.py @@ -1,9 +1,3 @@ -# 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. - """ This file contains code from https://github.com/pydantic/pydantic/blob/main/pydantic/v1/datetime_parse.py without the Pydantic v1 specific errors. diff --git a/src/ogx_client/_utils/_json.py b/src/ogx_client/_utils/_json.py index 68e73060..60584214 100644 --- a/src/ogx_client/_utils/_json.py +++ b/src/ogx_client/_utils/_json.py @@ -1,9 +1,3 @@ -# 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. - import json from typing import Any from datetime import datetime diff --git a/src/ogx_client/_utils/_path.py b/src/ogx_client/_utils/_path.py index 2859bdec..4d6e1e4c 100644 --- a/src/ogx_client/_utils/_path.py +++ b/src/ogx_client/_utils/_path.py @@ -1,9 +1,3 @@ -# 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. - from __future__ import annotations import re diff --git a/src/ogx_client/_utils/_proxy.py b/src/ogx_client/_utils/_proxy.py index b7be6f22..0f239a33 100644 --- a/src/ogx_client/_utils/_proxy.py +++ b/src/ogx_client/_utils/_proxy.py @@ -1,9 +1,3 @@ -# 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. - from __future__ import annotations from abc import ABC, abstractmethod diff --git a/src/ogx_client/_utils/_reflection.py b/src/ogx_client/_utils/_reflection.py index e42a78b5..89aa712a 100644 --- a/src/ogx_client/_utils/_reflection.py +++ b/src/ogx_client/_utils/_reflection.py @@ -1,9 +1,3 @@ -# 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. - from __future__ import annotations import inspect diff --git a/src/ogx_client/_utils/_streams.py b/src/ogx_client/_utils/_streams.py index fb09b0ce..f4a0208f 100644 --- a/src/ogx_client/_utils/_streams.py +++ b/src/ogx_client/_utils/_streams.py @@ -1,9 +1,3 @@ -# 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. - from typing import Any from typing_extensions import Iterator, AsyncIterator diff --git a/src/ogx_client/_utils/_sync.py b/src/ogx_client/_utils/_sync.py index 9a56cc14..f6027c18 100644 --- a/src/ogx_client/_utils/_sync.py +++ b/src/ogx_client/_utils/_sync.py @@ -1,9 +1,3 @@ -# 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. - from __future__ import annotations import asyncio diff --git a/src/ogx_client/_utils/_transform.py b/src/ogx_client/_utils/_transform.py index d05d92dd..52075492 100644 --- a/src/ogx_client/_utils/_transform.py +++ b/src/ogx_client/_utils/_transform.py @@ -1,9 +1,3 @@ -# 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. - from __future__ import annotations import io diff --git a/src/ogx_client/_utils/_typing.py b/src/ogx_client/_utils/_typing.py index 0771a1a9..193109f3 100644 --- a/src/ogx_client/_utils/_typing.py +++ b/src/ogx_client/_utils/_typing.py @@ -1,9 +1,3 @@ -# 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. - from __future__ import annotations import sys diff --git a/src/ogx_client/_utils/_utils.py b/src/ogx_client/_utils/_utils.py index 9f08bd02..199cd231 100644 --- a/src/ogx_client/_utils/_utils.py +++ b/src/ogx_client/_utils/_utils.py @@ -1,9 +1,3 @@ -# 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. - from __future__ import annotations import os diff --git a/src/ogx_client/_version.py b/src/ogx_client/_version.py index 8ce6912f..c31eacdf 100644 --- a/src/ogx_client/_version.py +++ b/src/ogx_client/_version.py @@ -1,9 +1,3 @@ -# 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. __title__ = "ogx_client" diff --git a/src/ogx_client/_wrappers.py b/src/ogx_client/_wrappers.py index a5579854..471b39dd 100644 --- a/src/ogx_client/_wrappers.py +++ b/src/ogx_client/_wrappers.py @@ -1,9 +1,3 @@ -# 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 Generic, TypeVar diff --git a/src/ogx_client/lib/__init__.py b/src/ogx_client/lib/__init__.py index 348551e4..f9b52b32 100644 --- a/src/ogx_client/lib/__init__.py +++ b/src/ogx_client/lib/__init__.py @@ -1,9 +1,3 @@ -# 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. - __all__ = ["get_oauth_token_for_mcp_server"] diff --git a/src/ogx_client/lib/agents/__init__.py b/src/ogx_client/lib/agents/__init__.py index 756f351d..e69de29b 100644 --- a/src/ogx_client/lib/agents/__init__.py +++ b/src/ogx_client/lib/agents/__init__.py @@ -1,5 +0,0 @@ -# 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/ogx_client/lib/agents/agent.py b/src/ogx_client/lib/agents/agent.py index b2fc8aa2..656264cc 100644 --- a/src/ogx_client/lib/agents/agent.py +++ b/src/ogx_client/lib/agents/agent.py @@ -1,8 +1,3 @@ -# 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. from __future__ import annotations import json diff --git a/src/ogx_client/lib/agents/client_tool.py b/src/ogx_client/lib/agents/client_tool.py index be49b7c6..9ae9346b 100644 --- a/src/ogx_client/lib/agents/client_tool.py +++ b/src/ogx_client/lib/agents/client_tool.py @@ -1,9 +1,3 @@ -# 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. - import json import inspect from abc import abstractmethod diff --git a/src/ogx_client/lib/agents/event_logger.py b/src/ogx_client/lib/agents/event_logger.py index c7b9d109..c5785e7a 100644 --- a/src/ogx_client/lib/agents/event_logger.py +++ b/src/ogx_client/lib/agents/event_logger.py @@ -1,9 +1,3 @@ -# 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. - """Event logger for agent interactions. This module provides a simple logger that converts agent stream events diff --git a/src/ogx_client/lib/agents/event_synthesizer.py b/src/ogx_client/lib/agents/event_synthesizer.py index df763cdf..7f118e7d 100644 --- a/src/ogx_client/lib/agents/event_synthesizer.py +++ b/src/ogx_client/lib/agents/event_synthesizer.py @@ -1,9 +1,3 @@ -# 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. - """Translate Responses API stream events into structured turn events. TurnEventSynthesizer keeps just enough state to expose turns and steps for diff --git a/src/ogx_client/lib/agents/react/__init__.py b/src/ogx_client/lib/agents/react/__init__.py index 756f351d..e69de29b 100644 --- a/src/ogx_client/lib/agents/react/__init__.py +++ b/src/ogx_client/lib/agents/react/__init__.py @@ -1,5 +0,0 @@ -# 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/ogx_client/lib/agents/react/agent.py b/src/ogx_client/lib/agents/react/agent.py index 2d0d6a63..fcedc308 100644 --- a/src/ogx_client/lib/agents/react/agent.py +++ b/src/ogx_client/lib/agents/react/agent.py @@ -1,8 +1,3 @@ -# 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. from __future__ import annotations import logging diff --git a/src/ogx_client/lib/agents/react/prompts.py b/src/ogx_client/lib/agents/react/prompts.py index cad7054a..a3a1d5c0 100644 --- a/src/ogx_client/lib/agents/react/prompts.py +++ b/src/ogx_client/lib/agents/react/prompts.py @@ -1,9 +1,3 @@ -# 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. - DEFAULT_REACT_AGENT_SYSTEM_PROMPT_TEMPLATE = """ You are an expert assistant who can solve any task using tool calls. You will be given a task to solve as best you can. To do so, you have been given access to the following tools: <> diff --git a/src/ogx_client/lib/agents/react/tool_parser.py b/src/ogx_client/lib/agents/react/tool_parser.py index be946231..77950588 100644 --- a/src/ogx_client/lib/agents/react/tool_parser.py +++ b/src/ogx_client/lib/agents/react/tool_parser.py @@ -1,9 +1,3 @@ -# 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. - import json import uuid from typing import List, Union, Optional diff --git a/src/ogx_client/lib/agents/tool_parser.py b/src/ogx_client/lib/agents/tool_parser.py index 022a10aa..05a4655a 100644 --- a/src/ogx_client/lib/agents/tool_parser.py +++ b/src/ogx_client/lib/agents/tool_parser.py @@ -1,9 +1,3 @@ -# 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. - from abc import abstractmethod from typing import List diff --git a/src/ogx_client/lib/agents/turn_events.py b/src/ogx_client/lib/agents/turn_events.py index bfc3c84b..240aa9a2 100644 --- a/src/ogx_client/lib/agents/turn_events.py +++ b/src/ogx_client/lib/agents/turn_events.py @@ -1,9 +1,3 @@ -# 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. - """High-level turn and step events for agent interactions. This module defines the semantic event model that wraps the lower-level diff --git a/src/ogx_client/lib/agents/types.py b/src/ogx_client/lib/agents/types.py index b72eee98..9ab803d3 100644 --- a/src/ogx_client/lib/agents/types.py +++ b/src/ogx_client/lib/agents/types.py @@ -1,9 +1,3 @@ -# 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. - """Lightweight agent-facing types that avoid llama-stack SDK dependencies.""" from __future__ import annotations diff --git a/src/ogx_client/lib/cli/__init__.py b/src/ogx_client/lib/cli/__init__.py index 77737e7d..f0ecd338 100644 --- a/src/ogx_client/lib/cli/__init__.py +++ b/src/ogx_client/lib/cli/__init__.py @@ -1,9 +1,3 @@ -# 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. - # Ignore tqdm experimental warning import warnings diff --git a/src/ogx_client/lib/cli/common/__init__.py b/src/ogx_client/lib/cli/common/__init__.py index 756f351d..e69de29b 100644 --- a/src/ogx_client/lib/cli/common/__init__.py +++ b/src/ogx_client/lib/cli/common/__init__.py @@ -1,5 +0,0 @@ -# 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/ogx_client/lib/cli/common/utils.py b/src/ogx_client/lib/cli/common/utils.py index fd5bd3db..396e7973 100644 --- a/src/ogx_client/lib/cli/common/utils.py +++ b/src/ogx_client/lib/cli/common/utils.py @@ -1,8 +1,3 @@ -# 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. from functools import wraps from rich.panel import Panel diff --git a/src/ogx_client/lib/cli/configure.py b/src/ogx_client/lib/cli/configure.py index fa1674b4..b4904957 100644 --- a/src/ogx_client/lib/cli/configure.py +++ b/src/ogx_client/lib/cli/configure.py @@ -1,9 +1,3 @@ -# 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. - from __future__ import annotations import os diff --git a/src/ogx_client/lib/cli/constants.py b/src/ogx_client/lib/cli/constants.py index 22595747..9d8eaa81 100644 --- a/src/ogx_client/lib/cli/constants.py +++ b/src/ogx_client/lib/cli/constants.py @@ -1,9 +1,3 @@ -# 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. - import os from pathlib import Path diff --git a/src/ogx_client/lib/cli/datasets/__init__.py b/src/ogx_client/lib/cli/datasets/__init__.py index ec7b144f..716e4fe5 100644 --- a/src/ogx_client/lib/cli/datasets/__init__.py +++ b/src/ogx_client/lib/cli/datasets/__init__.py @@ -1,9 +1,3 @@ -# 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. - from .datasets import datasets __all__ = ["datasets"] diff --git a/src/ogx_client/lib/cli/datasets/datasets.py b/src/ogx_client/lib/cli/datasets/datasets.py index c01b875a..60993dd5 100644 --- a/src/ogx_client/lib/cli/datasets/datasets.py +++ b/src/ogx_client/lib/cli/datasets/datasets.py @@ -1,8 +1,3 @@ -# 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. import click from .list import list_datasets diff --git a/src/ogx_client/lib/cli/datasets/list.py b/src/ogx_client/lib/cli/datasets/list.py index b7e625e8..293537ef 100644 --- a/src/ogx_client/lib/cli/datasets/list.py +++ b/src/ogx_client/lib/cli/datasets/list.py @@ -1,9 +1,3 @@ -# 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. - import click from rich.table import Table from rich.console import Console diff --git a/src/ogx_client/lib/cli/datasets/register.py b/src/ogx_client/lib/cli/datasets/register.py index d76457c6..d867675a 100644 --- a/src/ogx_client/lib/cli/datasets/register.py +++ b/src/ogx_client/lib/cli/datasets/register.py @@ -1,8 +1,3 @@ -# 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. import os import json import base64 diff --git a/src/ogx_client/lib/cli/datasets/unregister.py b/src/ogx_client/lib/cli/datasets/unregister.py index 8ca7cceb..20571c21 100644 --- a/src/ogx_client/lib/cli/datasets/unregister.py +++ b/src/ogx_client/lib/cli/datasets/unregister.py @@ -1,8 +1,3 @@ -# 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. import click from ..common.utils import handle_client_errors diff --git a/src/ogx_client/lib/cli/eval/__init__.py b/src/ogx_client/lib/cli/eval/__init__.py index 503994e9..2a8abc93 100644 --- a/src/ogx_client/lib/cli/eval/__init__.py +++ b/src/ogx_client/lib/cli/eval/__init__.py @@ -1,9 +1,3 @@ -# 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. - from .eval import eval __all__ = ["eval"] diff --git a/src/ogx_client/lib/cli/eval/eval.py b/src/ogx_client/lib/cli/eval/eval.py index 0ce29169..d65533e9 100644 --- a/src/ogx_client/lib/cli/eval/eval.py +++ b/src/ogx_client/lib/cli/eval/eval.py @@ -1,10 +1,3 @@ -# 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. - - import click from .run_scoring import run_scoring diff --git a/src/ogx_client/lib/cli/eval/run_benchmark.py b/src/ogx_client/lib/cli/eval/run_benchmark.py index ee3aae4f..a7f68f61 100644 --- a/src/ogx_client/lib/cli/eval/run_benchmark.py +++ b/src/ogx_client/lib/cli/eval/run_benchmark.py @@ -1,9 +1,3 @@ -# 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. - from __future__ import annotations import os diff --git a/src/ogx_client/lib/cli/eval/run_scoring.py b/src/ogx_client/lib/cli/eval/run_scoring.py index e51d406c..7172f309 100644 --- a/src/ogx_client/lib/cli/eval/run_scoring.py +++ b/src/ogx_client/lib/cli/eval/run_scoring.py @@ -1,9 +1,3 @@ -# 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. - from __future__ import annotations import os diff --git a/src/ogx_client/lib/cli/eval/utils.py b/src/ogx_client/lib/cli/eval/utils.py index 96d8d54c..fa7a954e 100644 --- a/src/ogx_client/lib/cli/eval/utils.py +++ b/src/ogx_client/lib/cli/eval/utils.py @@ -1,9 +1,3 @@ -# 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. - from typing import Any, Dict, List, Union diff --git a/src/ogx_client/lib/cli/eval_tasks/__init__.py b/src/ogx_client/lib/cli/eval_tasks/__init__.py index d755c85a..d5e38c22 100644 --- a/src/ogx_client/lib/cli/eval_tasks/__init__.py +++ b/src/ogx_client/lib/cli/eval_tasks/__init__.py @@ -1,9 +1,3 @@ -# 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. - from .eval_tasks import eval_tasks __all__ = ["eval_tasks"] diff --git a/src/ogx_client/lib/cli/eval_tasks/eval_tasks.py b/src/ogx_client/lib/cli/eval_tasks/eval_tasks.py index 8eca5925..b52c5f56 100644 --- a/src/ogx_client/lib/cli/eval_tasks/eval_tasks.py +++ b/src/ogx_client/lib/cli/eval_tasks/eval_tasks.py @@ -1,10 +1,3 @@ -# 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. - - from __future__ import annotations import json diff --git a/src/ogx_client/lib/cli/eval_tasks/list.py b/src/ogx_client/lib/cli/eval_tasks/list.py index de4a5d14..37bb676b 100644 --- a/src/ogx_client/lib/cli/eval_tasks/list.py +++ b/src/ogx_client/lib/cli/eval_tasks/list.py @@ -1,9 +1,3 @@ -# 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. - import click from rich.table import Table from rich.console import Console diff --git a/src/ogx_client/lib/cli/inference/__init__.py b/src/ogx_client/lib/cli/inference/__init__.py index d10d45c4..e2215731 100644 --- a/src/ogx_client/lib/cli/inference/__init__.py +++ b/src/ogx_client/lib/cli/inference/__init__.py @@ -1,9 +1,3 @@ -# 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. - from .inference import inference __all__ = ["inference"] diff --git a/src/ogx_client/lib/cli/inference/inference.py b/src/ogx_client/lib/cli/inference/inference.py index 721b2336..b54ec4f9 100644 --- a/src/ogx_client/lib/cli/inference/inference.py +++ b/src/ogx_client/lib/cli/inference/inference.py @@ -1,9 +1,3 @@ -# 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. - import traceback from typing import Dict, List, Optional diff --git a/src/ogx_client/lib/cli/inspect/__init__.py b/src/ogx_client/lib/cli/inspect/__init__.py index c2ccb0c7..db651969 100644 --- a/src/ogx_client/lib/cli/inspect/__init__.py +++ b/src/ogx_client/lib/cli/inspect/__init__.py @@ -1,9 +1,3 @@ -# 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. - from .inspect import inspect __all__ = ["inspect"] diff --git a/src/ogx_client/lib/cli/inspect/inspect.py b/src/ogx_client/lib/cli/inspect/inspect.py index 3caee63a..f9c85b1b 100644 --- a/src/ogx_client/lib/cli/inspect/inspect.py +++ b/src/ogx_client/lib/cli/inspect/inspect.py @@ -1,9 +1,3 @@ -# 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. - import click from .version import inspect_version diff --git a/src/ogx_client/lib/cli/inspect/version.py b/src/ogx_client/lib/cli/inspect/version.py index d1bf604c..0a32195d 100644 --- a/src/ogx_client/lib/cli/inspect/version.py +++ b/src/ogx_client/lib/cli/inspect/version.py @@ -1,9 +1,3 @@ -# 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. - import click from rich.console import Console diff --git a/src/ogx_client/lib/cli/llama_stack_client.py b/src/ogx_client/lib/cli/llama_stack_client.py index 2c7d53c2..337fd74b 100644 --- a/src/ogx_client/lib/cli/llama_stack_client.py +++ b/src/ogx_client/lib/cli/llama_stack_client.py @@ -1,9 +1,3 @@ -# 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. - from __future__ import annotations import os diff --git a/src/ogx_client/lib/cli/models/__init__.py b/src/ogx_client/lib/cli/models/__init__.py index 64479669..6515c0f3 100644 --- a/src/ogx_client/lib/cli/models/__init__.py +++ b/src/ogx_client/lib/cli/models/__init__.py @@ -1,9 +1,3 @@ -# 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. - from .models import models __all__ = ["models"] diff --git a/src/ogx_client/lib/cli/models/models.py b/src/ogx_client/lib/cli/models/models.py index f18d2530..193b5c25 100644 --- a/src/ogx_client/lib/cli/models/models.py +++ b/src/ogx_client/lib/cli/models/models.py @@ -1,9 +1,3 @@ -# 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. - import json from typing import Optional diff --git a/src/ogx_client/lib/cli/providers/__init__.py b/src/ogx_client/lib/cli/providers/__init__.py index 61601717..2e632915 100644 --- a/src/ogx_client/lib/cli/providers/__init__.py +++ b/src/ogx_client/lib/cli/providers/__init__.py @@ -1,9 +1,3 @@ -# 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. - from .providers import providers __all__ = ["providers"] diff --git a/src/ogx_client/lib/cli/providers/inspect.py b/src/ogx_client/lib/cli/providers/inspect.py index 69d1d59e..4519a88b 100644 --- a/src/ogx_client/lib/cli/providers/inspect.py +++ b/src/ogx_client/lib/cli/providers/inspect.py @@ -1,9 +1,3 @@ -# 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. - import yaml import click from rich.console import Console diff --git a/src/ogx_client/lib/cli/providers/list.py b/src/ogx_client/lib/cli/providers/list.py index b3c90a64..8c2af436 100644 --- a/src/ogx_client/lib/cli/providers/list.py +++ b/src/ogx_client/lib/cli/providers/list.py @@ -1,9 +1,3 @@ -# 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. - import click from rich.table import Table from rich.console import Console diff --git a/src/ogx_client/lib/cli/providers/providers.py b/src/ogx_client/lib/cli/providers/providers.py index 1849d5f7..bd07628d 100644 --- a/src/ogx_client/lib/cli/providers/providers.py +++ b/src/ogx_client/lib/cli/providers/providers.py @@ -1,9 +1,3 @@ -# 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. - import click from .list import list_providers diff --git a/src/ogx_client/lib/cli/scoring_functions/__init__.py b/src/ogx_client/lib/cli/scoring_functions/__init__.py index 9699df68..f41a2a6b 100644 --- a/src/ogx_client/lib/cli/scoring_functions/__init__.py +++ b/src/ogx_client/lib/cli/scoring_functions/__init__.py @@ -1,9 +1,3 @@ -# 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. - from .scoring_functions import scoring_functions __all__ = ["scoring_functions"] diff --git a/src/ogx_client/lib/cli/scoring_functions/list.py b/src/ogx_client/lib/cli/scoring_functions/list.py index ad69a82e..6e22c81c 100644 --- a/src/ogx_client/lib/cli/scoring_functions/list.py +++ b/src/ogx_client/lib/cli/scoring_functions/list.py @@ -1,9 +1,3 @@ -# 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. - import click from rich.table import Table from rich.console import Console diff --git a/src/ogx_client/lib/cli/scoring_functions/scoring_functions.py b/src/ogx_client/lib/cli/scoring_functions/scoring_functions.py index aea7f46a..118bddb3 100644 --- a/src/ogx_client/lib/cli/scoring_functions/scoring_functions.py +++ b/src/ogx_client/lib/cli/scoring_functions/scoring_functions.py @@ -1,9 +1,3 @@ -# 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. - import json from typing import Optional diff --git a/src/ogx_client/lib/cli/shields/__init__.py b/src/ogx_client/lib/cli/shields/__init__.py index 45f397c4..1cd6a02e 100644 --- a/src/ogx_client/lib/cli/shields/__init__.py +++ b/src/ogx_client/lib/cli/shields/__init__.py @@ -1,9 +1,3 @@ -# 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. - from .shields import shields __all__ = ["shields"] diff --git a/src/ogx_client/lib/cli/shields/shields.py b/src/ogx_client/lib/cli/shields/shields.py index 49ee919d..ef17edae 100644 --- a/src/ogx_client/lib/cli/shields/shields.py +++ b/src/ogx_client/lib/cli/shields/shields.py @@ -1,9 +1,3 @@ -# 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. - from typing import Optional import yaml diff --git a/src/ogx_client/lib/cli/vector_stores/__init__.py b/src/ogx_client/lib/cli/vector_stores/__init__.py index bb43c8d1..3fabcbb3 100644 --- a/src/ogx_client/lib/cli/vector_stores/__init__.py +++ b/src/ogx_client/lib/cli/vector_stores/__init__.py @@ -1,9 +1,3 @@ -# 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. - from .vector_stores import vector_stores __all__ = ["vector_stores"] diff --git a/src/ogx_client/lib/cli/vector_stores/vector_stores.py b/src/ogx_client/lib/cli/vector_stores/vector_stores.py index 0c0408c7..a800a01f 100644 --- a/src/ogx_client/lib/cli/vector_stores/vector_stores.py +++ b/src/ogx_client/lib/cli/vector_stores/vector_stores.py @@ -1,9 +1,3 @@ -# 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. - from typing import Optional import yaml diff --git a/src/ogx_client/lib/inference/__init__.py b/src/ogx_client/lib/inference/__init__.py index 756f351d..e69de29b 100644 --- a/src/ogx_client/lib/inference/__init__.py +++ b/src/ogx_client/lib/inference/__init__.py @@ -1,5 +0,0 @@ -# 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/ogx_client/lib/inference/event_logger.py b/src/ogx_client/lib/inference/event_logger.py index b9f39045..16b45d22 100644 --- a/src/ogx_client/lib/inference/event_logger.py +++ b/src/ogx_client/lib/inference/event_logger.py @@ -1,8 +1,3 @@ -# 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. from typing import Generator from termcolor import cprint diff --git a/src/ogx_client/lib/inference/utils.py b/src/ogx_client/lib/inference/utils.py index 060ce8b3..b2db634f 100644 --- a/src/ogx_client/lib/inference/utils.py +++ b/src/ogx_client/lib/inference/utils.py @@ -1,9 +1,3 @@ -# 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. - import base64 import pathlib diff --git a/src/ogx_client/lib/inline/inline.py b/src/ogx_client/lib/inline/inline.py index 756f351d..e69de29b 100644 --- a/src/ogx_client/lib/inline/inline.py +++ b/src/ogx_client/lib/inline/inline.py @@ -1,5 +0,0 @@ -# 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/ogx_client/lib/stream_printer.py b/src/ogx_client/lib/stream_printer.py index 1a302787..a08d9663 100644 --- a/src/ogx_client/lib/stream_printer.py +++ b/src/ogx_client/lib/stream_printer.py @@ -1,9 +1,3 @@ -# 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. - from .agents.event_logger import TurnStreamEventPrinter from .inference.event_logger import InferenceStreamLogEventPrinter diff --git a/src/ogx_client/lib/tools/mcp_oauth.py b/src/ogx_client/lib/tools/mcp_oauth.py index bbc73e6d..b11c82f5 100644 --- a/src/ogx_client/lib/tools/mcp_oauth.py +++ b/src/ogx_client/lib/tools/mcp_oauth.py @@ -1,9 +1,3 @@ -# 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. - from __future__ import annotations import os diff --git a/src/ogx_client/pagination.py b/src/ogx_client/pagination.py index ae8fa048..74d02ec0 100644 --- a/src/ogx_client/pagination.py +++ b/src/ogx_client/pagination.py @@ -1,9 +1,3 @@ -# 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, Generic, TypeVar, Optional diff --git a/src/ogx_client/resources/__init__.py b/src/ogx_client/resources/__init__.py index 533a4d37..d10a7086 100644 --- a/src/ogx_client/resources/__init__.py +++ b/src/ogx_client/resources/__init__.py @@ -1,9 +1,3 @@ -# 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 .chat import ( diff --git a/src/ogx_client/resources/alpha/__init__.py b/src/ogx_client/resources/alpha/__init__.py index 673e6393..5bd3bc2b 100644 --- a/src/ogx_client/resources/alpha/__init__.py +++ b/src/ogx_client/resources/alpha/__init__.py @@ -1,9 +1,3 @@ -# 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 .admin import ( diff --git a/src/ogx_client/resources/alpha/admin.py b/src/ogx_client/resources/alpha/admin.py index 02e94944..801457ac 100644 --- a/src/ogx_client/resources/alpha/admin.py +++ b/src/ogx_client/resources/alpha/admin.py @@ -1,9 +1,3 @@ -# 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/ogx_client/resources/alpha/alpha.py b/src/ogx_client/resources/alpha/alpha.py index 434e3a13..12294081 100644 --- a/src/ogx_client/resources/alpha/alpha.py +++ b/src/ogx_client/resources/alpha/alpha.py @@ -1,9 +1,3 @@ -# 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/ogx_client/resources/alpha/inference.py b/src/ogx_client/resources/alpha/inference.py index 229a8372..07ae6fba 100644 --- a/src/ogx_client/resources/alpha/inference.py +++ b/src/ogx_client/resources/alpha/inference.py @@ -1,9 +1,3 @@ -# 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/ogx_client/resources/batches.py b/src/ogx_client/resources/batches.py index 99b370dc..6d5ef6ef 100644 --- a/src/ogx_client/resources/batches.py +++ b/src/ogx_client/resources/batches.py @@ -1,9 +1,3 @@ -# 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/ogx_client/resources/chat/__init__.py b/src/ogx_client/resources/chat/__init__.py index 718065af..ec960eb4 100644 --- a/src/ogx_client/resources/chat/__init__.py +++ b/src/ogx_client/resources/chat/__init__.py @@ -1,9 +1,3 @@ -# 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 .chat import ( diff --git a/src/ogx_client/resources/chat/chat.py b/src/ogx_client/resources/chat/chat.py index 69a41e4a..639d8102 100644 --- a/src/ogx_client/resources/chat/chat.py +++ b/src/ogx_client/resources/chat/chat.py @@ -1,9 +1,3 @@ -# 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/ogx_client/resources/chat/completions.py b/src/ogx_client/resources/chat/completions.py index 7a093472..4e1f000c 100644 --- a/src/ogx_client/resources/chat/completions.py +++ b/src/ogx_client/resources/chat/completions.py @@ -1,9 +1,3 @@ -# 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/ogx_client/resources/completions.py b/src/ogx_client/resources/completions.py index ae8189f3..e72549d8 100644 --- a/src/ogx_client/resources/completions.py +++ b/src/ogx_client/resources/completions.py @@ -1,9 +1,3 @@ -# 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/ogx_client/resources/conversations/__init__.py b/src/ogx_client/resources/conversations/__init__.py index efa576e3..2dc61926 100644 --- a/src/ogx_client/resources/conversations/__init__.py +++ b/src/ogx_client/resources/conversations/__init__.py @@ -1,9 +1,3 @@ -# 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 .items import ( diff --git a/src/ogx_client/resources/conversations/conversations.py b/src/ogx_client/resources/conversations/conversations.py index 67e5fda3..6dfba41d 100644 --- a/src/ogx_client/resources/conversations/conversations.py +++ b/src/ogx_client/resources/conversations/conversations.py @@ -1,9 +1,3 @@ -# 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/ogx_client/resources/conversations/items.py b/src/ogx_client/resources/conversations/items.py index 0c878bbc..16aeefe7 100644 --- a/src/ogx_client/resources/conversations/items.py +++ b/src/ogx_client/resources/conversations/items.py @@ -1,9 +1,3 @@ -# 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/ogx_client/resources/embeddings.py b/src/ogx_client/resources/embeddings.py index 689fff92..1ffd1e33 100644 --- a/src/ogx_client/resources/embeddings.py +++ b/src/ogx_client/resources/embeddings.py @@ -1,9 +1,3 @@ -# 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/ogx_client/resources/files.py b/src/ogx_client/resources/files.py index 2e51fd9b..d521f8f4 100644 --- a/src/ogx_client/resources/files.py +++ b/src/ogx_client/resources/files.py @@ -1,9 +1,3 @@ -# 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/ogx_client/resources/inspect.py b/src/ogx_client/resources/inspect.py index 28e0cbc7..25f172f6 100644 --- a/src/ogx_client/resources/inspect.py +++ b/src/ogx_client/resources/inspect.py @@ -1,9 +1,3 @@ -# 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/ogx_client/resources/models/__init__.py b/src/ogx_client/resources/models/__init__.py index 9c1eb52b..fc06a000 100644 --- a/src/ogx_client/resources/models/__init__.py +++ b/src/ogx_client/resources/models/__init__.py @@ -1,9 +1,3 @@ -# 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 ( diff --git a/src/ogx_client/resources/models/models.py b/src/ogx_client/resources/models/models.py index 4c0a2229..621e2601 100644 --- a/src/ogx_client/resources/models/models.py +++ b/src/ogx_client/resources/models/models.py @@ -1,9 +1,3 @@ -# 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/ogx_client/resources/models/openai.py b/src/ogx_client/resources/models/openai.py index 9463a785..6a2b79a6 100644 --- a/src/ogx_client/resources/models/openai.py +++ b/src/ogx_client/resources/models/openai.py @@ -1,9 +1,3 @@ -# 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/ogx_client/resources/moderations.py b/src/ogx_client/resources/moderations.py index 2c881f1d..0c9ceee8 100644 --- a/src/ogx_client/resources/moderations.py +++ b/src/ogx_client/resources/moderations.py @@ -1,9 +1,3 @@ -# 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/ogx_client/resources/prompts/__init__.py b/src/ogx_client/resources/prompts/__init__.py index 36f20be5..d8c5c535 100644 --- a/src/ogx_client/resources/prompts/__init__.py +++ b/src/ogx_client/resources/prompts/__init__.py @@ -1,9 +1,3 @@ -# 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/ogx_client/resources/prompts/prompts.py b/src/ogx_client/resources/prompts/prompts.py index 4853d7b1..cf4c378f 100644 --- a/src/ogx_client/resources/prompts/prompts.py +++ b/src/ogx_client/resources/prompts/prompts.py @@ -1,9 +1,3 @@ -# 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/ogx_client/resources/prompts/versions.py b/src/ogx_client/resources/prompts/versions.py index 5c890891..cf9f93c5 100644 --- a/src/ogx_client/resources/prompts/versions.py +++ b/src/ogx_client/resources/prompts/versions.py @@ -1,9 +1,3 @@ -# 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/ogx_client/resources/providers.py b/src/ogx_client/resources/providers.py index ef4f93de..893cbe0f 100644 --- a/src/ogx_client/resources/providers.py +++ b/src/ogx_client/resources/providers.py @@ -1,9 +1,3 @@ -# 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/ogx_client/resources/responses/__init__.py b/src/ogx_client/resources/responses/__init__.py index d1e33c97..230ef765 100644 --- a/src/ogx_client/resources/responses/__init__.py +++ b/src/ogx_client/resources/responses/__init__.py @@ -1,9 +1,3 @@ -# 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 .responses import ( diff --git a/src/ogx_client/resources/responses/input_items.py b/src/ogx_client/resources/responses/input_items.py index b84abc1d..1e8b1684 100644 --- a/src/ogx_client/resources/responses/input_items.py +++ b/src/ogx_client/resources/responses/input_items.py @@ -1,9 +1,3 @@ -# 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/ogx_client/resources/responses/responses.py b/src/ogx_client/resources/responses/responses.py index 3e2b53e5..34aff30b 100644 --- a/src/ogx_client/resources/responses/responses.py +++ b/src/ogx_client/resources/responses/responses.py @@ -1,9 +1,3 @@ -# 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/ogx_client/resources/routes.py b/src/ogx_client/resources/routes.py index 6ab42032..0a53eb38 100644 --- a/src/ogx_client/resources/routes.py +++ b/src/ogx_client/resources/routes.py @@ -1,9 +1,3 @@ -# 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/ogx_client/resources/safety.py b/src/ogx_client/resources/safety.py index 365b1f76..c1242459 100644 --- a/src/ogx_client/resources/safety.py +++ b/src/ogx_client/resources/safety.py @@ -1,9 +1,3 @@ -# 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/ogx_client/resources/shields.py b/src/ogx_client/resources/shields.py index 3abc3489..686acd11 100644 --- a/src/ogx_client/resources/shields.py +++ b/src/ogx_client/resources/shields.py @@ -1,9 +1,3 @@ -# 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/ogx_client/resources/vector_io.py b/src/ogx_client/resources/vector_io.py index 0e972ca6..2eb2aff8 100644 --- a/src/ogx_client/resources/vector_io.py +++ b/src/ogx_client/resources/vector_io.py @@ -1,9 +1,3 @@ -# 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/ogx_client/resources/vector_stores/__init__.py b/src/ogx_client/resources/vector_stores/__init__.py index edd010ed..d83a42b6 100644 --- a/src/ogx_client/resources/vector_stores/__init__.py +++ b/src/ogx_client/resources/vector_stores/__init__.py @@ -1,9 +1,3 @@ -# 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 .files import ( diff --git a/src/ogx_client/resources/vector_stores/file_batches.py b/src/ogx_client/resources/vector_stores/file_batches.py index ea2da2c9..855ea3c9 100644 --- a/src/ogx_client/resources/vector_stores/file_batches.py +++ b/src/ogx_client/resources/vector_stores/file_batches.py @@ -1,9 +1,3 @@ -# 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/ogx_client/resources/vector_stores/files.py b/src/ogx_client/resources/vector_stores/files.py index e9492dd8..6409a2de 100644 --- a/src/ogx_client/resources/vector_stores/files.py +++ b/src/ogx_client/resources/vector_stores/files.py @@ -1,9 +1,3 @@ -# 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/ogx_client/resources/vector_stores/vector_stores.py b/src/ogx_client/resources/vector_stores/vector_stores.py index 05550a4e..c90952e5 100644 --- a/src/ogx_client/resources/vector_stores/vector_stores.py +++ b/src/ogx_client/resources/vector_stores/vector_stores.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/__init__.py b/src/ogx_client/types/__init__.py index eba1d737..e73a377a 100644 --- a/src/ogx_client/types/__init__.py +++ b/src/ogx_client/types/__init__.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/alpha/__init__.py b/src/ogx_client/types/alpha/__init__.py index cf819c05..d597c857 100644 --- a/src/ogx_client/types/alpha/__init__.py +++ b/src/ogx_client/types/alpha/__init__.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/alpha/admin_list_routes_params.py b/src/ogx_client/types/alpha/admin_list_routes_params.py index 7dd6b6d4..44bfb8cd 100644 --- a/src/ogx_client/types/alpha/admin_list_routes_params.py +++ b/src/ogx_client/types/alpha/admin_list_routes_params.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/alpha/inference_rerank_params.py b/src/ogx_client/types/alpha/inference_rerank_params.py index f8883b7a..895c260b 100644 --- a/src/ogx_client/types/alpha/inference_rerank_params.py +++ b/src/ogx_client/types/alpha/inference_rerank_params.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/alpha/inference_rerank_response.py b/src/ogx_client/types/alpha/inference_rerank_response.py index c13c93cc..605c71a4 100644 --- a/src/ogx_client/types/alpha/inference_rerank_response.py +++ b/src/ogx_client/types/alpha/inference_rerank_response.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/alpha/post_training/job_artifacts_params.py b/src/ogx_client/types/alpha/post_training/job_artifacts_params.py index c9e89a4e..4f75a133 100644 --- a/src/ogx_client/types/alpha/post_training/job_artifacts_params.py +++ b/src/ogx_client/types/alpha/post_training/job_artifacts_params.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/alpha/post_training/job_cancel_params.py b/src/ogx_client/types/alpha/post_training/job_cancel_params.py index 035cbfb6..c9c30d84 100644 --- a/src/ogx_client/types/alpha/post_training/job_cancel_params.py +++ b/src/ogx_client/types/alpha/post_training/job_cancel_params.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/alpha/post_training/job_status_params.py b/src/ogx_client/types/alpha/post_training/job_status_params.py index 8bd28ddb..8cf17b03 100644 --- a/src/ogx_client/types/alpha/post_training/job_status_params.py +++ b/src/ogx_client/types/alpha/post_training/job_status_params.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/batch_cancel_response.py b/src/ogx_client/types/batch_cancel_response.py index e74b5b1d..0c51b4ad 100644 --- a/src/ogx_client/types/batch_cancel_response.py +++ b/src/ogx_client/types/batch_cancel_response.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/batch_create_params.py b/src/ogx_client/types/batch_create_params.py index 1e9d0c06..2f19b01b 100644 --- a/src/ogx_client/types/batch_create_params.py +++ b/src/ogx_client/types/batch_create_params.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/batch_create_response.py b/src/ogx_client/types/batch_create_response.py index bfcf49f5..7882bf7d 100644 --- a/src/ogx_client/types/batch_create_response.py +++ b/src/ogx_client/types/batch_create_response.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/batch_list_params.py b/src/ogx_client/types/batch_list_params.py index e29a12c1..52d6f6e5 100644 --- a/src/ogx_client/types/batch_list_params.py +++ b/src/ogx_client/types/batch_list_params.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/batch_list_response.py b/src/ogx_client/types/batch_list_response.py index 9f176456..b82a61e2 100644 --- a/src/ogx_client/types/batch_list_response.py +++ b/src/ogx_client/types/batch_list_response.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/batch_retrieve_response.py b/src/ogx_client/types/batch_retrieve_response.py index 02859462..24e99ddc 100644 --- a/src/ogx_client/types/batch_retrieve_response.py +++ b/src/ogx_client/types/batch_retrieve_response.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/chat/__init__.py b/src/ogx_client/types/chat/__init__.py index 43f0751f..27720e7f 100644 --- a/src/ogx_client/types/chat/__init__.py +++ b/src/ogx_client/types/chat/__init__.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/chat/completion_create_params.py b/src/ogx_client/types/chat/completion_create_params.py index 605e1faa..67a71358 100644 --- a/src/ogx_client/types/chat/completion_create_params.py +++ b/src/ogx_client/types/chat/completion_create_params.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/chat/completion_create_response.py b/src/ogx_client/types/chat/completion_create_response.py index 0d20c058..56d22573 100644 --- a/src/ogx_client/types/chat/completion_create_response.py +++ b/src/ogx_client/types/chat/completion_create_response.py @@ -1,9 +1,3 @@ -# 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, List, Union, Optional diff --git a/src/ogx_client/types/chat/completion_list_params.py b/src/ogx_client/types/chat/completion_list_params.py index f2a6e322..9c02e652 100644 --- a/src/ogx_client/types/chat/completion_list_params.py +++ b/src/ogx_client/types/chat/completion_list_params.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/chat/completion_list_response.py b/src/ogx_client/types/chat/completion_list_response.py index aa7cf955..dcd12a42 100644 --- a/src/ogx_client/types/chat/completion_list_response.py +++ b/src/ogx_client/types/chat/completion_list_response.py @@ -1,9 +1,3 @@ -# 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 TYPE_CHECKING, Dict, List, Union, Optional diff --git a/src/ogx_client/types/chat/completion_retrieve_response.py b/src/ogx_client/types/chat/completion_retrieve_response.py index 4ea2d02c..7875196d 100644 --- a/src/ogx_client/types/chat/completion_retrieve_response.py +++ b/src/ogx_client/types/chat/completion_retrieve_response.py @@ -1,9 +1,3 @@ -# 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 TYPE_CHECKING, Dict, List, Union, Optional diff --git a/src/ogx_client/types/chat_completion_chunk.py b/src/ogx_client/types/chat_completion_chunk.py index 3b3190a8..0bcc840b 100644 --- a/src/ogx_client/types/chat_completion_chunk.py +++ b/src/ogx_client/types/chat_completion_chunk.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/completion_create_params.py b/src/ogx_client/types/completion_create_params.py index 7640d1da..76d038e7 100644 --- a/src/ogx_client/types/completion_create_params.py +++ b/src/ogx_client/types/completion_create_params.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/completion_create_response.py b/src/ogx_client/types/completion_create_response.py index 30e42294..13784b02 100644 --- a/src/ogx_client/types/completion_create_response.py +++ b/src/ogx_client/types/completion_create_response.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/conversation_create_params.py b/src/ogx_client/types/conversation_create_params.py index 40b0876b..f16b3f31 100644 --- a/src/ogx_client/types/conversation_create_params.py +++ b/src/ogx_client/types/conversation_create_params.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/conversation_delete_response.py b/src/ogx_client/types/conversation_delete_response.py index 270ce38b..63511cfd 100644 --- a/src/ogx_client/types/conversation_delete_response.py +++ b/src/ogx_client/types/conversation_delete_response.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/conversation_object.py b/src/ogx_client/types/conversation_object.py index 1498ef03..e815163f 100644 --- a/src/ogx_client/types/conversation_object.py +++ b/src/ogx_client/types/conversation_object.py @@ -1,9 +1,3 @@ -# 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, List, Optional diff --git a/src/ogx_client/types/conversation_update_params.py b/src/ogx_client/types/conversation_update_params.py index d59a9d34..3b34c327 100644 --- a/src/ogx_client/types/conversation_update_params.py +++ b/src/ogx_client/types/conversation_update_params.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/conversations/__init__.py b/src/ogx_client/types/conversations/__init__.py index 9c2b106e..620fd5e5 100644 --- a/src/ogx_client/types/conversations/__init__.py +++ b/src/ogx_client/types/conversations/__init__.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/conversations/item_create_params.py b/src/ogx_client/types/conversations/item_create_params.py index f081316a..43f05415 100644 --- a/src/ogx_client/types/conversations/item_create_params.py +++ b/src/ogx_client/types/conversations/item_create_params.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/conversations/item_create_response.py b/src/ogx_client/types/conversations/item_create_response.py index 9da908ba..e771ad50 100644 --- a/src/ogx_client/types/conversations/item_create_response.py +++ b/src/ogx_client/types/conversations/item_create_response.py @@ -1,9 +1,3 @@ -# 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, List, Union, Optional diff --git a/src/ogx_client/types/conversations/item_delete_response.py b/src/ogx_client/types/conversations/item_delete_response.py index 2521ff8a..9c88606c 100644 --- a/src/ogx_client/types/conversations/item_delete_response.py +++ b/src/ogx_client/types/conversations/item_delete_response.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/conversations/item_get_response.py b/src/ogx_client/types/conversations/item_get_response.py index 531d03f6..6b3c4d5b 100644 --- a/src/ogx_client/types/conversations/item_get_response.py +++ b/src/ogx_client/types/conversations/item_get_response.py @@ -1,9 +1,3 @@ -# 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, List, Union, Optional diff --git a/src/ogx_client/types/conversations/item_list_params.py b/src/ogx_client/types/conversations/item_list_params.py index dd094dec..18eae57a 100644 --- a/src/ogx_client/types/conversations/item_list_params.py +++ b/src/ogx_client/types/conversations/item_list_params.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/conversations/item_list_response.py b/src/ogx_client/types/conversations/item_list_response.py index 1f642528..5beb5f9d 100644 --- a/src/ogx_client/types/conversations/item_list_response.py +++ b/src/ogx_client/types/conversations/item_list_response.py @@ -1,9 +1,3 @@ -# 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, List, Union, Optional diff --git a/src/ogx_client/types/create_embeddings_response.py b/src/ogx_client/types/create_embeddings_response.py index a1c25f6a..493c0a0b 100644 --- a/src/ogx_client/types/create_embeddings_response.py +++ b/src/ogx_client/types/create_embeddings_response.py @@ -1,9 +1,3 @@ -# 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, Union, Optional diff --git a/src/ogx_client/types/create_response.py b/src/ogx_client/types/create_response.py index 41001011..10aa4ba2 100644 --- a/src/ogx_client/types/create_response.py +++ b/src/ogx_client/types/create_response.py @@ -1,9 +1,3 @@ -# 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, List, Optional diff --git a/src/ogx_client/types/delete_file_response.py b/src/ogx_client/types/delete_file_response.py index b4d06c6b..b311717e 100644 --- a/src/ogx_client/types/delete_file_response.py +++ b/src/ogx_client/types/delete_file_response.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/embedding_create_params.py b/src/ogx_client/types/embedding_create_params.py index eb457b5f..6e2d589b 100644 --- a/src/ogx_client/types/embedding_create_params.py +++ b/src/ogx_client/types/embedding_create_params.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/file.py b/src/ogx_client/types/file.py index ceba18af..a684f614 100644 --- a/src/ogx_client/types/file.py +++ b/src/ogx_client/types/file.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/file_content_response.py b/src/ogx_client/types/file_content_response.py index 01930307..c7f72a75 100644 --- a/src/ogx_client/types/file_content_response.py +++ b/src/ogx_client/types/file_content_response.py @@ -1,9 +1,3 @@ -# 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_extensions import TypeAlias diff --git a/src/ogx_client/types/file_create_params.py b/src/ogx_client/types/file_create_params.py index a6371776..5de51158 100644 --- a/src/ogx_client/types/file_create_params.py +++ b/src/ogx_client/types/file_create_params.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/file_list_params.py b/src/ogx_client/types/file_list_params.py index 37c1959a..7e70e96a 100644 --- a/src/ogx_client/types/file_list_params.py +++ b/src/ogx_client/types/file_list_params.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/list_files_response.py b/src/ogx_client/types/list_files_response.py index 91c4b2f9..da5aa70c 100644 --- a/src/ogx_client/types/list_files_response.py +++ b/src/ogx_client/types/list_files_response.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/list_models_response.py b/src/ogx_client/types/list_models_response.py index d82c3782..6babe03d 100644 --- a/src/ogx_client/types/list_models_response.py +++ b/src/ogx_client/types/list_models_response.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/list_prompts_response.py b/src/ogx_client/types/list_prompts_response.py index d357a77d..e296df20 100644 --- a/src/ogx_client/types/list_prompts_response.py +++ b/src/ogx_client/types/list_prompts_response.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/list_shields_response.py b/src/ogx_client/types/list_shields_response.py index f370a7fd..b59a7605 100644 --- a/src/ogx_client/types/list_shields_response.py +++ b/src/ogx_client/types/list_shields_response.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/list_vector_stores_response.py b/src/ogx_client/types/list_vector_stores_response.py index c4a544f0..a29cc7ce 100644 --- a/src/ogx_client/types/list_vector_stores_response.py +++ b/src/ogx_client/types/list_vector_stores_response.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/model.py b/src/ogx_client/types/model.py index 8d5a8eb8..26ebf819 100644 --- a/src/ogx_client/types/model.py +++ b/src/ogx_client/types/model.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/model_retrieve_response.py b/src/ogx_client/types/model_retrieve_response.py index 5594305c..4a0bdb11 100644 --- a/src/ogx_client/types/model_retrieve_response.py +++ b/src/ogx_client/types/model_retrieve_response.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/models/__init__.py b/src/ogx_client/types/models/__init__.py index d14ed874..f8ee8b14 100644 --- a/src/ogx_client/types/models/__init__.py +++ b/src/ogx_client/types/models/__init__.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/moderation_create_params.py b/src/ogx_client/types/moderation_create_params.py index 44b121ef..edd9f250 100644 --- a/src/ogx_client/types/moderation_create_params.py +++ b/src/ogx_client/types/moderation_create_params.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/prompt.py b/src/ogx_client/types/prompt.py index e56d15e3..51679b9e 100644 --- a/src/ogx_client/types/prompt.py +++ b/src/ogx_client/types/prompt.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/prompt_create_params.py b/src/ogx_client/types/prompt_create_params.py index e49f06f1..ba5cfe2a 100644 --- a/src/ogx_client/types/prompt_create_params.py +++ b/src/ogx_client/types/prompt_create_params.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/prompt_list_response.py b/src/ogx_client/types/prompt_list_response.py index 4c002a6f..37ac9b55 100644 --- a/src/ogx_client/types/prompt_list_response.py +++ b/src/ogx_client/types/prompt_list_response.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/prompt_retrieve_params.py b/src/ogx_client/types/prompt_retrieve_params.py index fb2a9951..9aeca69c 100644 --- a/src/ogx_client/types/prompt_retrieve_params.py +++ b/src/ogx_client/types/prompt_retrieve_params.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/prompt_set_default_version_params.py b/src/ogx_client/types/prompt_set_default_version_params.py index 3be82657..6b5c6130 100644 --- a/src/ogx_client/types/prompt_set_default_version_params.py +++ b/src/ogx_client/types/prompt_set_default_version_params.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/prompt_update_params.py b/src/ogx_client/types/prompt_update_params.py index 504ba803..9b29183e 100644 --- a/src/ogx_client/types/prompt_update_params.py +++ b/src/ogx_client/types/prompt_update_params.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/prompts/__init__.py b/src/ogx_client/types/prompts/__init__.py index d14ed874..f8ee8b14 100644 --- a/src/ogx_client/types/prompts/__init__.py +++ b/src/ogx_client/types/prompts/__init__.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/provider_list_response.py b/src/ogx_client/types/provider_list_response.py index 6f9c1832..cdc107ea 100644 --- a/src/ogx_client/types/provider_list_response.py +++ b/src/ogx_client/types/provider_list_response.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/query_chunks_response.py b/src/ogx_client/types/query_chunks_response.py index 5eef720d..a0608629 100644 --- a/src/ogx_client/types/query_chunks_response.py +++ b/src/ogx_client/types/query_chunks_response.py @@ -1,9 +1,3 @@ -# 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, List, Union, Optional diff --git a/src/ogx_client/types/response_create_params.py b/src/ogx_client/types/response_create_params.py index 2bf5c284..c4cd1812 100644 --- a/src/ogx_client/types/response_create_params.py +++ b/src/ogx_client/types/response_create_params.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/response_delete_response.py b/src/ogx_client/types/response_delete_response.py index ca3c55ad..3873cdaa 100644 --- a/src/ogx_client/types/response_delete_response.py +++ b/src/ogx_client/types/response_delete_response.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/response_list_params.py b/src/ogx_client/types/response_list_params.py index ae04dd61..d834226a 100644 --- a/src/ogx_client/types/response_list_params.py +++ b/src/ogx_client/types/response_list_params.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/response_list_response.py b/src/ogx_client/types/response_list_response.py index c308ebf2..670f0c1d 100644 --- a/src/ogx_client/types/response_list_response.py +++ b/src/ogx_client/types/response_list_response.py @@ -1,9 +1,3 @@ -# 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, List, Union, Optional diff --git a/src/ogx_client/types/response_object.py b/src/ogx_client/types/response_object.py index 15f740c2..36c7d6fb 100644 --- a/src/ogx_client/types/response_object.py +++ b/src/ogx_client/types/response_object.py @@ -1,9 +1,3 @@ -# 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, List, Union, Optional diff --git a/src/ogx_client/types/response_object_stream.py b/src/ogx_client/types/response_object_stream.py index f24b32dc..c582f93e 100644 --- a/src/ogx_client/types/response_object_stream.py +++ b/src/ogx_client/types/response_object_stream.py @@ -1,9 +1,3 @@ -# 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, List, Union, Optional diff --git a/src/ogx_client/types/responses/__init__.py b/src/ogx_client/types/responses/__init__.py index f3618e05..cb934712 100644 --- a/src/ogx_client/types/responses/__init__.py +++ b/src/ogx_client/types/responses/__init__.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/responses/input_item_list_params.py b/src/ogx_client/types/responses/input_item_list_params.py index 5ea9bf2f..b7838455 100644 --- a/src/ogx_client/types/responses/input_item_list_params.py +++ b/src/ogx_client/types/responses/input_item_list_params.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/responses/input_item_list_response.py b/src/ogx_client/types/responses/input_item_list_response.py index 9fa4b637..74ec94a2 100644 --- a/src/ogx_client/types/responses/input_item_list_response.py +++ b/src/ogx_client/types/responses/input_item_list_response.py @@ -1,9 +1,3 @@ -# 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, List, Union, Optional diff --git a/src/ogx_client/types/route_list_params.py b/src/ogx_client/types/route_list_params.py index 2140181d..37cb351f 100644 --- a/src/ogx_client/types/route_list_params.py +++ b/src/ogx_client/types/route_list_params.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/route_list_response.py b/src/ogx_client/types/route_list_response.py index 8241a4ca..71a9cfe5 100644 --- a/src/ogx_client/types/route_list_response.py +++ b/src/ogx_client/types/route_list_response.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/run_shield_response.py b/src/ogx_client/types/run_shield_response.py index 7e73ab16..e27d2a36 100644 --- a/src/ogx_client/types/run_shield_response.py +++ b/src/ogx_client/types/run_shield_response.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/safety_run_shield_params.py b/src/ogx_client/types/safety_run_shield_params.py index f38353c9..9e4f68b9 100644 --- a/src/ogx_client/types/safety_run_shield_params.py +++ b/src/ogx_client/types/safety_run_shield_params.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/scoring_fn_params.py b/src/ogx_client/types/scoring_fn_params.py index 3b604109..937fd886 100644 --- a/src/ogx_client/types/scoring_fn_params.py +++ b/src/ogx_client/types/scoring_fn_params.py @@ -1,9 +1,3 @@ -# 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, Union, Optional diff --git a/src/ogx_client/types/scoring_fn_params_param.py b/src/ogx_client/types/scoring_fn_params_param.py index 362c7121..46264833 100644 --- a/src/ogx_client/types/scoring_fn_params_param.py +++ b/src/ogx_client/types/scoring_fn_params_param.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/shared/__init__.py b/src/ogx_client/types/shared/__init__.py index cc6b1615..ecbd3c35 100644 --- a/src/ogx_client/types/shared/__init__.py +++ b/src/ogx_client/types/shared/__init__.py @@ -1,9 +1,3 @@ -# 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 .param_type import ParamType as ParamType diff --git a/src/ogx_client/types/shared/health_info.py b/src/ogx_client/types/shared/health_info.py index f541c5ba..82fcbd57 100644 --- a/src/ogx_client/types/shared/health_info.py +++ b/src/ogx_client/types/shared/health_info.py @@ -1,9 +1,3 @@ -# 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_extensions import Literal diff --git a/src/ogx_client/types/shared/interleaved_content.py b/src/ogx_client/types/shared/interleaved_content.py index 7b7e1c26..0c4433c6 100644 --- a/src/ogx_client/types/shared/interleaved_content.py +++ b/src/ogx_client/types/shared/interleaved_content.py @@ -1,9 +1,3 @@ -# 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, Union, Optional diff --git a/src/ogx_client/types/shared/interleaved_content_item.py b/src/ogx_client/types/shared/interleaved_content_item.py index d8f128e6..5b9e81be 100644 --- a/src/ogx_client/types/shared/interleaved_content_item.py +++ b/src/ogx_client/types/shared/interleaved_content_item.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/shared/list_providers_response.py b/src/ogx_client/types/shared/list_providers_response.py index d27e3f9c..477e0ee2 100644 --- a/src/ogx_client/types/shared/list_providers_response.py +++ b/src/ogx_client/types/shared/list_providers_response.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/shared/list_routes_response.py b/src/ogx_client/types/shared/list_routes_response.py index 7a31d557..4621033e 100644 --- a/src/ogx_client/types/shared/list_routes_response.py +++ b/src/ogx_client/types/shared/list_routes_response.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/shared/param_type.py b/src/ogx_client/types/shared/param_type.py index 01613f44..09c996a9 100644 --- a/src/ogx_client/types/shared/param_type.py +++ b/src/ogx_client/types/shared/param_type.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/shared/provider_info.py b/src/ogx_client/types/shared/provider_info.py index d6544fcb..99b2cdfe 100644 --- a/src/ogx_client/types/shared/provider_info.py +++ b/src/ogx_client/types/shared/provider_info.py @@ -1,9 +1,3 @@ -# 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 diff --git a/src/ogx_client/types/shared/route_info.py b/src/ogx_client/types/shared/route_info.py index 63d9019b..6caa7617 100644 --- a/src/ogx_client/types/shared/route_info.py +++ b/src/ogx_client/types/shared/route_info.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/shared/safety_violation.py b/src/ogx_client/types/shared/safety_violation.py index 6ec1557d..bad07149 100644 --- a/src/ogx_client/types/shared/safety_violation.py +++ b/src/ogx_client/types/shared/safety_violation.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/shared/sampling_params.py b/src/ogx_client/types/shared/sampling_params.py index 8d80baf6..273f6164 100644 --- a/src/ogx_client/types/shared/sampling_params.py +++ b/src/ogx_client/types/shared/sampling_params.py @@ -1,9 +1,3 @@ -# 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, Union, Optional diff --git a/src/ogx_client/types/shared/system_message.py b/src/ogx_client/types/shared/system_message.py index 7cc6976f..90af2059 100644 --- a/src/ogx_client/types/shared/system_message.py +++ b/src/ogx_client/types/shared/system_message.py @@ -1,9 +1,3 @@ -# 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, Union, Optional diff --git a/src/ogx_client/types/shared/version_info.py b/src/ogx_client/types/shared/version_info.py index cbb77039..573264b2 100644 --- a/src/ogx_client/types/shared/version_info.py +++ b/src/ogx_client/types/shared/version_info.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/shield.py b/src/ogx_client/types/shield.py index 53cc44bb..0484b4b3 100644 --- a/src/ogx_client/types/shield.py +++ b/src/ogx_client/types/shield.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/shield_list_response.py b/src/ogx_client/types/shield_list_response.py index 957f71c7..0cba0500 100644 --- a/src/ogx_client/types/shield_list_response.py +++ b/src/ogx_client/types/shield_list_response.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/shield_register_params.py b/src/ogx_client/types/shield_register_params.py index d73fff2e..f030aa83 100644 --- a/src/ogx_client/types/shield_register_params.py +++ b/src/ogx_client/types/shield_register_params.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/vector_io_insert_params.py b/src/ogx_client/types/vector_io_insert_params.py index cd0e6e37..e9348a26 100644 --- a/src/ogx_client/types/vector_io_insert_params.py +++ b/src/ogx_client/types/vector_io_insert_params.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/vector_io_query_params.py b/src/ogx_client/types/vector_io_query_params.py index 60de1d8c..019cea3a 100644 --- a/src/ogx_client/types/vector_io_query_params.py +++ b/src/ogx_client/types/vector_io_query_params.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/vector_store.py b/src/ogx_client/types/vector_store.py index 4b1e3a2d..bc1966aa 100644 --- a/src/ogx_client/types/vector_store.py +++ b/src/ogx_client/types/vector_store.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/vector_store_create_params.py b/src/ogx_client/types/vector_store_create_params.py index af2a1d69..e0c26522 100644 --- a/src/ogx_client/types/vector_store_create_params.py +++ b/src/ogx_client/types/vector_store_create_params.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/vector_store_delete_response.py b/src/ogx_client/types/vector_store_delete_response.py index adb2580f..23084066 100644 --- a/src/ogx_client/types/vector_store_delete_response.py +++ b/src/ogx_client/types/vector_store_delete_response.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/vector_store_list_params.py b/src/ogx_client/types/vector_store_list_params.py index ca60ba49..55e98efe 100644 --- a/src/ogx_client/types/vector_store_list_params.py +++ b/src/ogx_client/types/vector_store_list_params.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/vector_store_search_params.py b/src/ogx_client/types/vector_store_search_params.py index fd70aacd..c43081d7 100644 --- a/src/ogx_client/types/vector_store_search_params.py +++ b/src/ogx_client/types/vector_store_search_params.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/vector_store_search_response.py b/src/ogx_client/types/vector_store_search_response.py index b87e8240..24fa7784 100644 --- a/src/ogx_client/types/vector_store_search_response.py +++ b/src/ogx_client/types/vector_store_search_response.py @@ -1,9 +1,3 @@ -# 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, List, Union, Optional diff --git a/src/ogx_client/types/vector_store_update_params.py b/src/ogx_client/types/vector_store_update_params.py index b440373f..0a746709 100644 --- a/src/ogx_client/types/vector_store_update_params.py +++ b/src/ogx_client/types/vector_store_update_params.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/vector_stores/__init__.py b/src/ogx_client/types/vector_stores/__init__.py index eba5fe9f..3973c8f9 100644 --- a/src/ogx_client/types/vector_stores/__init__.py +++ b/src/ogx_client/types/vector_stores/__init__.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/vector_stores/file_batch_create_params.py b/src/ogx_client/types/vector_stores/file_batch_create_params.py index aca32191..ad794e3f 100644 --- a/src/ogx_client/types/vector_stores/file_batch_create_params.py +++ b/src/ogx_client/types/vector_stores/file_batch_create_params.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/vector_stores/file_batch_list_files_params.py b/src/ogx_client/types/vector_stores/file_batch_list_files_params.py index 2fac294a..8fdc7b5d 100644 --- a/src/ogx_client/types/vector_stores/file_batch_list_files_params.py +++ b/src/ogx_client/types/vector_stores/file_batch_list_files_params.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/vector_stores/file_content_params.py b/src/ogx_client/types/vector_stores/file_content_params.py index a0e83515..ca5ff6de 100644 --- a/src/ogx_client/types/vector_stores/file_content_params.py +++ b/src/ogx_client/types/vector_stores/file_content_params.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/vector_stores/file_content_response.py b/src/ogx_client/types/vector_stores/file_content_response.py index 3ee107cf..c1a6c22e 100644 --- a/src/ogx_client/types/vector_stores/file_content_response.py +++ b/src/ogx_client/types/vector_stores/file_content_response.py @@ -1,9 +1,3 @@ -# 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, List, Optional diff --git a/src/ogx_client/types/vector_stores/file_create_params.py b/src/ogx_client/types/vector_stores/file_create_params.py index 55a90979..845334f4 100644 --- a/src/ogx_client/types/vector_stores/file_create_params.py +++ b/src/ogx_client/types/vector_stores/file_create_params.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/vector_stores/file_delete_response.py b/src/ogx_client/types/vector_stores/file_delete_response.py index 3fdbaab2..6b1f46dd 100644 --- a/src/ogx_client/types/vector_stores/file_delete_response.py +++ b/src/ogx_client/types/vector_stores/file_delete_response.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/vector_stores/file_list_params.py b/src/ogx_client/types/vector_stores/file_list_params.py index 6dad1c50..5f0ef25a 100644 --- a/src/ogx_client/types/vector_stores/file_list_params.py +++ b/src/ogx_client/types/vector_stores/file_list_params.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/vector_stores/file_update_params.py b/src/ogx_client/types/vector_stores/file_update_params.py index 0df73d82..09661a37 100644 --- a/src/ogx_client/types/vector_stores/file_update_params.py +++ b/src/ogx_client/types/vector_stores/file_update_params.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/vector_stores/list_vector_store_files_in_batch_response.py b/src/ogx_client/types/vector_stores/list_vector_store_files_in_batch_response.py index 938ab517..06107a06 100644 --- a/src/ogx_client/types/vector_stores/list_vector_store_files_in_batch_response.py +++ b/src/ogx_client/types/vector_stores/list_vector_store_files_in_batch_response.py @@ -1,9 +1,3 @@ -# 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/ogx_client/types/vector_stores/vector_store_file.py b/src/ogx_client/types/vector_stores/vector_store_file.py index bfc0d452..10d1846e 100644 --- a/src/ogx_client/types/vector_stores/vector_store_file.py +++ b/src/ogx_client/types/vector_stores/vector_store_file.py @@ -1,9 +1,3 @@ -# 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, Union, Optional diff --git a/src/ogx_client/types/vector_stores/vector_store_file_batches.py b/src/ogx_client/types/vector_stores/vector_store_file_batches.py index 169a3ee0..a55940ab 100644 --- a/src/ogx_client/types/vector_stores/vector_store_file_batches.py +++ b/src/ogx_client/types/vector_stores/vector_store_file_batches.py @@ -1,9 +1,3 @@ -# 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/tests/__init__.py b/tests/__init__.py index 6a8e62e9..fd8019a9 100644 --- a/tests/__init__.py +++ b/tests/__init__.py @@ -1,7 +1 @@ -# 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/__init__.py b/tests/api_resources/__init__.py index 6a8e62e9..fd8019a9 100644 --- a/tests/api_resources/__init__.py +++ b/tests/api_resources/__init__.py @@ -1,7 +1 @@ -# 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/alpha/__init__.py b/tests/api_resources/alpha/__init__.py index 6a8e62e9..fd8019a9 100644 --- a/tests/api_resources/alpha/__init__.py +++ b/tests/api_resources/alpha/__init__.py @@ -1,7 +1 @@ -# 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/alpha/test_admin.py b/tests/api_resources/alpha/test_admin.py index 093c6f1c..fc640b8f 100644 --- a/tests/api_resources/alpha/test_admin.py +++ b/tests/api_resources/alpha/test_admin.py @@ -1,9 +1,3 @@ -# 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/alpha/test_inference.py b/tests/api_resources/alpha/test_inference.py index 9720a689..aa4c69a0 100644 --- a/tests/api_resources/alpha/test_inference.py +++ b/tests/api_resources/alpha/test_inference.py @@ -1,9 +1,3 @@ -# 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/chat/__init__.py b/tests/api_resources/chat/__init__.py index 6a8e62e9..fd8019a9 100644 --- a/tests/api_resources/chat/__init__.py +++ b/tests/api_resources/chat/__init__.py @@ -1,7 +1 @@ -# 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/chat/test_completions.py b/tests/api_resources/chat/test_completions.py index f80d8c08..7ea6bc68 100644 --- a/tests/api_resources/chat/test_completions.py +++ b/tests/api_resources/chat/test_completions.py @@ -1,9 +1,3 @@ -# 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/conversations/__init__.py b/tests/api_resources/conversations/__init__.py index 6a8e62e9..fd8019a9 100644 --- a/tests/api_resources/conversations/__init__.py +++ b/tests/api_resources/conversations/__init__.py @@ -1,7 +1 @@ -# 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/conversations/test_items.py b/tests/api_resources/conversations/test_items.py index 70248f7c..53f9b999 100644 --- a/tests/api_resources/conversations/test_items.py +++ b/tests/api_resources/conversations/test_items.py @@ -1,9 +1,3 @@ -# 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/models/__init__.py b/tests/api_resources/models/__init__.py index 6a8e62e9..fd8019a9 100644 --- a/tests/api_resources/models/__init__.py +++ b/tests/api_resources/models/__init__.py @@ -1,7 +1 @@ -# 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/models/test_openai.py b/tests/api_resources/models/test_openai.py index b8a83462..51c7ea86 100644 --- a/tests/api_resources/models/test_openai.py +++ b/tests/api_resources/models/test_openai.py @@ -1,9 +1,3 @@ -# 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/prompts/__init__.py b/tests/api_resources/prompts/__init__.py index 6a8e62e9..fd8019a9 100644 --- a/tests/api_resources/prompts/__init__.py +++ b/tests/api_resources/prompts/__init__.py @@ -1,7 +1 @@ -# 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 d1737b6a..b90a6c77 100644 --- a/tests/api_resources/prompts/test_versions.py +++ b/tests/api_resources/prompts/test_versions.py @@ -1,9 +1,3 @@ -# 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/responses/__init__.py b/tests/api_resources/responses/__init__.py index 6a8e62e9..fd8019a9 100644 --- a/tests/api_resources/responses/__init__.py +++ b/tests/api_resources/responses/__init__.py @@ -1,7 +1 @@ -# 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/responses/test_input_items.py b/tests/api_resources/responses/test_input_items.py index ba30155b..a9845244 100644 --- a/tests/api_resources/responses/test_input_items.py +++ b/tests/api_resources/responses/test_input_items.py @@ -1,9 +1,3 @@ -# 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 29986c0b..12b53e28 100644 --- a/tests/api_resources/test_batches.py +++ b/tests/api_resources/test_batches.py @@ -1,9 +1,3 @@ -# 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_completions.py b/tests/api_resources/test_completions.py index c38a9bcf..56d243bb 100644 --- a/tests/api_resources/test_completions.py +++ b/tests/api_resources/test_completions.py @@ -1,9 +1,3 @@ -# 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_conversations.py b/tests/api_resources/test_conversations.py index be14b7a3..0c144bc8 100644 --- a/tests/api_resources/test_conversations.py +++ b/tests/api_resources/test_conversations.py @@ -1,9 +1,3 @@ -# 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_embeddings.py b/tests/api_resources/test_embeddings.py index c1867e0a..07cfb2f9 100644 --- a/tests/api_resources/test_embeddings.py +++ b/tests/api_resources/test_embeddings.py @@ -1,9 +1,3 @@ -# 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_files.py b/tests/api_resources/test_files.py index 23849909..72b52e0d 100644 --- a/tests/api_resources/test_files.py +++ b/tests/api_resources/test_files.py @@ -1,9 +1,3 @@ -# 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_inspect.py b/tests/api_resources/test_inspect.py index e5048398..c2d6f3e4 100644 --- a/tests/api_resources/test_inspect.py +++ b/tests/api_resources/test_inspect.py @@ -1,9 +1,3 @@ -# 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_models.py b/tests/api_resources/test_models.py index 17e3f06c..2ec97cdc 100644 --- a/tests/api_resources/test_models.py +++ b/tests/api_resources/test_models.py @@ -1,9 +1,3 @@ -# 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_moderations.py b/tests/api_resources/test_moderations.py index 8f6dd5dd..bc920cf9 100644 --- a/tests/api_resources/test_moderations.py +++ b/tests/api_resources/test_moderations.py @@ -1,9 +1,3 @@ -# 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 35cbff8e..ecf122c0 100644 --- a/tests/api_resources/test_prompts.py +++ b/tests/api_resources/test_prompts.py @@ -1,9 +1,3 @@ -# 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_providers.py b/tests/api_resources/test_providers.py index d78e5620..5bed9798 100644 --- a/tests/api_resources/test_providers.py +++ b/tests/api_resources/test_providers.py @@ -1,9 +1,3 @@ -# 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_responses.py b/tests/api_resources/test_responses.py index 4781c912..445ad217 100644 --- a/tests/api_resources/test_responses.py +++ b/tests/api_resources/test_responses.py @@ -1,9 +1,3 @@ -# 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_routes.py b/tests/api_resources/test_routes.py index d2b6c232..869d977d 100644 --- a/tests/api_resources/test_routes.py +++ b/tests/api_resources/test_routes.py @@ -1,9 +1,3 @@ -# 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_safety.py b/tests/api_resources/test_safety.py index a85dccdc..e0d17947 100644 --- a/tests/api_resources/test_safety.py +++ b/tests/api_resources/test_safety.py @@ -1,9 +1,3 @@ -# 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_shields.py b/tests/api_resources/test_shields.py index 938c0745..610e6a11 100644 --- a/tests/api_resources/test_shields.py +++ b/tests/api_resources/test_shields.py @@ -1,9 +1,3 @@ -# 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_vector_io.py b/tests/api_resources/test_vector_io.py index 1b93fbca..5ddf7918 100644 --- a/tests/api_resources/test_vector_io.py +++ b/tests/api_resources/test_vector_io.py @@ -1,9 +1,3 @@ -# 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_vector_stores.py b/tests/api_resources/test_vector_stores.py index 8f3677b4..411eb338 100644 --- a/tests/api_resources/test_vector_stores.py +++ b/tests/api_resources/test_vector_stores.py @@ -1,9 +1,3 @@ -# 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/vector_stores/__init__.py b/tests/api_resources/vector_stores/__init__.py index 6a8e62e9..fd8019a9 100644 --- a/tests/api_resources/vector_stores/__init__.py +++ b/tests/api_resources/vector_stores/__init__.py @@ -1,7 +1 @@ -# 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/vector_stores/test_file_batches.py b/tests/api_resources/vector_stores/test_file_batches.py index 58584126..8e9ddbef 100644 --- a/tests/api_resources/vector_stores/test_file_batches.py +++ b/tests/api_resources/vector_stores/test_file_batches.py @@ -1,9 +1,3 @@ -# 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/vector_stores/test_files.py b/tests/api_resources/vector_stores/test_files.py index a2c927a0..a128590c 100644 --- a/tests/api_resources/vector_stores/test_files.py +++ b/tests/api_resources/vector_stores/test_files.py @@ -1,9 +1,3 @@ -# 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/conftest.py b/tests/conftest.py index 7b9e895d..0dfeb06e 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -1,9 +1,3 @@ -# 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/integration/test_agent_responses_e2e.py b/tests/integration/test_agent_responses_e2e.py index ecb13f3a..7a6cd7d1 100644 --- a/tests/integration/test_agent_responses_e2e.py +++ b/tests/integration/test_agent_responses_e2e.py @@ -1,9 +1,3 @@ -# 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. - import io import os import time diff --git a/tests/integration/test_agent_turn_step_events.py b/tests/integration/test_agent_turn_step_events.py index e6a45b70..086915df 100644 --- a/tests/integration/test_agent_turn_step_events.py +++ b/tests/integration/test_agent_turn_step_events.py @@ -1,9 +1,3 @@ -# 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. - """Integration tests for agent turn/step event model. These tests verify the core architecture of the turn/step event system: diff --git a/tests/lib/agents/test_agent_responses.py b/tests/lib/agents/test_agent_responses.py index 7648ed4f..1d2acbb4 100644 --- a/tests/lib/agents/test_agent_responses.py +++ b/tests/lib/agents/test_agent_responses.py @@ -1,9 +1,3 @@ -# 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. - from __future__ import annotations from types import SimpleNamespace diff --git a/tests/test_client.py b/tests/test_client.py index fb1ebc8e..d6786599 100644 --- a/tests/test_client.py +++ b/tests/test_client.py @@ -1,9 +1,3 @@ -# 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/test_extract_files.py b/tests/test_extract_files.py index f0377b44..6458ddbe 100644 --- a/tests/test_extract_files.py +++ b/tests/test_extract_files.py @@ -1,9 +1,3 @@ -# 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. - from __future__ import annotations from typing import Sequence diff --git a/tests/test_files.py b/tests/test_files.py index ea02a4b0..94fe693a 100644 --- a/tests/test_files.py +++ b/tests/test_files.py @@ -1,9 +1,3 @@ -# 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. - from pathlib import Path import anyio diff --git a/tests/test_models.py b/tests/test_models.py index 5e379c35..4d6cc93a 100644 --- a/tests/test_models.py +++ b/tests/test_models.py @@ -1,9 +1,3 @@ -# 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. - import json from typing import TYPE_CHECKING, Any, Dict, List, Union, Optional, cast from datetime import datetime, timezone diff --git a/tests/test_qs.py b/tests/test_qs.py index 9447f7e6..12d20663 100644 --- a/tests/test_qs.py +++ b/tests/test_qs.py @@ -1,9 +1,3 @@ -# 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. - from typing import Any, cast from functools import partial from urllib.parse import unquote diff --git a/tests/test_required_args.py b/tests/test_required_args.py index 2e48e9af..c5c91728 100644 --- a/tests/test_required_args.py +++ b/tests/test_required_args.py @@ -1,9 +1,3 @@ -# 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. - from __future__ import annotations import pytest diff --git a/tests/test_response.py b/tests/test_response.py index 34c3e163..99afb550 100644 --- a/tests/test_response.py +++ b/tests/test_response.py @@ -1,9 +1,3 @@ -# 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. - import json from typing import Any, List, Union, cast from typing_extensions import Annotated diff --git a/tests/test_streaming.py b/tests/test_streaming.py index 907653b0..3eaaa6d7 100644 --- a/tests/test_streaming.py +++ b/tests/test_streaming.py @@ -1,9 +1,3 @@ -# 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. - from __future__ import annotations from typing import Iterator, AsyncIterator diff --git a/tests/test_transform.py b/tests/test_transform.py index bc70e9f5..191c370b 100644 --- a/tests/test_transform.py +++ b/tests/test_transform.py @@ -1,9 +1,3 @@ -# 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. - from __future__ import annotations import io diff --git a/tests/test_utils/test_datetime_parse.py b/tests/test_utils/test_datetime_parse.py index 53b1c320..2500175d 100644 --- a/tests/test_utils/test_datetime_parse.py +++ b/tests/test_utils/test_datetime_parse.py @@ -1,9 +1,3 @@ -# 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. - """ Copied from https://github.com/pydantic/pydantic/blob/v1.10.22/tests/test_datetime_parse.py with modifications so it works without pydantic v1 imports. diff --git a/tests/test_utils/test_json.py b/tests/test_utils/test_json.py index b901338b..97d29d9e 100644 --- a/tests/test_utils/test_json.py +++ b/tests/test_utils/test_json.py @@ -1,9 +1,3 @@ -# 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. - from __future__ import annotations import datetime diff --git a/tests/test_utils/test_path.py b/tests/test_utils/test_path.py index 31731fb7..ca2d4c0f 100644 --- a/tests/test_utils/test_path.py +++ b/tests/test_utils/test_path.py @@ -1,9 +1,3 @@ -# 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. - from __future__ import annotations from typing import Any diff --git a/tests/test_utils/test_proxy.py b/tests/test_utils/test_proxy.py index 7613e853..3cb5e6e7 100644 --- a/tests/test_utils/test_proxy.py +++ b/tests/test_utils/test_proxy.py @@ -1,9 +1,3 @@ -# 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. - import operator from typing import Any from typing_extensions import override diff --git a/tests/test_utils/test_typing.py b/tests/test_utils/test_typing.py index 8223086a..639a4342 100644 --- a/tests/test_utils/test_typing.py +++ b/tests/test_utils/test_typing.py @@ -1,9 +1,3 @@ -# 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. - from __future__ import annotations from typing import Generic, TypeVar, cast diff --git a/tests/utils.py b/tests/utils.py index 2558e2da..1f457eaa 100644 --- a/tests/utils.py +++ b/tests/utils.py @@ -1,9 +1,3 @@ -# 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. - from __future__ import annotations import os