Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Cellm/AddIn/ArgumentParser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ public Arguments Parse()

if (string.IsNullOrEmpty(_instructions))
{
instructionsBuilder.AppendLine(CellmPrompts.InlineInstructions);
instructionsBuilder.AppendLine(SystemMessages.InlineInstructions);
}
else
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

namespace Cellm.AddIn;

public static class CellmFunctions
public static class Functions
{
/// <summary>
/// Sends a prompt to the default model configured in CellmConfiguration.
Expand Down Expand Up @@ -88,7 +88,7 @@ public static object PromptWith(

var prompt = new PromptBuilder()
.SetModel(arguments.Model)
.SetSystemMessage(CellmPrompts.SystemMessage)
.SetSystemMessage(SystemMessages.SystemMessage)
.SetTemperature(arguments.Temperature)
.AddUserMessage(userMessage)
.Build();
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
namespace Cellm.AddIn;

internal static class CellmPrompts
internal static class SystemMessages
{
public const string SystemMessage = @"
<input>
Expand Down