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
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<a href="https://bitwize.ai/logue">
<picture>
<source media="(prefers-color-scheme: dark)" srcset="docs/images/header-banner-dark.png">
<img alt="Logue, by Bitwize.ai" width="100%" src="docs/images/header-banner.png">
<source media="(prefers-color-scheme: dark)" srcset="docs/images/header-banner-dark.81af7f8b.png">
<img alt="Logue, by Bitwize.ai" width="100%" src="docs/images/header-banner.9612e216.png">
</picture>
</a>

Expand Down Expand Up @@ -42,7 +42,7 @@
</p>

<p align="center">
<img alt="The Logue home surface on macOS — the prompt bar, what needs attention, and what to pick back up" src="docs/images/home-dashboard.png" width="900">
<img alt="The Logue home surface on macOS — the prompt bar, what needs attention, and what to pick back up" src="docs/images/home-dashboard.393d5e51.png" width="900">
</p>

## Introduction
Expand Down Expand Up @@ -161,19 +161,19 @@ every pull request follows.

| Ask Logue — the agent, its tools and its sources | Tasks, triaged out of a meeting |
| :---: | :---: |
| ![Ask Logue answering with tool calls and a sources panel](docs/images/ask-logue.png) | ![Action items from a meeting triaged into the task list](docs/images/tasks.png) |
| ![Ask Logue answering with tool calls and a sources panel](docs/images/ask-logue.24b8b595.png) | ![Action items from a meeting triaged into the task list](docs/images/tasks.1f22d716.png) |

| Meeting transcription + Ask Logue | Smart Minutes |
| :---: | :---: |
| ![Meeting transcription with speaker labels and AI chat](docs/images/meeting-transcription.png) | ![Smart Minutes with key decisions and action items](docs/images/smart-minutes.png) |
| ![Meeting transcription with speaker labels and AI chat](docs/images/meeting-transcription.a3e12056.png) | ![Smart Minutes with key decisions and action items](docs/images/smart-minutes.075b55f4.png) |

| AI writing editor with fact-checking | On-device PII detection |
| :---: | :---: |
| ![Writing a legal document with claims flagged for a source](docs/images/writing-editor.png) | ![PII detection flagging patient identifiers in a document](docs/images/pii-detection.png) |
| ![Writing a legal document with claims flagged for a source](docs/images/writing-editor.26cb777b.png) | ![PII detection flagging patient identifiers in a document](docs/images/pii-detection.cd7654fd.png) |

| The Chrome extension — the same assistant, answered by the model on this Mac |
| :---: |
| ![The Logue Chrome extension answering a question about the open tab](docs/images/chrome-extension.png) |
| ![The Logue Chrome extension answering a question about the open tab](docs/images/chrome-extension.51b98785.png) |

## 📥 Install (users)

Expand Down
27 changes: 27 additions & 0 deletions docs/images/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# README artwork

Filenames carry a content hash: `<name>.<first 8 of sha256>.png`.

GitHub rewrites the README's relative image paths to
`github.com/bitwize-ai/Logue/raw/main/docs/images/<file>` and serves them with
`cache-control: max-age=300`. Replacing an image in place keeps that URL identical, so
browsers and the CDN keep painting the copy they already hold — the picture looks
unchanged for everyone who had loaded the page before, with nothing wrong in the repo to
find. Changing the name changes the URL, and a URL that has never been requested cannot
be served from a stale cache.

So when you replace one, rename it too:

```bash
cd docs/images
f=home-dashboard.393d5e51.png # the file you just overwrote
base=${f%%.*} # -> home-dashboard
git mv "$f" "$base.$(shasum -a 256 "$f" | cut -c1-8).png"
```

Then update the reference in `README.md`. Nothing builds these, so the rename and the
reference are both by hand — a stale reference shows as a broken image on the repository
front page, which is the failure you want rather than the silent one.

The sources live in the marketing site's `public/screenshots/` and `public/assets/`; the
Logue wordmarks are rendered from the app's own `Logue/Resources/LogueLogo*.svg`.
File renamed without changes
File renamed without changes
Loading