mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-05 22:29:07 +00:00
16 lines
472 B
C#
16 lines
472 B
C#
|
namespace AIStudio.Provider;
|
||
|
|
||
|
public interface IResponseStreamLine
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Checks if the response line contains any content.
|
||
|
/// </summary>
|
||
|
/// <returns>True when the response line contains content, false otherwise.</returns>
|
||
|
public bool ContainsContent();
|
||
|
|
||
|
/// <summary>
|
||
|
/// Gets the content of the response line.
|
||
|
/// </summary>
|
||
|
/// <returns>The content of the response line.</returns>
|
||
|
public string GetContent();
|
||
|
}
|