Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
f151c70
- update demos and tests for whisper
SearchSavior Feb 17, 2026
89895ec
- qwen3_asr checkpoint
SearchSavior Feb 17, 2026
d0e278d
- initial commit of qwen3_asr
SearchSavior Feb 18, 2026
a11bab5
remove docker-compose from git ignore
SearchSavior Feb 22, 2026
cdaa300
- qwen3 tts model load, unload, queues, pydantic models
SearchSavior Mar 14, 2026
328c2aa
- flat gen_config implementation
SearchSavior Mar 15, 2026
feedb10
- introduce pydantic abstractin for openai extra_body --> "openarc_tts"
SearchSavior Mar 15, 2026
f30f3ee
- improve qwen3_asr
SearchSavior Mar 17, 2026
c534de2
- namespace changes
SearchSavior Mar 20, 2026
094c270
- confirm that qwen3_tts works with microphone
SearchSavior Mar 22, 2026
abc02fe
- add signifigant optimizations to subgraph execution for qwen3-tts
SearchSavior Mar 24, 2026
6c4eabe
- implment qwen3_tts streaming
SearchSavior Mar 28, 2026
55b7b85
- remove stray audio
SearchSavior Mar 28, 2026
c969b50
- remove old tests
SearchSavior Mar 29, 2026
ea180f4
initial commit for mkdocs documentation UPGRADE
SearchSavior Mar 31, 2026
f14db5d
Revert "initial commit for mkdocs documentation UPGRADE"
SearchSavior Mar 31, 2026
eceb552
- updated readme
SearchSavior Apr 1, 2026
60b283e
- add -depth, to simulate context in openarc bench
SearchSavior Apr 1, 2026
46c76b2
- begin mkdocs refactor
SearchSavior Apr 1, 2026
5fb8230
- change from mkdocs to zensical
SearchSavior Apr 2, 2026
72d3e91
- moar changes to commands
SearchSavior Apr 3, 2026
9db0da4
- add site/ to git ignore
SearchSavior Apr 5, 2026
7287e6a
add .cache/ to gitignore (more zensical biz)
SearchSavior Apr 5, 2026
49efe89
- update command docs
SearchSavior Apr 5, 2026
fa2d1f3
- moar update power
SearchSavior Apr 5, 2026
b1fbe13
- update redme to reflect migrating docs to zensical
SearchSavior Apr 5, 2026
e4a5bbb
Merge branch 'main' into 2.0.4
SearchSavior Apr 5, 2026
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
3 changes: 2 additions & 1 deletion .cursorignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@ assets/
benchmarks/
examples/
openarc_bench.db
openarc.log
openarc.log
scratchpad.md
29 changes: 29 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Documentation
on:
push:
branches:
- master
- main
permissions:
contents: read
pages: write
id-token: write
jobs:
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- uses: actions/configure-pages@v5
- uses: actions/checkout@v5
- uses: actions/setup-python@v5
with:
python-version: 3.x
- run: pip install zensical
- run: zensical build --clean
- uses: actions/upload-pages-artifact@v4
with:
path: site
- uses: actions/deploy-pages@v4
id: deployment
7 changes: 6 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ __pycache__/
openarc_api.log
openarc_config.json
CONTRIBUTING-wip.md

docs/superpowers
docker-compose.override.yaml
.pytest_cache/
.mypy_cache/
Expand All @@ -23,4 +25,7 @@ docker-compose.override.yaml
openarc_bench.db
gpt-oss.ipynb
gpt_oss_convert.py
scratchpad.md
scratchpad.md
site/
.cache/
scratchpad.md
7 changes: 7 additions & 0 deletions AGENTS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
OpenArc uses bleeding edge libraries and APIs you may not be familair with. When working through a task, use the deepwiki mcp server to get *contextual* information, and the command line to investigate python surfaces.

- When making changes, dont worry about backward compatibility; we use git for this.
- Use uv to install dependencies
- Respect existing patterns in the codebase
- When the backend is changed, make sure parameters in the frontend are updated.
- Don't rush, and ask clarifying questions.
Loading