Skip to content

Commit

Permalink
spell check
Browse files Browse the repository at this point in the history
  • Loading branch information
teresaqhoang committed Aug 11, 2023
1 parent 2e41f4c commit 55e05db
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion webapi/Skills/ChatSkills/ChatSkill.cs
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ private async Task<ChatMessage> GetChatResponseAsync(string chatId, string userI
chatContext.ThrowIfFailed();

// Extract additional details about planner execution in chat context
// TODO: [Issue #150, sk#2106] Accomodate different planner contexts once core team finishes work to return prompt and token usage.
// TODO: [Issue #150, sk#2106] Accommodate different planner contexts once core team finishes work to return prompt and token usage.
var plannerDetails = new SemanticDependency<StepwiseThoughtProcess>(
planResult,
this._externalInformationSkill.StepwiseThoughtProcess
Expand Down
2 changes: 1 addition & 1 deletion webapp/src/components/chat/prompt-dialog/PromptDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export const PromptDialog: React.FC<IPromptDialogProps> = ({ message }) => {
if (key === 'externalInformation') {
const information = value as DependencyDetails;
if (information.context) {
// TODO: [Issue #150, sk#2106] Accomodate different planner contexts once core team finishes work to return prompt and token usage.
// TODO: [Issue #150, sk#2106] Accommodate different planner contexts once core team finishes work to return prompt and token usage.
const details = information.context as StepwiseThoughtProcess;
isStepwiseThoughtProcess = details.plannerType === PlanType.Stepwise;
}
Expand Down

0 comments on commit 55e05db

Please sign in to comment.