From 78098874badb26695f84ec96d464ba964ba4fc2d Mon Sep 17 00:00:00 2001
From: Jicheng Lu <103353@smsassist.com>
Date: Fri, 18 Oct 2024 10:00:05 -0500
Subject: [PATCH] add comments
---
.../BotSharp.Abstraction/Instructs/IInstructService.cs | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/Infrastructure/BotSharp.Abstraction/Instructs/IInstructService.cs b/src/Infrastructure/BotSharp.Abstraction/Instructs/IInstructService.cs
index 7e59ecea1..e6a659cc7 100644
--- a/src/Infrastructure/BotSharp.Abstraction/Instructs/IInstructService.cs
+++ b/src/Infrastructure/BotSharp.Abstraction/Instructs/IInstructService.cs
@@ -18,9 +18,9 @@ public interface IInstructService
/// A generic way to execute completion by using specified instruction or template
///
///
- ///
- ///
- ///
+ /// Prompt
+ /// Agent id
+ /// Llm Provider, model, message, prompt data
///
Task Instruct(string instruction, string agentId, InstructOptions options) where T : class;
}