Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion components/Developers.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export default function Developers({ buildWarnings = [], githubStats = null }) {
</div>
)}
<p className="mt-2 mb-6 mx-auto text-center max-w-2xl text-sm text-ink-2">
<code>pip install openadapt</code> is the stable
<code>pip install 'openadapt[browser]'</code> is the stable
end-user entry point. The <code>openadapt-flow</code>{' '}
engine records a workflow, compiles it into a
reviewable program, and replays it locally with no model
Expand Down
2 changes: 1 addition & 1 deletion components/MastHead.js
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ export default function Home({ githubStats: initialGithubStats }) {
</p>
<p className="mb-8 text-sm leading-relaxed text-ink-3">
<code className="rounded border border-hairline bg-panel px-2 py-1 text-ink">
pip install openadapt
pip install 'openadapt[browser]'
</code>
<span aria-hidden="true"> · </span>
<Link
Expand Down
2 changes: 1 addition & 1 deletion components/Pricing.js
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ export default function Pricing({ hostedOffer = null }) {
Run the open-source demo
</a>
<p className="mt-3 text-center font-mono text-xs text-ink-3">
pip install openadapt
pip install 'openadapt[browser]'
</p>
</EntryCard>

Expand Down
6 changes: 3 additions & 3 deletions pages/download.js
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ export default function DownloadPage({ release, fetchFailed }) {
Windows, macOS, and Linux.
</p>
<pre className="mt-6 max-w-2xl overflow-x-auto rounded-xl border border-hairline bg-panel p-4 font-mono text-sm text-ink">
<code>pip install openadapt</code>
<code>pip install 'openadapt[browser]'</code>
</pre>

<div className="mt-6 flex flex-wrap gap-3">
Expand Down Expand Up @@ -269,7 +269,7 @@ export default function DownloadPage({ release, fetchFailed }) {
<p className="mt-2 max-w-2xl text-sm text-ink-2">
The next complete Beta set has not been
published yet. Use{' '}
<code>pip install openadapt</code>, or watch the
<code>pip install 'openadapt[browser]'</code>, or watch the
desktop releases page for the native build.
</p>
<div className="mt-4 flex flex-wrap gap-3">
Expand Down Expand Up @@ -522,7 +522,7 @@ export default function DownloadPage({ release, fetchFailed }) {
Need the working workflow engine?
</h2>
<p className="mx-auto mt-3 max-w-2xl text-sm text-ink-2 md:text-base">
Start with <code>pip install openadapt</code>, or bring the workflow
Start with <code>pip install 'openadapt[browser]'</code>, or bring the workflow
you most want to automate to a 30-minute call.
</p>
<div className="mt-5 flex flex-wrap justify-center gap-3">
Expand Down
Binary file modified public/openadapt-paper.pdf
Binary file not shown.
2 changes: 1 addition & 1 deletion tests/publicTruth.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -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/)
Expand Down
Loading