-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
495 additions
and
314 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
on: | ||
push: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
deploy: | ||
environment: | ||
name: github-pages | ||
url: ${{ steps.deployment.outputs.page_url }} | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Setup Pages | ||
uses: actions/configure-pages@v3 | ||
|
||
- uses: oven-sh/setup-bun@v1 | ||
- name: Install dependencies | ||
run: bun install | ||
|
||
- name: Build | ||
run: bun vite build | ||
|
||
- name: Upload artifact | ||
uses: actions/upload-pages-artifact@v2 | ||
with: | ||
path: "dist" | ||
|
||
- name: Deploy to GitHub Pages | ||
id: deployment | ||
uses: actions/deploy-pages@v2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,46 @@ | ||
# LLM Workbench | ||
|
||
A one-stop-shop for all your LLM needs. Unleash the power of FOSS language models on your local machine. | ||
|
||
# Features | ||
|
||
- UI | ||
- Simple, clean interface | ||
- Dark mode | ||
- LLM API Client | ||
- Ollama | ||
- Chat Interface | ||
- Output Streaming | ||
- Regenerate/Continue/Undo/Clear | ||
- Markdown Rendering | ||
- Complete generation control | ||
- System prompts | ||
- Conversation History | ||
- Chat prompt template | ||
|
||
# Future Ideas | ||
|
||
- TTS via tranformers.js | ||
- Some kind of Agents | ||
- Embeddings | ||
- One-shot Tasks/Apps | ||
- Tools | ||
- LLM Connection adapters | ||
- Prompt management | ||
- Model management | ||
- RAG/Embeddings/Vector Search | ||
- https://github.com/jacoblee93/fully-local-pdf-chatbot | ||
- https://github.com/tantaraio/voy | ||
- https://do-me.github.io/SemanticFinder/ | ||
- https://github.com/yusufhilmi/client-vector-search | ||
- Tools | ||
- Connection adapters | ||
- Prompt management | ||
- Model manager | ||
- https://winkjs.org/wink-nlp/wink-nlp-in-browsers.html | ||
- https://huggingface.co/ldenoue/distilbert-base-re-punctuate | ||
- https://huggingface.co/Xenova/bert-base-NER | ||
- https://huggingface.co/docs/transformers.js/api/pipelines#pipelinesautomaticspeechrecognitionpipeline | ||
- https://github.com/mwilliamson/mammoth.js | ||
|
||
<!-- | ||
import { pipeline } from "@xenova/transformers" | ||
const summarizationPipeline = await pipeline("summarization", 'Xenova/distilbart-cnn-6-6') | ||
const output = await summarizationPipeline(message.content, { | ||
max_new_tokens: 100 | ||
}) | ||
console.log(message.content) | ||
console.log(output) --> | ||
- https://github.com/mwilliamson/mammoth.js | ||
- NER | ||
- https://winkjs.org/wink-nlp/wink-nlp-in-browsers.html | ||
- Other pipelines | ||
- TTS | ||
- Re-formating | ||
- https://huggingface.co/ldenoue/distilbert-base-re-punctuate | ||
- Summarization | ||
- https://huggingface.co/ldenoue/distilbart-cnn-6-6 | ||
- https://huggingface.co/Xenova/bert-base-NER | ||
- Translation | ||
- Speech Recognition | ||
- https://huggingface.co/docs/transformers.js/api/pipelines#pipelinesautomaticspeechrecognitionpipeline |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.