feat: wip on implementing gemini analyzer

This commit is contained in:
Stevan Freeborn
2025-07-31 00:10:27 -05:00
parent f6773cb64e
commit d7a953f187
10 changed files with 162 additions and 85 deletions
@@ -0,0 +1,6 @@
namespace StreamShorts.Library.Analysis;
public class TranscriptAnalysis(IEnumerable<ShortClip> shortClips)
{
public IEnumerable<ShortClip> ShortClips { get; init; } = shortClips;
}