| 1013ea92 | 12-Mar-2025 |
Andreas Gohr <andi@splitbrain.org> |
Version upped |
| 31a78876 | 12-Mar-2025 |
Andreas Gohr <andi@splitbrain.org> |
sqlite: avoid warnings on too short vectors
This should not happen in the real world. But when embeddings were created with a shorter vector model than the model that is used to embed the query, the
sqlite: avoid warnings on too short vectors
This should not happen in the real world. But when embeddings were created with a shorter vector model than the model that is used to embed the query, the cosineSimilarity method threw a whole bunch of warnings. We now stop the comparison at the vector length.
In the real world the same model for embeddings and the query should be used, results are unpredictable otherwise. So this is mostly a cosmetic change for messed up states during development.
show more ...
|
| aa6bbe75 | 12-Mar-2025 |
Andreas Gohr <andi@splitbrain.org> |
added "similar" endpoint to the remote api |
| 42b2c6e8 | 12-Mar-2025 |
Andreas Gohr <andi@splitbrain.org> |
add remote component to ask questions to the bot
The endpoint allows to override model and language settings on demand. |
| 3272c143 | 10-Mar-2025 |
Andreas Gohr <andi@splitbrain.org> |
Version upped |
| 163a36ec | 10-Mar-2025 |
Andreas Gohr <andi@splitbrain.org> |
Adjust OpenAI API calls. fixes #34
* max_token has been replaced by max_completion_tokens * temperature setting is not suported by reasoning models |
| f9c24b93 | 25-Feb-2025 |
Andreas Gohr <andi@splitbrain.org> |
Version upped |
| d481c63c | 25-Feb-2025 |
Andreas Gohr <andi@splitbrain.org> |
ollama: remove thinking part from deepseek answers |
| cc7172ce | 25-Feb-2025 |
Andreas Gohr <andi@splitbrain.org> |
ollama: fix embed endpoint and error in model file
We expect /api to be part of the configured base URL so it should not be part of the call itself. |
| 94b5d70e | 14-Feb-2025 |
Max Theisen <96209029+MaxThFe@users.noreply.github.com> |
Update EmbeddingModel.php to remove the :lastest suffix |
| 552bc116 | 13-Feb-2025 |
Max Theisen <96209029+MaxThFe@users.noreply.github.com> |
Update models.json with new llama3.3 70b |
| d2192bba | 13-Feb-2025 |
Max Theisen <96209029+MaxThFe@users.noreply.github.com> |
Update EmbeddingModel.php for new Ollama API |
| 8b9ccd0e | 12-Feb-2025 |
Eduardo Mozart de Oliveira <2974895+eduardomozart@users.noreply.github.com> |
Update models.json |
| 82a6394a | 12-Feb-2025 |
Eduardo Mozart de Oliveira <2974895+eduardomozart@users.noreply.github.com> |
Remove deprecated Groq models |
| e8b3fd01 | 06-Feb-2025 |
Andreas Gohr <andi@splitbrain.org> |
Version upped |
| da493c96 | 06-Feb-2025 |
Andreas Gohr <andi@splitbrain.org> |
some model updates
still not 100% uptodate |
| 4dd0657e | 06-Feb-2025 |
Andreas Gohr <andi@splitbrain.org> |
allow to set arbitrary models
We now initialize a model configuration even if we have no info in model.json using some default values for the token limits.
Models can implement the loadUnkonwModelI
allow to set arbitrary models
We now initialize a model configuration even if we have no info in model.json using some default values for the token limits.
Models can implement the loadUnkonwModelInfo() method to fetch the info from an API if such a thing exist. Implemented for gemini and ollama currently.
show more ...
|
| e963c1fc | 06-Feb-2025 |
Andreas Gohr <andi@splitbrain.org> |
actually use the configured rephrase model
stupid copy n paste error |
| d8729042 | 12-Dec-2024 |
Eduardo Mozart de Oliveira <eduardomozart182@gmail.com> |
translation update |
| ac8a9335 | 09-Dec-2024 |
Andreas Gohr <andi@splitbrain.org> |
Version upped |
| 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. |
| ac4c82af | 05-Dec-2024 |
Andreas Gohr <andi@splitbrain.org> |
Version upped |
| dc099d9e | 05-Dec-2024 |
Andreas Gohr <andi@splitbrain.org> |
mark some more settings that need reindexing |
| ee778380 | 05-Dec-2024 |
Andreas Gohr <andi@splitbrain.org> |
added bge-large embedding model for ollama |
| 7bf9165d | 05-Dec-2024 |
Andreas Gohr <andi@splitbrain.org> |
syntax component to ignore parts of a page while indexing |