Skip to content

Commit 0f52227

Browse files
committed
Use newer ai.languageModel property for Chrome built-in AI, continuing to support ai.assistant for backward compatibility.
1 parent 28a864a commit 0f52227

File tree

3 files changed

+12
-6
lines changed

3 files changed

+12
-6
lines changed

docs/Accessing-AI-Services-in-JavaScript.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ try {
272272

273273
In JavaScript the AI Services plugin allows using another service `browser`, additionally to using the third party API based AI services. This service relies on [Chrome's built-in AI APIs](https://developer.chrome.com/docs/ai/built-in-apis), which allow using AI in the browser, running on device, which can be a great option for certain use-cases as it does not require paying for API access and does not involve sending your prompts to an external third-party API.
274274

275-
Note that these APIs are still in an experimental stage and are not yet rolled out completely. If you use Chrome and already have access to the APIs, you can use them through the AI Services plugin just like any other service's APIs. To see whether you have access, check if `window.ai.assistant` is available in your browser console. If not, you can [request to join the Early Preview Program](http://goo.gle/chrome-ai-dev-preview-join).
275+
Note that these APIs are still in an experimental stage and are not yet rolled out completely. If you use Chrome and already have access to the APIs, you can use them through the AI Services plugin just like any other service's APIs. To see whether you have access, check if `window.ai.languageModel` is available in your browser console. If not, you can [request to join the Early Preview Program](http://goo.gle/chrome-ai-dev-preview-join).
276276

277277
### Customizing the default model configuration
278278

src/ai/browser.js

+5-2
Original file line numberDiff line numberDiff line change
@@ -38,15 +38,18 @@ export async function getBrowserServiceData() {
3838
* Gets the AI capabilities that the browser supports.
3939
*
4040
* @since 0.1.0
41+
* @since n.e.x.t Checks for newer `ai.languageModel` property.
4142
*
4243
* @param {Object} ai The browser AI API object.
4344
* @return {Promise<string[]>} The list of AI capabilities.
4445
*/
4546
async function getBrowserAiCapabilities( ai ) {
4647
const capabilities = [];
4748

48-
if ( ai.assistant ) {
49-
const supportsTextGeneration = await ai.assistant.capabilities();
49+
const llm = ai.languageModel || ai.assistant;
50+
51+
if ( llm ) {
52+
const supportsTextGeneration = await llm.capabilities();
5053
if (
5154
supportsTextGeneration &&
5255
supportsTextGeneration.available === 'readily'

src/ai/classes/browser-generative-ai-model.js

+6-3
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ function prepareContentForBrowser( content ) {
5555
* See https://github.com/explainers-by-googlers/prompt-api#examples for supported parameters.
5656
*
5757
* @since 0.3.0
58+
* @since n.e.x.t Checks for newer `ai.languageModel` property.
5859
*
5960
* @param {Object} modelParams Model parameters.
6061
* @return {Promise<Object>} The browser session.
@@ -79,20 +80,22 @@ async function createSession( modelParams ) {
7980
}
8081
}
8182

83+
const llm = window.ai.languageModel || window.ai.assistant;
84+
8285
if ( Object.keys( browserParams ).length === 0 ) {
83-
return window.ai.assistant.create();
86+
return llm.create();
8487
}
8588

8689
try {
87-
const session = await window.ai.assistant.create( browserParams );
90+
const session = await llm.create( browserParams );
8891
return session;
8992
} catch ( error ) {
9093
// eslint-disable-next-line no-console
9194
console.warn(
9295
'Failed to create browser session with modelParams, therefore creating default session. Original error:',
9396
error
9497
);
95-
return window.ai.assistant.create();
98+
return llm.create();
9699
}
97100
}
98101

0 commit comments

Comments
 (0)