Microsoft Azure · Schema

createAssistantFileRequest

API ManagementCloudCloud ComputingEnterpriseInfrastructure as a ServicePlatform as a ServiceT1

Properties

Name Type Description
file_id string A [File](/docs/api-reference/files) ID (with `purpose="assistants"`) that the assistant should use. Useful for tools like `retrieval` and `code_interpreter` that can access files.
View JSON Schema on GitHub

JSON Schema

microsoft-azure-createassistantfilerequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/createAssistantFileRequest",
  "title": "createAssistantFileRequest",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "file_id": {
      "description": "A [File](/docs/api-reference/files) ID (with `purpose=\"assistants\"`) that the assistant should use. Useful for tools like `retrieval` and `code_interpreter` that can access files.",
      "type": "string"
    }
  },
  "required": [
    "file_id"
  ]
}