Skip to content
Draft
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 app/context.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
)
from app.tokens import TokenStore

VERSION = "0.1.0"
VERSION = "0.2.0"
TOKEN_FILE_HINT = "~/.config/vocagateway/token"
BOOTSTRAP_TOKEN_ID = "bootstrap"

Expand Down
8 changes: 5 additions & 3 deletions compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -89,9 +89,11 @@ services:
args:
<<: *gateway-build-args
ACCEL: cuda
# `gpus` is the whole request; NVIDIA_VISIBLE_DEVICES is what the Container
# Toolkit sets from it, so naming it again in the environment adds nothing.
gpus: all
# Compose v2.32+ schema wants a device list. `count: all` still requests
# every GPU. Do not also set NVIDIA_VISIBLE_DEVICES; the toolkit fills it.
gpus:
- count: all
capabilities: [gpu]

gateway-vulkan:
<<: *gateway-service
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "vocagateway"
version = "0.1.0"
version = "0.2.0"
description = "Headless local transcription gateway for Voca clients (vocaphone, desktop apps)"
readme = "README.md"
requires-python = ">=3.12"
Expand Down
2 changes: 1 addition & 1 deletion tests/test_diagnostics.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

def _status(paths: schemas.PathStatus) -> schemas.AdminStatusResponse:
return schemas.AdminStatusResponse(
version="0.1.0",
version="0.2.0",
engine=schemas.EngineStatus(
id=WHISPER_CPP_ENGINE,
name="whisper.cpp:ggml-base.en.bin",
Expand Down
2 changes: 1 addition & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions web/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@
<a href="#start">get started</a>
<a href="#family">family</a>
<a href="#questions">questions</a>
<a class="nav-cta" href="https://github.com/VocaHQ/vocagateway/releases/tag/v0.1.0">v0.1.0 release</a>
<a class="nav-cta" href="https://github.com/VocaHQ/vocagateway/releases/tag/v0.2.0">v0.2.0 release</a>
</nav>

<div class="system-strip" aria-hidden="true">
Expand All @@ -113,8 +113,8 @@
<span data-local-time>10:09</span>
</div>

<a class="header-cta" href="https://github.com/VocaHQ/vocagateway/releases/tag/v0.1.0">
v0.1.0 release
<a class="header-cta" href="https://github.com/VocaHQ/vocagateway/releases/tag/v0.2.0">
v0.2.0 release
<span aria-hidden="true">↗</span>
</a>
</header>
Expand Down Expand Up @@ -154,7 +154,7 @@
<h1 id="hero-title">vocagateway</h1>
<p class="hero-lede">your hardware, shared speech-to-text.</p>
<div class="hero-actions">
<a class="button button-primary" href="https://github.com/VocaHQ/vocagateway/releases/tag/v0.1.0">try v0.1.0</a>
<a class="button button-primary" href="https://github.com/VocaHQ/vocagateway/releases/tag/v0.2.0">try v0.2.0</a>
<a class="button button-secondary" href="https://github.com/VocaHQ/vocagateway">
view the source
<span aria-hidden="true">↗</span>
Expand Down Expand Up @@ -399,7 +399,7 @@ <h2 id="start-title">run it from source<br />or from Compose.</h2>
<p>
Status is Beta. There is no packaged installer. Run Compose or
native from the
<a href="https://github.com/VocaHQ/vocagateway/releases/tag/v0.1.0">v0.1.0 tag</a>,
<a href="https://github.com/VocaHQ/vocagateway/releases/tag/v0.2.0">v0.2.0 tag</a>,
not from main. After the process
starts, open
<code>http://127.0.0.1:8765/</code>, enter the token, download a
Expand Down Expand Up @@ -605,7 +605,7 @@ <h2 id="questions-title">the useful bits.</h2>
<p class="eyebrow">beta · self-hosted · optional</p>
<h2 id="follow-title">run it on hardware<br />you already have.</h2>
<p>
Start from the v0.1.0 tag, run the process, pair a phone. If you only need
Start from the v0.2.0 tag, run the process, pair a phone. If you only need
on-device dictation, skip this and pick a client on vocahq.com.
</p>
<div class="hero-actions">
Expand Down