Skip to content

Commit

Permalink
Spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
crickman committed Aug 16, 2023
1 parent adb7c08 commit 6512929
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webapi/Skills/ChatSkills/ChatSkill.cs
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ private async Task<ChatMessage> GetChatResponseAsync(string chatId, string userI
var chatMemoriesTokenLimit = (int)(remainingToken * this._promptOptions.MemoriesResponseContextWeight);
var documentContextTokenLimit = (int)(remainingToken * this._promptOptions.DocumentContextWeight);

string memories = await this._semanticMemorySkill.QueryMemoriesAsync(userIntent, chatId, chatMemoriesTokenLimit, this._memoryClient); // $$$ GROPU
string memories = await this._semanticMemorySkill.QueryMemoriesAsync(userIntent, chatId, chatMemoriesTokenLimit, this._memoryClient); // $$$ GROUP

//var chatMemories = tasks[0];
//var documentMemories = tasks[1];
Expand Down

0 comments on commit 6512929

Please sign in to comment.