Skip to content

Commit 04d0935

Browse files
Merge pull request #6609 from aahill/aug-fixes
freshness
2 parents f38815c + 5757959 commit 04d0935

File tree

6 files changed

+15
-12
lines changed

6 files changed

+15
-12
lines changed

articles/ai-foundry/agents/how-to/tools/bing-custom-search.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ services: cognitive-services
66
manager: nitinme
77
ms.service: azure-ai-agent-service
88
ms.topic: how-to
9-
ms.date: 04/15/2025
9+
ms.date: 08/15/2025
1010
author: aahill
1111
ms.author: aahi
1212
ms.custom: azure-ai-agents
@@ -73,7 +73,7 @@ When you create or update a configuration, enter the following information:
7373
> * Domain and path (for example, `https://www.microsoft.com/surface`)
7474
> * Webpage (for example, `https://www.microsoft.com/en-us/p/surface-earbuds/8r9cpq146064`)
7575
76-
1. Allowed domains to search against. For allowed domains, if you want to include subpages, please make sure the domains have at most 2 levels of subpages.
76+
1. Allowed domains to search against. For allowed domains, if you want to include subpages, make sure the domains have at most two levels of subpages.
7777

7878
1. Blocked domains to exclude from the search space.
7979

@@ -112,9 +112,9 @@ When you add the Grounding with Bing Custom Search tool to your agent, you can p
112112

113113
|Name|Value|Type|Required |
114114
|-|-|-|- |
115-
|`count`|The number of search results to return in the response. The default is 5 and the maximum value is 50. The actual number delivered may be less than requested. It's possible for multiple pages to include some overlap in results. This parameter affects only web page results. It's possible that AI model might not use all search results returned by Bing.|`UnsignedShort`|No |
115+
|`count`|The number of search results to return in the response. The default is 5 and the maximum value is 50. The actual number delivered might be less than requested. It's possible for multiple pages to include some overlap in results. This parameter affects only web page results. It's possible that AI model might not use all search results returned by Bing.|`UnsignedShort`|No |
116116
|`freshness`|Filter search results by the following case-insensitive age values: <br/> **Day**: Return webpages that Bing discovered within the last 24 hours.<br/> **Week**: Return webpages that Bing discovered within the last 7 days.<br/> **Month**: Return webpages that Bing discovered within the last 30 days. To get articles discovered by Bing during a specific timeframe, specify a date range in the form: `YYYY-MM-DD..YYYY-MM-DD`. For example, `freshness=2019-02-01..2019-05-30`. To limit the results to a single date, set this parameter to a specific date. For example, `freshness=2019-02-04`.|String|No |
117-
|`market`|The market where the results come from. Typically, `mkt` is the country where the user is making the request from. However, it could be a different country if the user isn't located in a country where Bing delivers results. The market must be in the form: `<language>-<country/region>`. For example, `en-US`. The string is case insensitive. For a list of possible market values, see [Market codes](/bing/search-apis/bing-web-search/reference/market-codes). If known, you're encouraged to always specify the market. Specifying the market helps Bing route the request and return an appropriate and optimal response. If you specify a market that is not listed in Market codes, Bing uses a best fit market code based on an internal mapping that is subject to change. |String|No |
117+
|`market`|The market where the results come from. Typically, `mkt` is the country/region where the user is making the request from. However, it could be a different country/region if the user isn't located in a country/region where Bing delivers results. The market must be in the form: `<language>-<country/region>`. For example, `en-US`. The string is case insensitive. For a list of possible market values, see [Market codes](/bing/search-apis/bing-web-search/reference/market-codes). If known, you're encouraged to always specify the market. Specifying the market helps Bing route the request and return an appropriate and optimal response. If you specify a market that is not listed in Market codes, Bing uses a best fit market code based on an internal mapping that is subject to change. |String|No |
118118
|`set_lang`|The language to use for user interface strings. You may specify the language using either a 2-letter or 4-letter code. Using 4-letter codes is preferred.<br/> For a list of supported language codes, see [Bing supported languages](/bing/search-apis/bing-web-search/reference/market-codes#bing-supported-language-codes).<br/> Bing loads the localized strings if `setlang` contains a valid 2-letter neutral culture code (`fr`) or a valid 4-letter specific culture code (`fr-ca`). For example, for `fr-ca`, Bing loads the `fr` neutral culture code strings.<br/> If `setlang` isn't valid (for example, `zh`) or Bing doesn’t support the language (for example, `af`, `af-na`), Bing defaults to `en` (English).<br/> To specify the 2-letter code, set this parameter to an ISO 639-1 language code.<br/> To specify the 4-letter code, use the form `<language>-<country/region>` where `<language>` is an ISO 639-1 language code (neutral culture) and `<country/region>` is an ISO 3166 country/region (specific culture) code. For example, use `en-US` for United States English.<br/> Although optional, you should always specify the language. Typically, you set `setLang` to the same language specified by `mkt` unless the user wants the user interface strings displayed in a different language. |String|No |
119119

120120

articles/ai-foundry/openai/how-to/assistant.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ manager: nitinme
77
ms.service: azure-ai-openai
88
ms.custom: references_regions
99
ms.topic: how-to
10-
ms.date: 04/29/2025
10+
ms.date: 08/15/2025
1111
author: aahill
1212
ms.author: aahi
1313
recommendations: false
@@ -16,6 +16,9 @@ recommendations: false
1616

1717
# Getting started with Azure OpenAI Assistants (Preview)
1818

19+
> [!NOTE]
20+
> The [Azure AI Foundry Agent Service](../../agents/overview.md) is now Generally Available and includes additional tools and capabilities that extend beyond what Assistants provides.
21+
1922
Azure OpenAI Assistants (Preview) allows you to create AI assistants tailored to your needs through custom instructions and augmented by advanced tools like code interpreter, and custom functions. In this article, we provide an in-depth walkthrough of getting started with the Assistants API.
2023

2124
## Assistants support

articles/ai-foundry/openai/how-to/on-your-data-best-practices.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ titleSuffix: Azure OpenAI in Azure AI Foundry Models
44
description: Learn about the best practices for using Azure OpenAI On Your Data, along with how to fix common problems.
55
ms.service: azure-ai-openai
66
ms.topic: conceptual
7-
ms.date: 04/29/2025
7+
ms.date: 08/15/2025
88
ms.custom: references_regions, build-2023, build-2023-dataai, refefences_regions
99
manager: nitinme
1010
author: aahill

articles/ai-services/containers/azure-kubernetes-recipe.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ author: aahill
66
manager: nitinme
77
ms.service: azure-ai-language
88
ms.topic: conceptual
9-
ms.date: 01/31/2025
9+
ms.date: 08/15/2025
1010
ms.author: aahi
1111
ms.custom: devx-track-azurecli
1212
ms.devlang: azurecli

articles/ai-services/containers/container-faq.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ metadata:
88
manager: nitinme
99
ms.service: azure-ai-services
1010
ms.topic: faq
11-
ms.date: 01/31/2025
11+
ms.date: 08/15/2025
1212
ms.author: aahi
1313
title: FAQ for Azure AI containers
1414
summary: |
@@ -82,7 +82,7 @@ sections:
8282
| `BillingEndpointBusy` | The billing endpoint is currently busy. Check the `Retry-After` value and wait for this period to end before you make more requests. |
8383
| `ContainerUseUnauthorized` | The provided API key isn't authorized for use with this container. You're likely using a gated container, so make sure your Azure subscription ID is approved by submitting an [online request](https://aka.ms/csgate). |
8484
| `[ERROR] Failed to download: context deadline exceeded` | The model file download request to our servers timed out. Make sure you have a strong internet connection to download all required files within one hour. Model downloads apply to Text Translation and some Speech service containers. |
85-
| `The provided license path was not found. Please ensure a volume is mounted and a directory exists at the location specified by Mounts:License` | **Disconnected containers only.** There is no license file stored locally at the location specified in your docker run command. You might have mounted the license volume incorrectly. Be sure to check your local file system and provide a valid filepath to the desired local storage location for the license file using the `-v` argument in your docker run command. |
85+
| `The provided license path was not found. Please ensure a volume is mounted and a directory exists at the location specified by `Mounts:License` | **Disconnected containers only.** There is no license file stored locally at the location specified in your docker run command. You might have mounted the license volume incorrectly. Be sure to check your local file system and provide a valid filepath to the desired local storage location for the license file using the `-v` argument in your docker run command. |
8686
| `Unknown` | The server is currently unable to process billing requests. |
8787
8888
- question: How do I get support?
@@ -132,7 +132,7 @@ sections:
132132
133133
- question: What hardware is required to run these containers?
134134
answer: |
135-
Azure AI containers are x64-based containers that can run any compatible Linux node, VM, and edge device that supports x64 Linux Docker containers. They all require CPU processors. For more information, see the container requirements and recommendations section of the [container](../cognitive-services-container-support.md) you're using.
135+
Azure AI containers are x64-based containers that can run any compatible Linux node, virtual machine, and edge device that supports x64 Linux Docker containers. They all require CPU processors. For more information, see the container requirements and recommendations section of the [container](../cognitive-services-container-support.md) you're using.
136136
137137
- question: Are these containers currently supported on Windows?
138138
answer: |

articles/ai-services/containers/container-reuse-recipe.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ author: aahill
66
manager: nitinme
77
ms.service: azure-ai-services
88
ms.topic: how-to
9-
ms.date: 01/31/2025
9+
ms.date: 08/15/2025
1010
ms.author: aahi
1111
#Customer intent: As a potential customer, I want to know how to configure containers so I can reuse them.
1212
---
@@ -122,7 +122,7 @@ Follow these steps to use the Dockerfile and place the new image in your private
122122
az acr login --name <my-registry>
123123
```
124124

125-
You can also sign in with `docker login` if you are assigned a service principal.
125+
You can also sign in with `docker login` if you are assigned to a service principal.
126126

127127
```Bash
128128
docker login <my-registry>.azurecr.io

0 commit comments

Comments
 (0)