| 7bd2bac6 | 28-Oct-2025 |
Andreas Gohr <gohr@cosmocode.de> |
make ollama auth optional |
| d72a84c5 | 11-Jun-2025 |
Andreas Gohr <gohr@cosmocode.de> |
move api endpoint init to AbstractModel
This should finally solve the chicken-egg issue. This also renames the ollama url parameter from baseurl to apiurl and sets a sensible default |
| 9634d734 | 21-May-2025 |
Andreas Gohr <gohr@cosmocode.de> |
add option to always send full page context |
| 2e22aefb | 15-Apr-2025 |
Andreas Gohr <andi@splitbrain.org> |
introduce a "Generic" model
This is basically an OpenAI implementation, which then can be reused by most other providers since they usually implement a somewhat compatible API. The API URL can be se
introduce a "Generic" model
This is basically an OpenAI implementation, which then can be reused by most other providers since they usually implement a somewhat compatible API. The API URL can be set manually so it should be easy to add new unsupported providers.
show more ...
|
| ed47fd87 | 27-Mar-2025 |
Andreas Gohr <andi@splitbrain.org> |
new UI with option to chat about the current page |
| c1e277fb | 09-Dec-2024 |
Andreas Gohr <andi@splitbrain.org> |
translatable default message
When no message is given in the chat syntax, the default is now taken from the language file. |
| dc099d9e | 05-Dec-2024 |
Andreas Gohr <andi@splitbrain.org> |
mark some more settings that need reindexing |
| 10ce0ca9 | 05-Dec-2024 |
Andreas Gohr <andi@splitbrain.org> |
exclude page parts from indexing using a regex |
| 726299cb | 18-Nov-2024 |
Eduardo Mozart de Oliveira <2974895+eduardomozart@users.noreply.github.com> |
Translate error message |
| 10789c17 | 14-Nov-2024 |
Andreas Gohr <andi@splitbrain.org> |
support the Google Gemini API |
| ce8a8011 | 13-Nov-2024 |
Eduardo Mozart de Oliveira <2974895+eduardomozart@users.noreply.github.com> |
Add missing field for "Ollama" model configuration |
| 666b8ea7 | 29-Jul-2024 |
Andreas Gohr <andi@splitbrain.org> |
added configurable custom prompt
This makes it easier to add to the existing internal prompt instead of completely overwriting it using the localization mechanism. |
| 074b7701 | 22-Apr-2024 |
Andreas Gohr <andi@splitbrain.org> |
added support for groq |
| eaa2c59d | 18-Apr-2024 |
Andreas Gohr <andi@splitbrain.org> |
Added support for reka.ai |
| 720bb43f | 25-Mar-2024 |
Andreas Gohr <andi@splitbrain.org> |
make threshold configurable |
| 0de7e020 | 25-Mar-2024 |
Andreas Gohr <andi@splitbrain.org> |
mechanisms to override things on command line
This should help with debugging/evaluating |
| 59a2a267 | 21-Mar-2024 |
Andreas Gohr <andi@splitbrain.org> |
prefer prompted user messages over system prompts
This seems to be better supported across different model providers and seems to influence the model in a stronger way.
Prompt files have been renam
prefer prompted user messages over system prompts
This seems to be better supported across different model providers and seems to influence the model in a stronger way.
Prompt files have been renamed to avoid having them show up in the DokuWiki translate interface. Multilingual models are fine with prompting in english only.
show more ...
|
| 51aa8517 | 20-Mar-2024 |
Andreas Gohr <andi@splitbrain.org> |
separate the rephrasing model from the chat model
Rephrasing can be done with faster, simpler models as there is not much reasoning needed. |
| 87e46484 | 19-Mar-2024 |
Andreas Gohr <andi@splitbrain.org> |
added Voyage AI for embeddings |
| e3640be8 | 19-Mar-2024 |
Andreas Gohr <andi@splitbrain.org> |
clean up of the config options
Emojis are used to make the different options easier to distinguish |
| 34a1c478 | 19-Mar-2024 |
Andreas Gohr <andi@splitbrain.org> |
more refactoring on chat and embed model support
* differentiate between input and output tokens * make use of much larger input contexts |
| f43684f4 | 13-Mar-2024 |
Andreas Gohr <andi@splitbrain.org> |
add send button
Some people said they're not clear how to send messages, so a button was added. Pressing Enter still works. The entry was changed to a textarea making longer questions easier. Shift-
add send button
Some people said they're not clear how to send messages, so a button was added. Pressing Enter still works. The entry was changed to a textarea making longer questions easier. Shift-Enter can be used to add line breaks. All button titles are now translatable.
show more ...
|
| cfaf6b32 | 07-Mar-2024 |
Andreas Gohr <andi@splitbrain.org> |
tell the model to fall back to current language if it's unsure
The model defaulted to spanish if no sources were found |
| d5c102b3 | 29-Jan-2024 |
Andreas Gohr <andi@splitbrain.org> |
Regular expressions to limit the indexed pages. Implements #5
Both regular expressions (when set) need to apply at the same time. Eg a page MUST match the matchRegex and MUST NOT match the skipRegex
Regular expressions to limit the indexed pages. Implements #5
Both regular expressions (when set) need to apply at the same time. Eg a page MUST match the matchRegex and MUST NOT match the skipRegex to be applied.
The regular expressions are applied when running the `embed` command line command. Pages no longer adhering to a changed regex setup will be removed from the vector store.
For the sqlite storage it is recommended to re-cluster the index when the reges are changed by running the `maintenance` command.
show more ...
|
| 4c0099a8 | 08-Nov-2023 |
Andreas Gohr <andi@splitbrain.org> |
Added Qdrant Storage |