Generate a new default chat API key

This commit is contained in:
Clément Renault
2025-05-20 11:00:19 +02:00
parent 295840d07a
commit 4f919db344
5 changed files with 41 additions and 9 deletions

View File

@ -351,6 +351,7 @@ pub struct IndexSearchRules {
fn generate_default_keys(store: &HeedAuthStore) -> Result<()> {
store.put_api_key(Key::default_admin())?;
store.put_api_key(Key::default_search())?;
store.put_api_key(Key::default_chat())?;
Ok(())
}