mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-09-13 18:53:38 +00:00
18 lines
268 B
C#
18 lines
268 B
C#
|
|
namespace AIStudio.Tools;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// The file formats a chat message can be exported to.
|
|||
|
|
/// </summary>
|
|||
|
|
public enum FileExportFormat
|
|||
|
|
{
|
|||
|
|
NONE,
|
|||
|
|
UNKNOWN,
|
|||
|
|
|
|||
|
|
MICROSOFT_WORD,
|
|||
|
|
OPEN_DOCUMENT_TEXT,
|
|||
|
|
LATEX,
|
|||
|
|
MARKDOWN,
|
|||
|
|
HTML,
|
|||
|
|
CSV,
|
|||
|
|
TSV,
|
|||
|
|
}
|