Skip to content

Commit 58d39bf

Browse files
Merge branch 'main' of github.com:box/developer.box.com
2 parents 086c7e4 + 04816a5 commit 58d39bf

File tree

11 files changed

+66
-25
lines changed

11 files changed

+66
-25
lines changed

content/guides/box-ai/ai-models/index.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,12 @@ Models offered in **Beta** mode have not been fully performance-tested at scale
5959
Box AI is powered by the following AI models. These models are integrated with Box AI to facilitate various use cases while adhering to enterprise grade standards. Below, you’ll find information about each model, including its capabilities, intended applications, and applicable usage guidelines.
6060

6161
<TileGrid rows="2">
62-
<Tile type="gpt" title="openai__gpt_5_reasoning_alpha" href="/guides/box-ai/ai-models/openai-gpt-5-reasoning-alpha-model-card">
62+
<Tile type="gpt" title="openai__gpt_5" href="/guides/box-ai/ai-models/openai-gpt-5-model-card">
6363
A multimodal model with advanced reasoning and long-context understanding.
6464
<div>
65+
<strong style="background-color: #e8e8e8">Default for Box AI for Hubs</strong>
66+
<strong style="background-color: #e8e8e8">Default for Box AI for Documents</strong>
67+
<strong style="background-color: #e8e8e8">Default for Box AI for Notes Q&A</strong>
6568
<strong style="background-color: #e8e8e8">Chat</strong>
6669
<strong style="background-color: #e1ffe7">Available</strong>
6770
<strong style="background-color: #f8d59b">Premium</strong>
@@ -70,9 +73,6 @@ Box AI is powered by the following AI models. These models are integrated with B
7073
<Tile type="gpt" title="azure__openai__gpt_4_1_mini" href="/guides/box-ai/ai-models/azure-openai-gpt-4-1-mini-model-card">
7174
A multimodal model designed to handle lightweight tasks.
7275
<div>
73-
<strong style="background-color: #e8e8e8">Default for Box AI for Box Hubs</strong>
74-
<strong style="background-color: #e8e8e8">Default for Box AI for Docs</strong>
75-
<strong style="background-color: #e8e8e8">Default for Box AI for Box Notes Q&A</strong>
7676
<strong style="background-color: #e8e8e8">Chat</strong>
7777
<strong style="background-color: #e1ffe7">Available</strong>
7878
<strong style="background-color: #fdfad8">Standard</strong>
@@ -220,6 +220,7 @@ Box AI is powered by the following AI models. These models are integrated with B
220220
<strong style="background-color: #e8e8e8">Chat</strong>
221221
<strong style="background-color: #e1ffe7">Available</strong>
222222
<strong style="background-color: #fdfad8">Standard</strong>
223+
<strong style="background-color: #e1f8ff">FedRAMP Moderate</strong>
223224
</div>
224225
</Tile>
225226
<Tile type="model" title="aws__titan_text_lite" href="/guides/box-ai/ai-models/aws-titan-text-lite-model-card">

content/guides/box-ai/ai-models/openai-gpt-5-reasoning-alpha-model-card.md renamed to content/guides/box-ai/ai-models/openai-gpt-5-model-card.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
rank: 3
2+
rank: 2
33
related_guides:
44
- box-ai/ai-tutorials/ask-questions
55
- box-ai/ai-tutorials/generate-text
@@ -17,7 +17,7 @@ related_guides:
1717
| ----- | ----- | ----------- |
1818
| Model name | **GPT-5** | The name of the model. |
1919
| Model category | **Premium** | The category of the model: Standard or Premium. |
20-
| API model name |`openai__gpt_5_reasoning_alpha`| The name of the model that is used in the [Box AI API for model overrides][overrides]. The user must provide this exact name for the API to work. |
20+
| API model name |`openai__gpt_5`| The name of the model that is used in the [Box AI API for model overrides][overrides]. The user must provide this exact name for the API to work. |
2121
| Hosting layer | **OpenAI** | The trusted organization that securely hosts LLM. |
2222
| Model provider | **OpenAI** | The organization that provides this model. |
2323
| Release date | **August 7th, 2025** | The release date for the model. |

content/guides/box-ai/ai-tutorials/ask-questions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ alias_paths:
1515
# Ask questions to Box AI
1616

1717
<Message type="notice">
18-
Box AI API is available to all Enterprise Plus and Enterprise Advanced customers.
18+
Box AI API is available to all customers Business and above.
1919

2020
</Message>
2121

content/guides/box-ai/ai-tutorials/generate-text.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ alias_paths:
1414
# Generate text with Box AI
1515

1616
<Message type="notice">
17-
Box AI API is available to all Enterprise Plus and Enterprise Advanced customers.
17+
Box AI API is available to all customers Business and above.
1818

1919
</Message>
2020

content/guides/metadata/5-queries/2-syntax.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,10 @@ A query supports the following logical operators.
9191
| `NOT IN` | Similar to `IN` but when the template field value matches none of the arguments provided in the list. |
9292
| `IS NULL` | Matches when the template field value is `null`. |
9393
| `IS NOT NULL` | Matches when the template field value is not `null` . |
94+
| `~` | Performs term-level search on the field against the provided terms. |
95+
| `HASANY` | Matches when the field value is equal to any of the arguments provided. The format requires each item in the list to be an explicitly defined `query_params` argument, for example, amount `HASANY (:arg1, :arg2, :arg3)`. |
96+
| `HASALL` | Matches when the field value has a match for all the arguments provided. The format requires each item in the list to be an explicitly defined `query_params` argument, for example, amount `HASALL (:arg1, :arg2, :arg3)`. |
97+
| `HASANCESTOR` | Matches when the field value is a descendant of any argument provided. The format requires each item in the list to be an explicitly defined `query_params` argument, for example, amount `HASANCESTOR (:arg1, :arg2, :arg3)`. Supported only for the taxonomy MD field. |
9498

9599
<!-- i18n-disable localize-links -->
96100

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
related_endpoints: []
3+
required_guides: []
4+
---
5+
# Query item fields
6+
7+
Item fields are searchable metadata fields that describe items (files and folders) in Box. These fields expose built-in item properties such as name, type, owner, and timestamps with defined data types so you can filter, sort, and search Box content.
8+
9+
## Supported item fields
10+
11+
The following table lists the item fields you can use in metadata queries.
12+
13+
| Field name | Description | Sorting |
14+
|------------|-------------|---------|
15+
| `item.type` | Type of the item: `file` or `folder` | Yes |
16+
| `item.name` | Name of the item | Yes |
17+
| `item.description` | Description of the item | Yes |
18+
| `item.extension` | File extension, such as `pdf`, `jpeg`, `xlsx`, `txt`, `xls`, `png`, `log`, or `csv` | Yes |
19+
| `item.owned_by` | Owner of the item, for example `user_123` | Yes |
20+
| `item.owner_enterprise_id` | Enterprise ID of the item owner, for example `1234` | Yes |
21+
| `item.created_at` | Date and time when the item was created in Box | Yes |
22+
| `item.modified_at` | Date and time when the item was last updated in Box | Yes |
23+
| `item.content_created_at` | Date and time when the item was originally created, which might be before it was uploaded to Box | Yes |
24+
| `item.content_modified_at` | Date and time when the item was last updated, which might be before it was uploaded to Box | Yes |
25+
| `item.quick_search_content` | Full-text search across item name, description, and metadata fields | No |

content/guides/metadata/5-queries/5-limitations.md

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -27,21 +27,21 @@ There are no immediate plans to start supporting these queries in the future.
2727

2828
## Recommended result set size
2929

30-
Where possible it is recommended to only send requests for which the result
30+
Where possible, it is recommended to only send requests for which the result
3131
set is less than 2,000 items.​ The ​result set​ is the entire collection of
32-
files and folder that match the metadata query exclusively based on evaluating
33-
the `​from​`, `​query​`, and `​query_params​` parameters - before the requesting
32+
files and folders that match the metadata query exclusively based on evaluating
33+
the `​from​`, `​query​`, and `​query_params​` parameters before the requesting
3434
user’s permissions and the `​ancestor_folder​` scope are considered.
3535

3636
When sending a metadata query request for which the result set exceeds 2,000
37-
items, the API can only guarantee that it returns all all matching results if
38-
both the following conditions are met.
37+
items, the API can only guarantee that it returns all matching results if
38+
both the following conditions are met:
3939

4040
1. The requesting user has at least **​Previewer** ​permission to all items in the result set
4141
2. The ancestor folder contains all of the files in the result set
4242

4343
When sending a metadata query request for which the result set exceeds 2,000
44-
items and for which these conditions are not true, the API might return error
44+
items and for which these conditions are not true, the API might return an error
4545
with a 4XX response code indicating that the query will need to be restricted to
4646
return fewer results.
4747

@@ -65,7 +65,7 @@ In this example, assume that there are 10 photographers, each of which have
6565
captured the same number of images that have the ​`catalogImages​` template
6666
applied.
6767

68-
Now consider assume that there are 4,000 files in your Box enterprise
68+
Now consider that there are 4,000 files in your Box enterprise
6969
which have the `catalogImages` template ​applied and which are split evenly
7070
between the two folders,​ `Parts​` and `Products`, ​which are children of the
7171
parent folder `​Catalog​` as shown below.
@@ -89,9 +89,7 @@ The following table indicates the outcome of several possible queries. The query
8989
is described in plain language for readability.
9090

9191
Remember that the ​result set ​is defined as a collection of items (files and
92-
folders) which match the metadata query exclusively based on evaluating the
93-
`​from​`, `​query​`, and `​query_params` parameters before the requesting user’s
94-
permissions and the `​ancestor_folder​` scope are considered.
92+
folders) which match the metadata query exclusively based on evaluating the `​from​`, `​query​`, and `​query_params` parameters — before the requesting user’s permissions and the `​ancestor_folder​` scope are considered.
9593

9694
| Query | Result Set | Outcome | Notes |
9795
|------------------------------------------------------------------------------------------------------------|-------------|----------|-------------------------------------------------------------------------------------------------------------------------------|
File renamed without changes.

content/guides/representations/supported-file-types.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,6 @@ The following file types are supported by the representation API.
140140
| `.xls` | Yes | Yes | Yes |
141141
| `.xlsm` | Yes | Yes | Yes |
142142
| `.xlsx` | Yes | Yes | Yes |
143-
| `.xlsb` | Yes | Yes | Yes |
144143

145144
## Text-Based Files
146145

content/microcopy/ai_dev_zone.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,22 +50,22 @@ sample_code:
5050
paragraph: Use this endpoint to integrate
5151
the document summary into your application.
5252
pricing: This endpoint is available to all
53-
Enterprise Plus and Enterprise Advanced customers.
53+
customers Business and above.
5454
metadata:
5555
headline: Box AI API - extract structured
5656
paragraph: Use this endpoint to add
5757
document structured metadata extraction to
5858
your applications. Pass a Box metadata template
5959
ID or your own metadata structure as a parameter.
6060
pricing: This endpoint is available to all
61-
Enterprise Plus and Enterprise Advanced customers.
61+
customers Business and above.
6262
metadata-unstructured:
6363
headline: Box AI API - extract
6464
paragraph: Use this endpoint to add
6565
document freeform metadata extraction to
6666
your applications. The endpoint allows various prompt formats.
6767
pricing: This endpoint is available to all
68-
Enterprise Plus and Enterprise Advanced customers.
68+
customers Business and above.
6969
developer_console:
7070
headline: Box Developer Console
7171
cta: Get started

0 commit comments

Comments
 (0)