feat: implement default prompt for analysis

This commit is contained in:
Stevan Freeborn
2025-08-03 22:06:16 -05:00
parent d7a953f187
commit f96644e029
15 changed files with 163 additions and 188 deletions
@@ -1,6 +1,12 @@
namespace StreamShorts.Library.Analysis;
public class TranscriptAnalysis(IEnumerable<ShortClip> shortClips)
/// <summary>
/// Represents the analysis of a transcript, containing short clips derived from the transcript.
/// </summary>
public sealed class TranscriptAnalysis(IEnumerable<ShortClip> shortClips)
{
/// <summary>
/// Gets the short clips derived from the transcript.
/// </summary>
public IEnumerable<ShortClip> ShortClips { get; init; } = shortClips;
}