Skip to content

Commit 47d9f17

Browse files
anssikodomenic
authored andcommitted
Update references to avoid redirects
This uses the new canonical URLs exclusively.
1 parent 0208acd commit 47d9f17

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Browsers and operating systems are increasingly expected to gain access to a lan
1212
* Translation between languages
1313
* Proofreading
1414

15-
Although the Chrome built-in AI team is exploring purpose-built APIs for some of these use cases (e.g. [translation](https://github.com/WICG/translation-api), and perhaps in the future summarization and compose), we are also exploring a general-purpose "prompt API" which allows web developers to prompt a language model directly. This gives web developers access to many more capabilities, at the cost of requiring them to do their own prompt engineering.
15+
Although the Chrome built-in AI team is exploring purpose-built APIs for some of these use cases (e.g. [translation](https://github.com/webmachinelearning/translation-api), and perhaps in the future summarization and compose), we are also exploring a general-purpose "prompt API" which allows web developers to prompt a language model directly. This gives web developers access to many more capabilities, at the cost of requiring them to do their own prompt engineering.
1616

1717
Currently, web developers wishing to use language models must either call out to cloud APIs, or bring their own and run them using technologies like WebAssembly and WebGPU. By providing access to the browser or operating system's existing language model, we can provide the following benefits compared to cloud APIs:
1818

@@ -171,7 +171,7 @@ async function promptWithCalculator(prompt) {
171171
console.log(await promptWithCalculator("What is 2 + 2?"));
172172
```
173173

174-
We'll likely explore more specific APIs for tool- and function-calling in the future; follow along in [issue #7](https://github.com/explainers-by-googlers/prompt-api/issues/7).
174+
We'll likely explore more specific APIs for tool- and function-calling in the future; follow along in [issue #7](https://github.com/webmachinelearning/prompt-api/issues/7).
175175

176176
### Configuration of per-session options
177177

@@ -389,7 +389,7 @@ interface AICreateMonitor : EventTarget {
389389
attribute EventHandler ondownloadprogress;
390390
391391
// Might get more stuff in the future, e.g. for
392-
// https://github.com/explainers-by-googlers/prompt-api/issues/4
392+
// https://github.com/webmachinelearning/prompt-api/issues/4
393393
};
394394
395395
callback AICreateMonitorCallback = undefined (AICreateMonitor monitor);

0 commit comments

Comments
 (0)