Fix autoupdate, add healtcheck status to the dashboard

This commit is contained in:
2025-12-15 01:33:49 +00:00
parent 05a5cea5c7
commit 7a6182bb3b
14 changed files with 497 additions and 133 deletions
+7
View File
@@ -449,6 +449,13 @@ func (c *Client) nextID() int {
return c.requestID
}
// IsConnected returns whether the client is currently connected to ChromaDB.
func (c *Client) IsConnected() bool {
c.mu.Lock()
defer c.mu.Unlock()
return c.connected
}
// Close closes the connection to ChromaDB.
func (c *Client) Close() error {
c.mu.Lock()