├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .github ├── CODEOWNERS └── workflows │ ├── ci.yml │ ├── examples.yml │ ├── publish-pypi.yml │ └── release-doctor.yml ├── .gitignore ├── .python-version ├── .release-please-manifest.json ├── .stats.yml ├── .vscode └── settings.json ├── Brewfile ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── api.md ├── bin ├── check-release-environment └── publish-pypi ├── examples ├── .keep ├── async_chat.py ├── chat.py ├── logo.png ├── logo2.png ├── moderation.py ├── structured.py ├── tool_call.py └── vision.py ├── noxfile.py ├── pyproject.toml ├── release-please-config.json ├── requirements-dev.lock ├── requirements.lock ├── scripts ├── bootstrap ├── format ├── lint ├── mock ├── test └── utils │ ├── ruffen-docs.py │ └── upload-artifact.sh ├── src └── llama_api_client │ ├── __init__.py │ ├── _base_client.py │ ├── _client.py │ ├── _compat.py │ ├── _constants.py │ ├── _exceptions.py │ ├── _files.py │ ├── _models.py │ ├── _qs.py │ ├── _resource.py │ ├── _response.py │ ├── _streaming.py │ ├── _types.py │ ├── _utils │ ├── __init__.py │ ├── _compat.py │ ├── _datetime_parse.py │ ├── _logs.py │ ├── _proxy.py │ ├── _reflection.py │ ├── _resources_proxy.py │ ├── _streams.py │ ├── _sync.py │ ├── _transform.py │ ├── _typing.py │ └── _utils.py │ ├── _version.py │ ├── _wrappers.py │ ├── lib │ └── .keep │ ├── py.typed │ ├── resources │ ├── __init__.py │ ├── chat │ │ ├── __init__.py │ │ ├── chat.py │ │ └── completions.py │ ├── models.py │ ├── moderations.py │ └── uploads.py │ └── types │ ├── __init__.py │ ├── chat │ ├── __init__.py │ └── completion_create_params.py │ ├── completion_message.py │ ├── completion_message_param.py │ ├── create_chat_completion_response.py │ ├── create_chat_completion_response_stream_chunk.py │ ├── llama_model.py │ ├── message_image_content_item_param.py │ ├── message_param.py │ ├── message_text_content_item.py │ ├── message_text_content_item_param.py │ ├── model_list_response.py │ ├── moderation_create_params.py │ ├── moderation_create_response.py │ ├── system_message_param.py │ ├── tool_response_message_param.py │ ├── upload_create_params.py │ ├── upload_create_response.py │ ├── upload_get_response.py │ ├── upload_part_params.py │ ├── upload_part_response.py │ └── user_message_param.py └── tests ├── __init__.py ├── api_resources ├── __init__.py ├── chat │ ├── __init__.py │ └── test_completions.py ├── test_models.py ├── test_moderations.py └── test_uploads.py ├── conftest.py ├── sample_file.txt ├── test_client.py ├── test_deepcopy.py ├── test_extract_files.py ├── test_files.py ├── test_models.py ├── test_qs.py ├── test_required_args.py ├── test_response.py ├── test_streaming.py ├── test_transform.py ├── test_utils ├── test_datetime_parse.py ├── test_proxy.py └── test_typing.py └── utils.py /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/examples.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/.github/workflows/examples.yml -------------------------------------------------------------------------------- /.github/workflows/publish-pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/.github/workflows/publish-pypi.yml -------------------------------------------------------------------------------- /.github/workflows/release-doctor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/.github/workflows/release-doctor.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.9.18 2 | -------------------------------------------------------------------------------- /.release-please-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | ".": "0.5.0" 3 | } -------------------------------------------------------------------------------- /.stats.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/.stats.yml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.analysis.importFormat": "relative", 3 | } 4 | -------------------------------------------------------------------------------- /Brewfile: -------------------------------------------------------------------------------- 1 | brew "rye" 2 | 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/SECURITY.md -------------------------------------------------------------------------------- /api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/api.md -------------------------------------------------------------------------------- /bin/check-release-environment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/bin/check-release-environment -------------------------------------------------------------------------------- /bin/publish-pypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/bin/publish-pypi -------------------------------------------------------------------------------- /examples/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/examples/.keep -------------------------------------------------------------------------------- /examples/async_chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/examples/async_chat.py -------------------------------------------------------------------------------- /examples/chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/examples/chat.py -------------------------------------------------------------------------------- /examples/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/examples/logo.png -------------------------------------------------------------------------------- /examples/logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/examples/logo2.png -------------------------------------------------------------------------------- /examples/moderation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/examples/moderation.py -------------------------------------------------------------------------------- /examples/structured.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/examples/structured.py -------------------------------------------------------------------------------- /examples/tool_call.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/examples/tool_call.py -------------------------------------------------------------------------------- /examples/vision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/examples/vision.py -------------------------------------------------------------------------------- /noxfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/noxfile.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/pyproject.toml -------------------------------------------------------------------------------- /release-please-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/release-please-config.json -------------------------------------------------------------------------------- /requirements-dev.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/requirements-dev.lock -------------------------------------------------------------------------------- /requirements.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/requirements.lock -------------------------------------------------------------------------------- /scripts/bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/scripts/bootstrap -------------------------------------------------------------------------------- /scripts/format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/scripts/format -------------------------------------------------------------------------------- /scripts/lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/scripts/lint -------------------------------------------------------------------------------- /scripts/mock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/scripts/mock -------------------------------------------------------------------------------- /scripts/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/scripts/test -------------------------------------------------------------------------------- /scripts/utils/ruffen-docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/scripts/utils/ruffen-docs.py -------------------------------------------------------------------------------- /scripts/utils/upload-artifact.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/scripts/utils/upload-artifact.sh -------------------------------------------------------------------------------- /src/llama_api_client/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/src/llama_api_client/__init__.py -------------------------------------------------------------------------------- /src/llama_api_client/_base_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/src/llama_api_client/_base_client.py -------------------------------------------------------------------------------- /src/llama_api_client/_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/src/llama_api_client/_client.py -------------------------------------------------------------------------------- /src/llama_api_client/_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/src/llama_api_client/_compat.py -------------------------------------------------------------------------------- /src/llama_api_client/_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/src/llama_api_client/_constants.py -------------------------------------------------------------------------------- /src/llama_api_client/_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/src/llama_api_client/_exceptions.py -------------------------------------------------------------------------------- /src/llama_api_client/_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/src/llama_api_client/_files.py -------------------------------------------------------------------------------- /src/llama_api_client/_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/src/llama_api_client/_models.py -------------------------------------------------------------------------------- /src/llama_api_client/_qs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/src/llama_api_client/_qs.py -------------------------------------------------------------------------------- /src/llama_api_client/_resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/src/llama_api_client/_resource.py -------------------------------------------------------------------------------- /src/llama_api_client/_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/src/llama_api_client/_response.py -------------------------------------------------------------------------------- /src/llama_api_client/_streaming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/src/llama_api_client/_streaming.py -------------------------------------------------------------------------------- /src/llama_api_client/_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/src/llama_api_client/_types.py -------------------------------------------------------------------------------- /src/llama_api_client/_utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/src/llama_api_client/_utils/__init__.py -------------------------------------------------------------------------------- /src/llama_api_client/_utils/_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/src/llama_api_client/_utils/_compat.py -------------------------------------------------------------------------------- /src/llama_api_client/_utils/_datetime_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/src/llama_api_client/_utils/_datetime_parse.py -------------------------------------------------------------------------------- /src/llama_api_client/_utils/_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/src/llama_api_client/_utils/_logs.py -------------------------------------------------------------------------------- /src/llama_api_client/_utils/_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/src/llama_api_client/_utils/_proxy.py -------------------------------------------------------------------------------- /src/llama_api_client/_utils/_reflection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/src/llama_api_client/_utils/_reflection.py -------------------------------------------------------------------------------- /src/llama_api_client/_utils/_resources_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/src/llama_api_client/_utils/_resources_proxy.py -------------------------------------------------------------------------------- /src/llama_api_client/_utils/_streams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/src/llama_api_client/_utils/_streams.py -------------------------------------------------------------------------------- /src/llama_api_client/_utils/_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/src/llama_api_client/_utils/_sync.py -------------------------------------------------------------------------------- /src/llama_api_client/_utils/_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/src/llama_api_client/_utils/_transform.py -------------------------------------------------------------------------------- /src/llama_api_client/_utils/_typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/src/llama_api_client/_utils/_typing.py -------------------------------------------------------------------------------- /src/llama_api_client/_utils/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/src/llama_api_client/_utils/_utils.py -------------------------------------------------------------------------------- /src/llama_api_client/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/src/llama_api_client/_version.py -------------------------------------------------------------------------------- /src/llama_api_client/_wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/src/llama_api_client/_wrappers.py -------------------------------------------------------------------------------- /src/llama_api_client/lib/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/src/llama_api_client/lib/.keep -------------------------------------------------------------------------------- /src/llama_api_client/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/llama_api_client/resources/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/src/llama_api_client/resources/__init__.py -------------------------------------------------------------------------------- /src/llama_api_client/resources/chat/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/src/llama_api_client/resources/chat/__init__.py -------------------------------------------------------------------------------- /src/llama_api_client/resources/chat/chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/src/llama_api_client/resources/chat/chat.py -------------------------------------------------------------------------------- /src/llama_api_client/resources/chat/completions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/src/llama_api_client/resources/chat/completions.py -------------------------------------------------------------------------------- /src/llama_api_client/resources/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/src/llama_api_client/resources/models.py -------------------------------------------------------------------------------- /src/llama_api_client/resources/moderations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/src/llama_api_client/resources/moderations.py -------------------------------------------------------------------------------- /src/llama_api_client/resources/uploads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/src/llama_api_client/resources/uploads.py -------------------------------------------------------------------------------- /src/llama_api_client/types/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/src/llama_api_client/types/__init__.py -------------------------------------------------------------------------------- /src/llama_api_client/types/chat/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/src/llama_api_client/types/chat/__init__.py -------------------------------------------------------------------------------- /src/llama_api_client/types/chat/completion_create_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/src/llama_api_client/types/chat/completion_create_params.py -------------------------------------------------------------------------------- /src/llama_api_client/types/completion_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/src/llama_api_client/types/completion_message.py -------------------------------------------------------------------------------- /src/llama_api_client/types/completion_message_param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/src/llama_api_client/types/completion_message_param.py -------------------------------------------------------------------------------- /src/llama_api_client/types/create_chat_completion_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/src/llama_api_client/types/create_chat_completion_response.py -------------------------------------------------------------------------------- /src/llama_api_client/types/create_chat_completion_response_stream_chunk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/src/llama_api_client/types/create_chat_completion_response_stream_chunk.py -------------------------------------------------------------------------------- /src/llama_api_client/types/llama_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/src/llama_api_client/types/llama_model.py -------------------------------------------------------------------------------- /src/llama_api_client/types/message_image_content_item_param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/src/llama_api_client/types/message_image_content_item_param.py -------------------------------------------------------------------------------- /src/llama_api_client/types/message_param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/src/llama_api_client/types/message_param.py -------------------------------------------------------------------------------- /src/llama_api_client/types/message_text_content_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/src/llama_api_client/types/message_text_content_item.py -------------------------------------------------------------------------------- /src/llama_api_client/types/message_text_content_item_param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/src/llama_api_client/types/message_text_content_item_param.py -------------------------------------------------------------------------------- /src/llama_api_client/types/model_list_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/src/llama_api_client/types/model_list_response.py -------------------------------------------------------------------------------- /src/llama_api_client/types/moderation_create_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/src/llama_api_client/types/moderation_create_params.py -------------------------------------------------------------------------------- /src/llama_api_client/types/moderation_create_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/src/llama_api_client/types/moderation_create_response.py -------------------------------------------------------------------------------- /src/llama_api_client/types/system_message_param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/src/llama_api_client/types/system_message_param.py -------------------------------------------------------------------------------- /src/llama_api_client/types/tool_response_message_param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/src/llama_api_client/types/tool_response_message_param.py -------------------------------------------------------------------------------- /src/llama_api_client/types/upload_create_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/src/llama_api_client/types/upload_create_params.py -------------------------------------------------------------------------------- /src/llama_api_client/types/upload_create_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/src/llama_api_client/types/upload_create_response.py -------------------------------------------------------------------------------- /src/llama_api_client/types/upload_get_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/src/llama_api_client/types/upload_get_response.py -------------------------------------------------------------------------------- /src/llama_api_client/types/upload_part_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/src/llama_api_client/types/upload_part_params.py -------------------------------------------------------------------------------- /src/llama_api_client/types/upload_part_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/src/llama_api_client/types/upload_part_response.py -------------------------------------------------------------------------------- /src/llama_api_client/types/user_message_param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/src/llama_api_client/types/user_message_param.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/api_resources/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/tests/api_resources/__init__.py -------------------------------------------------------------------------------- /tests/api_resources/chat/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/tests/api_resources/chat/__init__.py -------------------------------------------------------------------------------- /tests/api_resources/chat/test_completions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/tests/api_resources/chat/test_completions.py -------------------------------------------------------------------------------- /tests/api_resources/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/tests/api_resources/test_models.py -------------------------------------------------------------------------------- /tests/api_resources/test_moderations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/tests/api_resources/test_moderations.py -------------------------------------------------------------------------------- /tests/api_resources/test_uploads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/tests/api_resources/test_uploads.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/sample_file.txt: -------------------------------------------------------------------------------- 1 | Hello, world! 2 | -------------------------------------------------------------------------------- /tests/test_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/tests/test_client.py -------------------------------------------------------------------------------- /tests/test_deepcopy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/tests/test_deepcopy.py -------------------------------------------------------------------------------- /tests/test_extract_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/tests/test_extract_files.py -------------------------------------------------------------------------------- /tests/test_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/tests/test_files.py -------------------------------------------------------------------------------- /tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/tests/test_models.py -------------------------------------------------------------------------------- /tests/test_qs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/tests/test_qs.py -------------------------------------------------------------------------------- /tests/test_required_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/tests/test_required_args.py -------------------------------------------------------------------------------- /tests/test_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/tests/test_response.py -------------------------------------------------------------------------------- /tests/test_streaming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/tests/test_streaming.py -------------------------------------------------------------------------------- /tests/test_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/tests/test_transform.py -------------------------------------------------------------------------------- /tests/test_utils/test_datetime_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/tests/test_utils/test_datetime_parse.py -------------------------------------------------------------------------------- /tests/test_utils/test_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/tests/test_utils/test_proxy.py -------------------------------------------------------------------------------- /tests/test_utils/test_typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/tests/test_utils/test_typing.py -------------------------------------------------------------------------------- /tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama-api-python/HEAD/tests/utils.py --------------------------------------------------------------------------------