-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1397 from solliancenet/jdh-update-release-0.8.0-r…
…ender-files (0.8.0) User Portal: Render files
- Loading branch information
Showing
4 changed files
with
94 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace FoundationaLLM.Common.Constants.Chat | ||
{ | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
public static class MessageContentTypes | ||
{ | ||
/// <summary> | ||
/// Plaintext and formatted text, such as markdown. | ||
/// </summary> | ||
public const string Text = "text"; | ||
|
||
/// <summary> | ||
/// Image file link. | ||
/// </summary> | ||
public const string Image = "image"; | ||
|
||
/// <summary> | ||
/// General file link. | ||
/// </summary> | ||
public const string File = "file"; | ||
|
||
/// <summary> | ||
/// HTML file link. | ||
/// </summary> | ||
public const string Html = "html"; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters