namespace AIStudio.Tools.ToolCallingSystem.Harness;
///
/// What one event of a streamed tool calling round carries.
///
public enum ToolCallingStreamEventKind
{
NONE = 0,
///
/// A piece of text the model wrote, to be shown while the round is still running.
///
TEXT_DELTA,
///
/// The round is over and the event carries its outcome.
///
ROUND_COMPLETED,
}