diff --git a/components/Developers.js b/components/Developers.js index 8f9b1854..17703dc0 100644 --- a/components/Developers.js +++ b/components/Developers.js @@ -42,7 +42,7 @@ export default function Developers({ buildWarnings = [], githubStats = null }) { )}

- pip install openadapt is the stable + pip install 'openadapt[browser]' is the stable end-user entry point. The openadapt-flow{' '} engine records a workflow, compiles it into a reviewable program, and replays it locally with no model diff --git a/components/MastHead.js b/components/MastHead.js index f3aae9f2..25bdde82 100644 --- a/components/MastHead.js +++ b/components/MastHead.js @@ -97,7 +97,7 @@ export default function Home({ githubStats: initialGithubStats }) {

- pip install openadapt + pip install 'openadapt[browser]'

- pip install openadapt + pip install 'openadapt[browser]'

diff --git a/pages/download.js b/pages/download.js index 1809a6f6..a00f90f8 100644 --- a/pages/download.js +++ b/pages/download.js @@ -142,7 +142,7 @@ export default function DownloadPage({ release, fetchFailed }) { Windows, macOS, and Linux.

-                    pip install openadapt
+                    pip install 'openadapt[browser]'
                 
@@ -269,7 +269,7 @@ export default function DownloadPage({ release, fetchFailed }) {

The next complete Beta set has not been published yet. Use{' '} - pip install openadapt, or watch the + pip install 'openadapt[browser]', or watch the desktop releases page for the native build.

@@ -522,7 +522,7 @@ export default function DownloadPage({ release, fetchFailed }) { Need the working workflow engine?

- Start with pip install openadapt, or bring the workflow + Start with pip install 'openadapt[browser]', or bring the workflow you most want to automate to a 30-minute call.

diff --git a/public/openadapt-paper.pdf b/public/openadapt-paper.pdf index a1d5e72e..db45a09d 100644 Binary files a/public/openadapt-paper.pdf and b/public/openadapt-paper.pdf differ diff --git a/tests/publicTruth.test.js b/tests/publicTruth.test.js index 429304d9..60bb0346 100644 --- a/tests/publicTruth.test.js +++ b/tests/publicTruth.test.js @@ -164,7 +164,7 @@ test('end-user quickstarts enter through OpenAdapt while engine links stay techn const developerLinks = read('data/developerLinks.js') const publicSurfaces = [install, pricing, templates, download].join('\n') - assert.match(publicSurfaces, /pip install openadapt/) + assert.match(publicSurfaces, /pip install 'openadapt\[browser\]'/) assert.match(publicSurfaces, /openadapt flow/) assert.doesNotMatch(publicSurfaces, /pip install openadapt-flow/) assert.doesNotMatch(publicSurfaces, /uv tool uninstall openadapt/)