Addded Romeo that generates some doc. WIP.

This commit is contained in:
2026-07-18 18:58:29 -04:00
parent 446670bd29
commit 0c583b58da
120 changed files with 6167 additions and 18 deletions
+14
View File
@@ -0,0 +1,14 @@
#pragma once
#include <Core/Common/String.h>
#include "Database.h"
namespace Romeo
{
// Generates a description for the file entry using local Ollama or cloud Gemini API.
// Returns true if generation was successful and entry.Description was populated.
[[nodiscard]] bool AI_GenerateDescription(
Juliet::Arena* arena,
FileEntry& entry
);
}