feat: implement generate command in console app

This commit is contained in:
Stevan Freeborn
2025-02-12 16:10:49 -06:00
parent 8e0a6933f7
commit ec9651e5e9
12 changed files with 296 additions and 161 deletions
@@ -0,0 +1,9 @@
namespace AltGen.Console.Generate;
record GenerateAltTextRequest(
string Provider,
string ProviderKey,
string FileName,
byte[] Image,
string ContentType
);