15 lines
369 B
C++
15 lines
369 B
C++
#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(
|
|
Arena* arena,
|
|
FileEntry& entry
|
|
);
|
|
}
|