| a9c0afe6 | 09-Apr-2026 |
Andreas Gohr <andi@splitbrain.org> |
Version upped |
| b9715443 | 09-Apr-2026 |
Andreas Gohr <gohr@cosmocode.de> |
updated models info |
| 9d0b3322 | 09-Apr-2026 |
Andreas Gohr <gohr@cosmocode.de> |
Fix API errors for unknown models and compressed responses
Set sensible default outputTokens for unknown models (8k general, 32k for Anthropic) to avoid max_tokens=0 API errors. Disable Accept-Encod
Fix API errors for unknown models and compressed responses
Set sensible default outputTokens for unknown models (8k general, 32k for Anthropic) to avoid max_tokens=0 API errors. Disable Accept-Encoding to prevent unhandled brotli-compressed responses from Cloudflare.
show more ...
|
| 7f51218c | 19-Mar-2026 |
Andreas Gohr <andi@splitbrain.org> |
Version upped |
| 80dbccf3 | 18-Mar-2026 |
Anna Dabrowska <dabrowska@cosmocode.de> |
Fix chunksize calculation |
| 2a3fe063 | 17-Mar-2026 |
Andreas Gohr <andi@splitbrain.org> |
Version upped |
| bdf0ac54 | 17-Mar-2026 |
Andreas Gohr <gohr@cosmocode.de> |
make fullpagecontext a numeric setting
You now can define how many pages should be sent, regardless of the number of matching chunks. Pages are still identified via the chunks, so this number can't
make fullpagecontext a numeric setting
You now can define how many pages should be sent, regardless of the number of matching chunks. Pages are still identified via the chunks, so this number can't be larger than the chunks.
show more ...
|
| f9e0f3e2 | 23-Jan-2026 |
Andreas Gohr <andi@splitbrain.org> |
Version upped |
| c6ae286a | 21-Jan-2026 |
Eduardo Mozart de Oliveira <2974895+eduardomozart@users.noreply.github.com> |
Update Gemini model configurations
Updated model configurations to include new Gemini versions and removed outdated ones. |
| a9596ee6 | 19-Jan-2026 |
Andreas Gohr <andi@splitbrain.org> |
Version upped |
| 2d02fff5 | 19-Jan-2026 |
Andreas Gohr <gohr@cosmocode.de> |
avoid deleting non-existant chunks. fixes #46 |
| 4eaf5202 | 29-Oct-2025 |
Andreas Gohr <andi@splitbrain.org> |
Version upped |
| 7775eee7 | 29-Oct-2025 |
Andreas Gohr <gohr@cosmocode.de> |
fix interface handling with generic model |
| 6980de5d | 28-Oct-2025 |
Andreas Gohr <andi@splitbrain.org> |
Version upped |
| 7bd2bac6 | 28-Oct-2025 |
Andreas Gohr <gohr@cosmocode.de> |
make ollama auth optional |
| 72fdb01b | 28-Oct-2025 |
Andreas Gohr <gohr@cosmocode.de> |
fix double intro message. fixes #44
connectedCallback may run multiple times, because the component is readded to the dom when the section edit initializes. |
| 5f6b6241 | 17-Oct-2025 |
Andreas Gohr <andi@splitbrain.org> |
Version upped |
| 236fa066 | 06-Oct-2025 |
Andreas Gohr <andi@splitbrain.org> |
upped version |
| 3f61c2bb | 06-Oct-2025 |
Andreas Gohr <andi@splitbrain.org> |
add tests for text splitting |
| 14b3ee00 | 06-Oct-2025 |
Andreas Gohr <andi@splitbrain.org> |
make overlap a class member for easier testing |
| e2b35d46 | 06-Oct-2025 |
Andreas Gohr <andi@splitbrain.org> |
Agents: make clearer how to run tests |
| af51f172 | 06-Oct-2025 |
Andreas Gohr <gohr@cosmocode.de> |
added an AGENTS.md file for LLM based work |
| 028fe6db | 06-Oct-2025 |
Andreas Gohr <gohr@cosmocode.de> |
split sentences by token, not bytes. handle UTF-8 |
| 072e0099 | 06-Oct-2025 |
Andreas Gohr <gohr@cosmocode.de> |
move text splitting into it's own class |
| 3daef465 | 06-Oct-2025 |
Andreas Gohr <gohr@cosmocode.de> |
Some enhancements on the subsentence splitting
When a sentence is longer than a chunk, it should be split forcefully in smaller parts - these parts should NOT be the size of a full chunk since we st
Some enhancements on the subsentence splitting
When a sentence is longer than a chunk, it should be split forcefully in smaller parts - these parts should NOT be the size of a full chunk since we still want to do some overlap with previous and following texts. I chose to split into a quarter of a chunk.
This also ensures that whitespace is kept for the split sentences, because they may be joined with follow up texts.
show more ...
|