2026-07-15 10:53:30 +00:00
|
|
|
namespace AIStudio.Tools.Media;
|
|
|
|
|
|
|
|
|
|
/// <summary>Supported persistent media-operation owners.</summary>
|
|
|
|
|
public enum MediaImportOwnerKind
|
|
|
|
|
{
|
|
|
|
|
CHAT,
|
|
|
|
|
ASSISTANT,
|
2026-08-02 19:41:12 +00:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Identifies persistent media transcripts owned by a visual briefing.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <remarks>
|
|
|
|
|
/// A visual briefing cannot use <see cref="ASSISTANT"/>: that kind is keyed by an assistant
|
|
|
|
|
/// session, which ends when the user navigates away or closes the app. A briefing is a stored
|
|
|
|
|
/// document that outlives both, and its transcripts are stored next to it. The owner is
|
|
|
|
|
/// therefore keyed by the briefing ID, see <see cref="MediaImportOwner.ForVisualBriefing"/>.
|
|
|
|
|
/// This is what lets AI Studio re-associate transcripts with the right briefing after a
|
|
|
|
|
/// restart, and what lets the UI show a running import on the briefing it belongs to.
|
|
|
|
|
/// </remarks>
|
|
|
|
|
VISUAL_BRIEFING,
|
2026-07-15 10:53:30 +00:00
|
|
|
}
|