Bas Hulsken
22280d4c88
allow configuring LOCALAGI to use a custom base url ( #469 )
...
allow configuring LOCALAGI to use a custom base url other than the default :3000
2026-06-02 16:12:18 +02:00
Ettore Di Giacinto
37810d918a
fix(collections): rehydrate in-process collections lazily after init failure ( #468 )
...
When NewInProcessBackend boots, it iterates every on-disk collection and
calls newVectorEngine to construct its engine wrapper. For the postgres
engine that constructor performs a "test embedding" probe that requires
the embedding model to be reachable. If the embedding service is briefly
unavailable at boot — e.g. the node hosting the embedding model has
temporary NATS connectivity issues — the construction fails and the
collection is silently dropped from the in-memory map. Subsequent
operations against that collection (Upload / Search / ListEntries / …)
all return "collection not found" indefinitely, even after the embedding
service comes back, because nothing ever retries.
Worse, the collection still exists on disk (its JSON sidecar) and its
data still exists in the vector DB (e.g. the per-collection
documents_col_<uuid> table in PostgreSQL). From the user's perspective
their collection has silently disappeared.
Two changes:
1. NewInProcessBackend always registers every on-disk collection in
state.Collections — even when newVectorEngine returns nil. A nil
entry is a placeholder meaning "known on disk, not yet loaded".
2. backendInProcess.lookup centralises the cache read for every
operation. If the cache holds a placeholder, it retries
newVectorEngine now, under the write lock. So as soon as the
embedding service is reachable again, the next request to the
collection will rehydrate it transparently. If init still fails or
the collection isn't on disk at all, lookup returns (nil, false)
and the operation surfaces "collection not found" as before.
The state.EnsureCollection callback used by the internal RAG provider
already handled the placeholder case (it re-inits whenever the cache
entry is missing or nil), so it needs no change.
This does not address the underlying probe-and-cache pattern in
LocalRecall's NewPersistentPostgresCollection — read-only operations
on existing collections still require an embedding probe at engine
construction. That is a separate, deeper fix worth pursuing in
LocalRecall directly.
2026-05-08 14:52:35 +02:00
Ettore Di Giacinto
e83bf515d0
fix(collections): handle errors from LocalRecall constructors
...
LocalRecall's NewPersistent{Chrome,LocalAI,Postgres}Collection now
return errors instead of os.Exit'ing on init failure. Bump the dep and
update newVectorEngine to consume the new signatures, surfacing failures
as a nil collection (the existing "engine misconfigured" code path)
instead of letting the upstream os.Exit kill the embedding process.
Without this, a transient embedding-service or PostgreSQL outage during
lazy RAG init would crash any long-running host (e.g. the LocalAI
distributed orchestrator) instead of degrading to "no RAG available".
RAGProviderFromState already handles a nil collection from
EnsureCollection by returning (nil, nil, false) to the agent pool, which
is the same path agents take when no RAG is configured — so callers
upstream need no further change.
Signed-off-by: Ettore Di Giacinto <mudler@localai.io >
2026-05-04 16:51:00 +00:00
Ettore Di Giacinto
07caa0b95d
Adapt client too
...
Signed-off-by: Ettore Di Giacinto <mudler@localai.io >
2026-03-21 00:46:41 +00:00
Ettore Di Giacinto
43c65ec7e8
feat: update localrecall to support files with same names in the collections
...
Signed-off-by: Ettore Di Giacinto <mudler@localai.io >
2026-03-19 17:45:13 +00:00
dependabot[bot]
cc2d2838ca
chore(deps-dev): bump eslint-plugin-react-refresh from 0.5.0 to 0.5.2 in /webui/react-ui ( #430 )
...
chore(deps-dev): bump eslint-plugin-react-refresh in /webui/react-ui
Bumps [eslint-plugin-react-refresh](https://github.com/ArnaudBarre/eslint-plugin-react-refresh ) from 0.5.0 to 0.5.2.
- [Release notes](https://github.com/ArnaudBarre/eslint-plugin-react-refresh/releases )
- [Changelog](https://github.com/ArnaudBarre/eslint-plugin-react-refresh/blob/main/CHANGELOG.md )
- [Commits](https://github.com/ArnaudBarre/eslint-plugin-react-refresh/compare/v0.5.0...v0.5.2 )
---
updated-dependencies:
- dependency-name: eslint-plugin-react-refresh
dependency-version: 0.5.2
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-18 08:43:54 +01:00
Ettore Di Giacinto
da286065e1
feat: support streaming mode for tool calls
...
Signed-off-by: Ettore Di Giacinto <mudler@localai.io >
2026-03-15 22:34:07 +00:00
Ettore Di Giacinto
9438d39f70
feat: support streaming mode for tool calls
...
Signed-off-by: Ettore Di Giacinto <mudler@localai.io >
2026-03-15 22:33:51 +00:00
Ettore Di Giacinto
e38f13ab8c
feat: add handler to serve raw files
...
Signed-off-by: Ettore Di Giacinto <mudler@localai.io >
2026-03-14 22:28:28 +00:00
dependabot[bot]
9b744d2bac
chore(deps-dev): bump eslint from 10.0.0 to 10.0.3 in /webui/react-ui ( #451 )
...
Bumps [eslint](https://github.com/eslint/eslint ) from 10.0.0 to 10.0.3.
- [Release notes](https://github.com/eslint/eslint/releases )
- [Commits](https://github.com/eslint/eslint/compare/v10.0.0...v10.0.3 )
---
updated-dependencies:
- dependency-name: eslint
dependency-version: 10.0.3
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-09 23:05:19 +01:00
Ettore Di Giacinto
5a27c471ca
chore: refactoring to make it importable
...
Signed-off-by: Ettore Di Giacinto <mudler@localai.io >
2026-03-06 16:49:48 +01:00
Ettore Di Giacinto
3ecbbf3eac
chore: minor enhancement to be fully importable
...
Signed-off-by: Ettore Di Giacinto <mudler@localai.io >
2026-03-06 16:39:30 +01:00
Ettore Di Giacinto
d9bf193457
feat(ui): allow to edit agent before importing ( #444 )
...
Signed-off-by: Ettore Di Giacinto <mudler@localai.io >
2026-03-04 18:39:11 +01:00
Ettore Di Giacinto
8014d22588
fix: unify api keys for collection endpoint
...
Signed-off-by: Ettore Di Giacinto <mudler@localai.io >
2026-02-21 23:39:19 +00:00
Ettore Di Giacinto
410ba7a467
feat: allow to manage external localrecall instances ( #425 )
...
Signed-off-by: Ettore Di Giacinto <mudler@localai.io >
2026-02-22 00:02:12 +01:00
Ettore Di Giacinto
c56cc43552
feat(memory): add knowledgebase and memory management from LocalRecall ( #424 )
...
* feat: integrate knowledge base management
Signed-off-by: Ettore Di Giacinto <mudler@localai.io >
* refactorings
Signed-off-by: Ettore Di Giacinto <mudler@localai.io >
---------
Signed-off-by: Ettore Di Giacinto <mudler@localai.io >
2026-02-21 23:17:33 +01:00
Ettore Di Giacinto
bc567ef7dd
feat(skills): add skills management ( #423 )
...
* feat(skills): add skills management
Signed-off-by: Ettore Di Giacinto <mudler@localai.io >
* improve ui
* Update webui/skills_handlers.go
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
* Update webui/skills_handlers.go
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
* Update webui/skills_handlers.go
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
* Update webui/skills_handlers.go
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
* Update Dockerfile.webui
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
* Update go.mod
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
* Update webui/skills_handlers.go
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
* Address feedback from review
Signed-off-by: Ettore Di Giacinto <mudler@localai.io >
* Fixups
Signed-off-by: Ettore Di Giacinto <mudler@localai.io >
* allow to customize skill prompt
Signed-off-by: Ettore Di Giacinto <mudler@localai.io >
* Fixups
Signed-off-by: Ettore Di Giacinto <mudler@localai.io >
---------
Signed-off-by: Ettore Di Giacinto <mudler@localai.io >
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
2026-02-21 22:21:33 +01:00
Ettore Di Giacinto
27cc58a25f
feat(ui): left navbar, dark/light theme ( #421 )
...
Signed-off-by: Ettore Di Giacinto <mudler@localai.io >
2026-02-17 23:21:34 +01:00
Ettore Di Giacinto
a8decbcc85
chore: fix login
...
Signed-off-by: Ettore Di Giacinto <mudler@localai.io >
2026-02-17 17:31:12 +01:00
Ettore Di Giacinto
1c083abc60
Add back old webui (login)
...
Signed-off-by: Ettore Di Giacinto <mudler@localai.io >
2026-02-17 16:18:36 +01:00
dependabot[bot]
419a4363c3
chore(deps-dev): bump @types/react from 19.2.13 to 19.2.14 in /webui/react-ui ( #420 )
...
chore(deps-dev): bump @types/react in /webui/react-ui
Bumps [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react ) from 19.2.13 to 19.2.14.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react )
---
updated-dependencies:
- dependency-name: "@types/react"
dependency-version: 19.2.14
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-16 22:35:14 +01:00
dependabot[bot]
7f2e52c0c8
chore(deps-dev): bump @vitejs/plugin-react from 5.1.2 to 5.1.3 in /webui/react-ui ( #402 )
...
chore(deps-dev): bump @vitejs/plugin-react in /webui/react-ui
Bumps [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react ) from 5.1.2 to 5.1.3.
- [Release notes](https://github.com/vitejs/vite-plugin-react/releases )
- [Changelog](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/CHANGELOG.md )
- [Commits](https://github.com/vitejs/vite-plugin-react/commits/plugin-react@5.1.3/packages/plugin-react )
---
updated-dependencies:
- dependency-name: "@vitejs/plugin-react"
dependency-version: 5.1.3
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-10 16:45:09 +01:00
dependabot[bot]
6a33484fce
chore(deps-dev): bump @eslint/js from 9.39.2 to 10.0.1 in /webui/react-ui ( #414 )
...
chore(deps-dev): bump @eslint/js in /webui/react-ui
Bumps [@eslint/js](https://github.com/eslint/eslint/tree/HEAD/packages/js ) from 9.39.2 to 10.0.1.
- [Release notes](https://github.com/eslint/eslint/releases )
- [Commits](https://github.com/eslint/eslint/commits/HEAD/packages/js )
---
updated-dependencies:
- dependency-name: "@eslint/js"
dependency-version: 10.0.1
dependency-type: direct:development
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-10 15:32:36 +01:00
dependabot[bot]
bdf12e4c3d
chore(deps-dev): bump @types/react from 19.2.10 to 19.2.13 in /webui/react-ui ( #413 )
...
chore(deps-dev): bump @types/react in /webui/react-ui
Bumps [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react ) from 19.2.10 to 19.2.13.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react )
---
updated-dependencies:
- dependency-name: "@types/react"
dependency-version: 19.2.13
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-10 13:03:02 +01:00
dependabot[bot]
5743d6f757
chore(deps-dev): bump eslint from 9.39.2 to 10.0.0 in /webui/react-ui ( #412 )
...
Bumps [eslint](https://github.com/eslint/eslint ) from 9.39.2 to 10.0.0.
- [Release notes](https://github.com/eslint/eslint/releases )
- [Commits](https://github.com/eslint/eslint/compare/v9.39.2...v10.0.0 )
---
updated-dependencies:
- dependency-name: eslint
dependency-version: 10.0.0
dependency-type: direct:development
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-10 13:02:50 +01:00
dependabot[bot]
0845e9dc81
chore(deps-dev): bump eslint-plugin-react-refresh from 0.4.26 to 0.5.0 in /webui/react-ui ( #401 )
...
chore(deps-dev): bump eslint-plugin-react-refresh in /webui/react-ui
Bumps [eslint-plugin-react-refresh](https://github.com/ArnaudBarre/eslint-plugin-react-refresh ) from 0.4.26 to 0.5.0.
- [Release notes](https://github.com/ArnaudBarre/eslint-plugin-react-refresh/releases )
- [Changelog](https://github.com/ArnaudBarre/eslint-plugin-react-refresh/blob/main/CHANGELOG.md )
- [Commits](https://github.com/ArnaudBarre/eslint-plugin-react-refresh/compare/v0.4.26...v0.5.0 )
---
updated-dependencies:
- dependency-name: eslint-plugin-react-refresh
dependency-version: 0.5.0
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-10 09:07:40 +01:00
Ettore Di Giacinto
272c54f851
fix: int type passing from react
...
Signed-off-by: Ettore Di Giacinto <mudler@localai.io >
2026-02-09 20:49:37 +00:00
Ettore Di Giacinto
775b1a9ab8
chore: drop agents avatars ( #411 )
...
This functionality makes LocalAGI harder to starts without no real gain.
While having agents avatars is nice, on generating a new agent is
required a new image to be created, which, on small HW could become a
huge computational strain.
It moves the agent list view to tabular, and cleanups the index page to
improve readability.
We can go back at this, but the motivations are mainly:
- Do not waste computation and be more lightweight
- Less models to download unless the user wants to download image models
- Let's not make look the application "weird" as images could be
generated which are not good looking at all
Signed-off-by: Ettore Di Giacinto <mudler@localai.io >
2026-02-09 18:59:52 +01:00
Ettore Di Giacinto
673909918a
feat: improve theme to follow LocalAI ( #410 )
...
Signed-off-by: Ettore Di Giacinto <mudler@localai.io >
2026-02-09 15:46:01 +01:00
dependabot[bot]
b09da13111
chore(deps-dev): bump globals from 17.1.0 to 17.3.0 in /webui/react-ui ( #403 )
...
Bumps [globals](https://github.com/sindresorhus/globals ) from 17.1.0 to 17.3.0.
- [Release notes](https://github.com/sindresorhus/globals/releases )
- [Commits](https://github.com/sindresorhus/globals/compare/v17.1.0...v17.3.0 )
---
updated-dependencies:
- dependency-name: globals
dependency-version: 17.3.0
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-06 21:05:16 +01:00
Ettore Di Giacinto
f47d5d0e01
fix(ui): checkbox event propagation
...
Signed-off-by: Ettore Di Giacinto <mudler@localai.io >
2026-02-03 12:25:57 +01:00
Ettore Di Giacinto
c98178d41d
chore(settings): move mcp config to the MCP section and rework form ( #400 )
...
* chore: move MCP configuration to the MCP section
Signed-off-by: Ettore Di Giacinto <mudler@localai.io >
* add MCP stdio form, visually split the two
Signed-off-by: Ettore Di Giacinto <mudler@localai.io >
---------
Signed-off-by: Ettore Di Giacinto <mudler@localai.io >
2026-02-01 18:23:41 +01:00
dependabot[bot]
a363682b39
chore(deps-dev): bump vite from 7.3.0 to 7.3.1 in /webui/react-ui ( #387 )
...
Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite ) from 7.3.0 to 7.3.1.
- [Release notes](https://github.com/vitejs/vite/releases )
- [Changelog](https://github.com/vitejs/vite/blob/v7.3.1/packages/vite/CHANGELOG.md )
- [Commits](https://github.com/vitejs/vite/commits/v7.3.1/packages/vite )
---
updated-dependencies:
- dependency-name: vite
dependency-version: 7.3.1
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-29 10:33:37 +01:00
dependabot[bot]
c703495e8c
chore(deps-dev): bump react-router-dom from 7.11.0 to 7.13.0 in /webui/react-ui ( #392 )
...
chore(deps-dev): bump react-router-dom in /webui/react-ui
Bumps [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom ) from 7.11.0 to 7.13.0.
- [Release notes](https://github.com/remix-run/react-router/releases )
- [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-dom/CHANGELOG.md )
- [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@7.13.0/packages/react-router-dom )
---
updated-dependencies:
- dependency-name: react-router-dom
dependency-version: 7.13.0
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-29 09:40:41 +01:00
dependabot[bot]
73c1158aa2
chore(deps): bump react and @types/react in /webui/react-ui ( #393 )
...
Bumps [react](https://github.com/facebook/react/tree/HEAD/packages/react ) and [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react ). These dependencies needed to be updated together.
Updates `react` from 19.2.3 to 19.2.4
- [Release notes](https://github.com/facebook/react/releases )
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md )
- [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react )
Updates `@types/react` from 19.2.7 to 19.2.9
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react )
---
updated-dependencies:
- dependency-name: react
dependency-version: 19.2.4
dependency-type: direct:production
update-type: version-update:semver-patch
- dependency-name: "@types/react"
dependency-version: 19.2.9
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-29 09:40:30 +01:00
dependabot[bot]
a1036a166b
chore(deps): bump react-dom from 19.2.3 to 19.2.4 in /webui/react-ui ( #391 )
...
Bumps [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom ) from 19.2.3 to 19.2.4.
- [Release notes](https://github.com/facebook/react/releases )
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md )
- [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react-dom )
---
updated-dependencies:
- dependency-name: react-dom
dependency-version: 19.2.4
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-28 11:40:05 +01:00
dependabot[bot]
9a669e2552
chore(deps-dev): bump globals from 16.5.0 to 17.1.0 in /webui/react-ui ( #390 )
...
Bumps [globals](https://github.com/sindresorhus/globals ) from 16.5.0 to 17.1.0.
- [Release notes](https://github.com/sindresorhus/globals/releases )
- [Commits](https://github.com/sindresorhus/globals/compare/v16.5.0...v17.1.0 )
---
updated-dependencies:
- dependency-name: globals
dependency-version: 17.1.0
dependency-type: direct:development
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-28 11:39:52 +01:00
dependabot[bot]
ec3f302cdf
chore(deps-dev): bump react-router-dom from 7.10.1 to 7.11.0 in /webui/react-ui ( #383 )
...
chore(deps-dev): bump react-router-dom in /webui/react-ui
Bumps [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom ) from 7.10.1 to 7.11.0.
- [Release notes](https://github.com/remix-run/react-router/releases )
- [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-dom/CHANGELOG.md )
- [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@7.11.0/packages/react-router-dom )
---
updated-dependencies:
- dependency-name: react-router-dom
dependency-version: 7.11.0
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-23 09:07:57 +01:00
dependabot[bot]
345dd672d2
chore(deps-dev): bump eslint-plugin-react-refresh from 0.4.25 to 0.4.26 in /webui/react-ui ( #382 )
...
chore(deps-dev): bump eslint-plugin-react-refresh in /webui/react-ui
Bumps [eslint-plugin-react-refresh](https://github.com/ArnaudBarre/eslint-plugin-react-refresh ) from 0.4.25 to 0.4.26.
- [Release notes](https://github.com/ArnaudBarre/eslint-plugin-react-refresh/releases )
- [Changelog](https://github.com/ArnaudBarre/eslint-plugin-react-refresh/blob/main/CHANGELOG.md )
- [Commits](https://github.com/ArnaudBarre/eslint-plugin-react-refresh/compare/v0.4.25...v0.4.26 )
---
updated-dependencies:
- dependency-name: eslint-plugin-react-refresh
dependency-version: 0.4.26
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-23 09:07:42 +01:00
dependabot[bot]
7e50afde73
chore(deps-dev): bump eslint from 9.39.1 to 9.39.2 in /webui/react-ui ( #381 )
...
Bumps [eslint](https://github.com/eslint/eslint ) from 9.39.1 to 9.39.2.
- [Release notes](https://github.com/eslint/eslint/releases )
- [Commits](https://github.com/eslint/eslint/compare/v9.39.1...v9.39.2 )
---
updated-dependencies:
- dependency-name: eslint
dependency-version: 9.39.2
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-23 09:07:29 +01:00
dependabot[bot]
e33046db03
chore(deps): bump react-dom from 19.2.1 to 19.2.3 in /webui/react-ui ( #375 )
...
Bumps [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom ) from 19.2.1 to 19.2.3.
- [Release notes](https://github.com/facebook/react/releases )
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md )
- [Commits](https://github.com/facebook/react/commits/v19.2.3/packages/react-dom )
---
updated-dependencies:
- dependency-name: react-dom
dependency-version: 19.2.3
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-21 21:27:10 +01:00
Ettore Di Giacinto
9a33537ae0
chore: move logging to its own package so can be shared across repos ( #380 )
...
Signed-off-by: Ettore Di Giacinto <mudler@localai.io >
2025-12-19 23:05:04 +01:00
dependabot[bot]
c7040585d3
chore(deps-dev): bump eslint-plugin-react-refresh from 0.4.24 to 0.4.25 in /webui/react-ui ( #378 )
...
chore(deps-dev): bump eslint-plugin-react-refresh in /webui/react-ui
Bumps [eslint-plugin-react-refresh](https://github.com/ArnaudBarre/eslint-plugin-react-refresh ) from 0.4.24 to 0.4.25.
- [Release notes](https://github.com/ArnaudBarre/eslint-plugin-react-refresh/releases )
- [Changelog](https://github.com/ArnaudBarre/eslint-plugin-react-refresh/blob/main/CHANGELOG.md )
- [Commits](https://github.com/ArnaudBarre/eslint-plugin-react-refresh/compare/v0.4.24...v0.4.25 )
---
updated-dependencies:
- dependency-name: eslint-plugin-react-refresh
dependency-version: 0.4.25
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-19 22:26:22 +01:00
dependabot[bot]
85823961f3
chore(deps-dev): bump @eslint/js from 9.39.1 to 9.39.2 in /webui/react-ui ( #377 )
...
chore(deps-dev): bump @eslint/js in /webui/react-ui
Bumps [@eslint/js](https://github.com/eslint/eslint/tree/HEAD/packages/js ) from 9.39.1 to 9.39.2.
- [Release notes](https://github.com/eslint/eslint/releases )
- [Commits](https://github.com/eslint/eslint/commits/v9.39.2/packages/js )
---
updated-dependencies:
- dependency-name: "@eslint/js"
dependency-version: 9.39.2
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-19 22:26:04 +01:00
dependabot[bot]
ef0e6d2025
chore(deps): bump react from 19.2.1 to 19.2.3 in /webui/react-ui ( #376 )
...
Bumps [react](https://github.com/facebook/react/tree/HEAD/packages/react ) from 19.2.1 to 19.2.3.
- [Release notes](https://github.com/facebook/react/releases )
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md )
- [Commits](https://github.com/facebook/react/commits/v19.2.3/packages/react )
---
updated-dependencies:
- dependency-name: react
dependency-version: 19.2.3
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-19 22:25:49 +01:00
dependabot[bot]
4687efb502
chore(deps-dev): bump vite from 7.2.7 to 7.3.0 in /webui/react-ui ( #374 )
...
Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite ) from 7.2.7 to 7.3.0.
- [Release notes](https://github.com/vitejs/vite/releases )
- [Changelog](https://github.com/vitejs/vite/blob/v7.3.0/packages/vite/CHANGELOG.md )
- [Commits](https://github.com/vitejs/vite/commits/v7.3.0/packages/vite )
---
updated-dependencies:
- dependency-name: vite
dependency-version: 7.3.0
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-19 22:25:33 +01:00
dependabot[bot]
9829930451
chore(deps-dev): bump vite from 7.2.4 to 7.2.7 in /webui/react-ui ( #373 )
...
Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite ) from 7.2.4 to 7.2.7.
- [Release notes](https://github.com/vitejs/vite/releases )
- [Changelog](https://github.com/vitejs/vite/blob/v7.2.7/packages/vite/CHANGELOG.md )
- [Commits](https://github.com/vitejs/vite/commits/v7.2.7/packages/vite )
---
updated-dependencies:
- dependency-name: vite
dependency-version: 7.2.7
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-12 12:45:16 +01:00
dependabot[bot]
eaf81438fa
chore(deps): bump react-dom from 19.2.0 to 19.2.1 in /webui/react-ui ( #372 )
...
Bumps [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom ) from 19.2.0 to 19.2.1.
- [Release notes](https://github.com/facebook/react/releases )
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md )
- [Commits](https://github.com/facebook/react/commits/v19.2.1/packages/react-dom )
---
updated-dependencies:
- dependency-name: react-dom
dependency-version: 19.2.1
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-12 12:45:07 +01:00
dependabot[bot]
8141defbaf
chore(deps-dev): bump react-router-dom from 7.9.6 to 7.10.1 in /webui/react-ui ( #371 )
...
chore(deps-dev): bump react-router-dom in /webui/react-ui
Bumps [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom ) from 7.9.6 to 7.10.1.
- [Release notes](https://github.com/remix-run/react-router/releases )
- [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-dom/CHANGELOG.md )
- [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@7.10.1/packages/react-router-dom )
---
updated-dependencies:
- dependency-name: react-router-dom
dependency-version: 7.10.1
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-08 21:48:50 +01:00
dependabot[bot]
a1667b2227
chore(deps): bump react from 19.2.0 to 19.2.1 in /webui/react-ui ( #370 )
...
Bumps [react](https://github.com/facebook/react/tree/HEAD/packages/react ) from 19.2.0 to 19.2.1.
- [Release notes](https://github.com/facebook/react/releases )
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md )
- [Commits](https://github.com/facebook/react/commits/v19.2.1/packages/react )
---
updated-dependencies:
- dependency-name: react
dependency-version: 19.2.1
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-08 21:48:33 +01:00