mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-07-07 15:06:27 +00:00
Some checks are pending
Build and Release / Determine run mode (push) Waiting to run
Build and Release / Read metadata (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-aarch64-apple-darwin, osx-arm64, macos-latest, aarch64-apple-darwin, dmg,app,updater, dmg) (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-aarch64-pc-windows-msvc.exe, win-arm64, windows-latest, aarch64-pc-windows-msvc, nsis,updater, nsis) (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-aarch64-unknown-linux-gnu, linux-arm64, ubuntu-22.04-arm, aarch64-unknown-linux-gnu, appimage,updater, appimage) (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-x86_64-apple-darwin, osx-x64, macos-latest, x86_64-apple-darwin, dmg,app,updater, dmg) (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-x86_64-pc-windows-msvc.exe, win-x64, windows-latest, x86_64-pc-windows-msvc, nsis,updater, nsis) (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-x86_64-unknown-linux-gnu, linux-x64, ubuntu-22.04, x86_64-unknown-linux-gnu, appimage,updater, appimage) (push) Blocked by required conditions
Build and Release / Prepare & create release (push) Blocked by required conditions
Build and Release / Publish release (push) Blocked by required conditions
68 lines
2.2 KiB
C#
68 lines
2.2 KiB
C#
using AIStudio.Chat;
|
|
|
|
namespace AIStudio.Tools.AssistantSessions;
|
|
|
|
/// <summary>
|
|
/// Immutable-style view of an assistant session for UI consumers and message bus events.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// The service creates snapshots by copying its internal runtime state. Consumers must
|
|
/// treat the contained chat thread and state objects as read-only views of the session.
|
|
/// </remarks>
|
|
public sealed record AssistantSessionSnapshot
|
|
{
|
|
/// <summary>
|
|
/// Identifies the concrete run represented by this snapshot.
|
|
/// </summary>
|
|
public required Guid SessionId { get; init; }
|
|
|
|
/// <summary>
|
|
/// Identifies the assistant and logical session slot represented by this snapshot.
|
|
/// </summary>
|
|
public required AssistantSessionKey Key { get; init; }
|
|
|
|
/// <summary>
|
|
/// Gets the user-visible assistant title.
|
|
/// </summary>
|
|
public required string Title { get; init; }
|
|
|
|
/// <summary>
|
|
/// Gets the current lifecycle status.
|
|
/// </summary>
|
|
public required AssistantSessionStatus Status { get; init; }
|
|
|
|
/// <summary>
|
|
/// Gets when the session run started.
|
|
/// </summary>
|
|
public required DateTimeOffset StartedAt { get; init; }
|
|
|
|
/// <summary>
|
|
/// Gets when the session was last changed.
|
|
/// </summary>
|
|
public required DateTimeOffset UpdatedAt { get; init; }
|
|
|
|
/// <summary>
|
|
/// Gets when the session reached a terminal state.
|
|
/// </summary>
|
|
public DateTimeOffset? FinishedAt { get; init; }
|
|
|
|
/// <summary>
|
|
/// Gets the user-visible error message for failed sessions.
|
|
/// </summary>
|
|
public string ErrorMessage { get; init; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// Gets the assistant chat thread captured for this session.
|
|
/// </summary>
|
|
public ChatThread? ChatThread { get; init; }
|
|
|
|
/// <summary>
|
|
/// Gets the assistant component state captured for this session.
|
|
/// </summary>
|
|
public IReadOnlyDictionary<string, IAssistantSessionSnapshotField> State { get; init; } = new Dictionary<string, IAssistantSessionSnapshotField>();
|
|
|
|
/// <summary>
|
|
/// Gets whether the session is still running or canceling.
|
|
/// </summary>
|
|
public bool IsActive => this.Status is AssistantSessionStatus.RUNNING or AssistantSessionStatus.CANCELING;
|
|
} |