성태의 닷넷 이야기
홈 주인
모아 놓은 자료
프로그래밍
질문/답변
사용자 관리
사용자
메뉴
아티클
외부 아티클
유용한 코드
온라인 기능
MathJax 입력기
최근 덧글
[정성태] VT sequences to "CONOUT$" vs. STD_O...
[정성태] NetCoreDbg is a managed code debugg...
[정성태] Evaluating tail call elimination in...
[정성태] What’s new in System.Text.Json in ....
[정성태] What's new in .NET 9: Cryptography ...
[정성태] 아... 제시해 주신 "https://akrzemi1.wordp...
[정성태] 다시 질문을 정리할 필요가 있을 것 같습니다. 제가 본문에...
[이승준] 완전히 잘못 짚었습니다. 댓글 지우고 싶네요. 검색을 해보...
[정성태] 우선 답글 감사합니다. ^^ 그런데, 사실 저 예제는 (g...
[이승준] 수정이 안되어서... byteArray는 BYTE* 타입입니다...
글쓰기
제목
이름
암호
전자우편
HTML
홈페이지
유형
제니퍼 .NET
닷넷
COM 개체 관련
스크립트
VC++
VS.NET IDE
Windows
Team Foundation Server
디버깅 기술
오류 유형
개발 환경 구성
웹
기타
Linux
Java
DDK
Math
Phone
Graphics
사물인터넷
부모글 보이기/감추기
내용
<div style='display: inline'> <h1 style='font-family: Malgun Gothic, Consolas; font-size: 20pt; color: #006699; text-align: center; font-weight: bold'>C# - Semantic Kernel의 대화 문맥 유지</h1> <p> 아래의 예제가 바로,<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > Using Context Variables to Build a Chat Experience ; <a target='tab' href='https://github.com/microsoft/semantic-kernel/tree/main/samples/notebooks/dotnet'>https://github.com/microsoft/semantic-kernel/tree/main/samples/notebooks/dotnet</a> </pre> <br /> 문맥 유지를 위한 코드를 싣고 있습니다. 예제를 보면 Semantic Function을 코드로 직접 만드는 것 때문에 다소 길어졌는데요, 그냥 <a target='tab' href='https://www.sysnet.pe.kr/2/0/13349'>이전 예제처럼</a> 임의로 Skill/Function 디렉터리/파일을 만든 후 skprompt.txt 파일에 다음의 내용을 넣어주고,<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > ChatBot can have a conversation with you about any topic. It can give explicit instructions or say 'I don't know' if it does not have an answer. {{$history}} Human: {{$human_input}} ChatBot: </pre> <br /> config.json은 이렇게 만들어 주면 "<a target='tab' href='https://github.com/microsoft/semantic-kernel/tree/main/samples/notebooks/dotnet'>Using Context Variables to Build a Chat Experience</a>" 글에서 RegisterSemanticFunction을 이용해 등록한,<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > KernelConfig kernelConfig = new KernelConfig(); kernelConfig.AddOpenAITextCompletionService("default", "<a target='tab' href='https://www.sysnet.pe.kr/2/0/13344#models'>text-davinci-003</a>", // OpenAI Model name apiKey // OpenAI API Key ); var kernel = Kernel.Builder .WithConfiguration(kernelConfig) .Build(); var promptConfig = new PromptTemplateConfig { Completion = { MaxTokens = 2000, Temperature = 0.7, TopP = 0.5, } }; var promptTemplate = new PromptTemplate(skPrompt, promptConfig, kernel); var functionConfig = new SemanticFunctionConfig(promptConfig, promptTemplate); var chatFunction = kernel.RegisterSemanticFunction("ChatBot", "Chat", functionConfig); </pre> <br /> "ChatBot" Skill의 "Chat" 함수와 동일하게 동작합니다. (따라서 취향대로 만드시면 됩니다.)<br /> <br /> 이후, 대화 내용에 대한 문맥을 유지할 방법이 필요한데요, "<a target='tab' href='https://github.com/microsoft/semantic-kernel/tree/main/samples/notebooks/dotnet'>Using Context Variables to Build a Chat Experience</a>" 글에서는 간단하게 메모리에 유지하는 방법을 사용합니다. (별도의 저장소를 사용하는 예제는 다른 글에서 다룬다고 합니다.)<br /> <br /> 이를 위해 SK 라이브러리에서 이미 ContextVariables 타입을 제공하고 있어 그걸 사용하고 있는데요, 다음은 문맥을 유지하기 위해 사용자의 질문을 ContextVariables에 담아 Chat Function을 부르는 코드입니다.<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > var skill = kernel.ImportSemanticSkillFromDirectory(Directory.GetCurrentDirectory(), "ChatBotSkill"); var context = new ContextVariables(); var history = ""; context.Set(<span style='color: blue; font-weight: bold'>"history"</span>, history); var human_input = "Hi, I'm looking for book suggestions"; context.Set(<span style='color: blue; font-weight: bold'>"human_input"</span>, human_input); var bot_answer = await kernel.RunAsync(context, skill["Chat"]); Console.WriteLine(bot_answer); /* 출력 결과 Hi there! What kind of books are you looking for? */ </pre> <br /> (context.Set에 지정한 "history"와 "human_input"은 skprompt.txt 파일에 지정했던 특수 변수의 이름입니다.)<br /> <br /> 위의 경우, 1개의 질문과 답변을 했고, 이제 그 상태를 기억하기 위해 단순히 ContextVariables의 history에 지난 대화 내용을 업데이트하기만 하면 됩니다.<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > history += $"\nHuman: {human_input}\nAssistant: {bot_answer}\n"; <span style='color: blue; font-weight: bold'>context.Update(history);</span> Console.WriteLine(context); /* 출력 결과 Human: Hi, I'm looking for book suggestions Assistant: Hi there! What kind of books are you looking for? */ </pre> <br /> 아마도 실제 대화를 위한 Bot 응용 프로그램을 만든다면 위의 코드는 Loop를 돌면서 구현할 것입니다.<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > var skill = kernel.ImportSemanticSkillFromDirectory(Directory.GetCurrentDirectory(), "ChatBotSkill"); var context = new ContextVariables(); var history = ""; context.Set("history", history); while (true) { var human_input = Console.ReadLine(); if (human_input == "exit") { break; } context.Set("human_input", human_input); var bot_answer = await kernel.RunAsync(context, skill["Chat"]); Console.WriteLine(bot_answer); <span style='color: blue; font-weight: bold'>// 지난 대화에 대한 문맥 보관 history += $"\nHuman: {human_input}\nAssistant: {bot_answer}\n"; context.Set("history", history);</span> } </pre> <br /> "<a target='tab' href='https://github.com/microsoft/semantic-kernel/tree/main/samples/notebooks/dotnet'>Using Context Variables to Build a Chat Experience</a>" 글의 예제에서는 위와 같은 코드를 쓰지 않고, 비동기 람다로 바꿨으니 그 코드를 따른다면 다음과 같은 식으로 루프를 구현할 수 있습니다.<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > Func<string, Task> Chat = async (string input) => { // Save new message in the context variables context.Set("human_input", input); // Process the user message and get an answer var answer = await kernel.RunAsync(context, skill["Chat"]); if (answer.LastException != null) { Console.WriteLine(answer); return; } // Append the new interaction to the chat history history += $"\nHuman: {input}\nMelody: {answer}\n"; context.Set("history", history); // Show the response Console.WriteLine(context); }; <span style='color: blue; font-weight: bold'>while (true) { string? human_input = Console.ReadLine(); if (string.IsNullOrEmpty(human_input) == true || human_input == "exit") { break; } await Chat(human_input); }</span> </pre> <br /> 어디, 잘 동작하는지, 예제에서 묻는 질문을 해볼까요? ^^<br /> <br /> <div style='BACKGROUND-COLOR: #ccffcc; padding: 10px 10px 5px 10px; MARGIN: 0px 10px 10px 10px; FONT-FAMILY: Malgun Gothic, Consolas, Verdana; COLOR: #005555'> 질문: Hi, I'm looking for book suggestions<br /> 답변: Hi there! What kind of books are you looking for?<br /> <br /> 질문: I would like a non-fiction book suggestion about Greece history. Please only list one book.<br /> 답변; The History of the Peloponnesian War by Thucydides is an excellent non-fiction book about the history of Greece.<br /> <br /> 질문: that sounds interesting, what are some of the topics I will learn about?<br /> 답변: The History of the Peloponnesian War covers topics such as the causes of the war, the strategies used by both sides, the major battles, and the consequences of the war. It also provides insight into the political and social structures of ancient Greece.<br /> <br /> 질문: Which topic from the ones you listed do you think most people find interesting?<br /> 답변: I think most people find the major battles and the strategies used by both sides to be the most interesting topics.<br /> <br /> 질문: could you list some more books I could read about the topic(s) you mentioned?<br /> 답변: Sure! Here are some other books about the history of Greece and the Peloponnesian War: The Landmark Thucydides: A Comprehensive Guide to the Peloponnesian War by Thucydides, The Peloponnesian War by Donald Kagan, The History of the Ancient World: From the Earliest Accounts to the Fall of Rome by Susan Wise Bauer, and Ancient Greece: A Political, Social, and Cultural History by Sarah B. Pomeroy.<br /> </div><br /> <br /> 보는 바와 같이 ContextVariables 덕분에 이전 질문의 문맥이 유지되면서 대화를 할 수 있습니다. 물론, 한글도 잘 됩니다. ^^<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > 질문: 안녕하세요, 책 좀 추천해 주세요. 답변: 안녕하세요! 어떤 종류의 책을 찾고 계신가요? 질문: 한국 역사에 대한 소설책을 읽고 싶습니다. 그에 관한 책 한 권만 추천해 주세요. 답변: 한국 역사에 대한 소설책을 읽고 싶으신가요? 제가 추천해 드릴 책은 '나는 이렇게 살았다'입니다. 이 책은 한국 역사에 대한 소설책으로, 역사를 통해 인간의 삶과 사랑을 다루고 있습니다. 여러분이 이 책을 읽고 느낄 수 있는 감정과 생각이 많이 담겨 있습니다. 이 책을 읽으면서 한국 역사를 더 잘 이해할 수 있을 것 같습니다. </pre> </strike><br /> <br /> (<a target='tab' href='https://www.sysnet.pe.kr/bbs/DownloadAttachment.aspx?fid=2084&boardid=331301885'>첨부 파일은 이 글의 예제 코드를 포함</a>합니다.)<br /> <br /> <hr style='width: 50%' /><br /> <br /> 그나저나, 다른 모델을 사용하려고 했더니,<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > kernelConfig.AddOpenAITextCompletionService( "default", "<a target='tab' href='https://www.sysnet.pe.kr/2/0/13344#models'>gpt-3.5-turbo</a>", // 또는, "davinci", "gpt-3.5-turbo-0301" 등... apiKey // OpenAI API Key ); </pre> <br /> "Error: InvalidRequest: The request is not valid, HTTP status: 400", 또는 "404" 오류가 발생합니다. 이와 관련한 이슈가 있지만,<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > InvalidRequest: The request is not valid, HTTP status: 400" When running Jupiter notebooks ; <a target='tab' href='https://github.com/microsoft/semantic-kernel/issues/649'>https://github.com/microsoft/semantic-kernel/issues/649</a> </pre> <br /> 해결되었다는 이야기 없이 그냥 "Closed"로 바뀐 상태입니다. <strike>암튼... 현재는 Preview 버전이라 그런지 뭔가 요상한 점들이 있으니 그걸 감안해서 테스트하시면 되겠습니다.</strike> (gpt 모델의 경우 AddOpenAIChatCompletionService로 사용해야 합니다.)<br /> <br /> 참고로, 지원되는 다른 모델이 있긴 합니다. ChatBot 서비스로는 사용할 수 없지만, "<a target='tab' href='https://openai.com/blog/new-and-improved-embedding-model'>text-embedding-ada-002</a>" (<a target='tab' href='https://simpling.tistory.com/entry/Embedding-이란-무엇인가-이해하기'>Word Embedding</a>, "<a target='tab' href='https://doooob.tistory.com/493'>OpenAI가 자연어처리 및 이미지생성 AI의 '임베딩 모델'을 쇄신, 성능대비 코스트가 99.8%나 저렴하게</a>")를 사용하면 다음과 같은 출력을 얻습니다. ^^;<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > 질문: 안녕하세요, 책 좀 추천해 주세요. 답변: ( 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0, 0 0 0 0 0 1 0 0, 0 0 0, 0 0 0, 0 0, 0 0, 0 0 0, 0 0 0 0,0 0 0, 0 0 0,0,0 0 0 0, 0 0 0 0, 0 0 0,0,0 0, 0,0,0,,0,0,0,0 1 0, 0,0,0,0,0,0, 0,0,0,0,0, 0,0,0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0,0,0, 0,0,0, 0,0,0,0,0,, 0,0,0, 0,0,0,0,0,,0,0,0,0, 1 0,0,0,0,0,0,0,0, 0,0,0,0, 0,0,0, 0,0,0, 0 1 0,0,0,0,0,,, 0,0,0,0, 0,0,0, 0,0, 0,0,0, 0,0, 0,0, 0,0, 0,0,0, 0,0, 0,0,1, 0,0, 0,0, 0,0,0,0, 0,0,0, 0,0, 1,0,0, 0,0, 0,0,0, 0,0,1,0,0,0,0,1, 0,0,0, 0,0,0,1,1,0, 0,0,0,0, 1,0,0,1,1,0, 1,0,0,0,0,0, 1,0,0,0,0,1,0,1,1, 1,0,0,0,1,1, 1,0,1,1,0, 0,0,0,0,0, 0,0, 1, 0,0,1,0,1,1,1, 0,0,0,1,0,1,1, 0,0,0,0, 0,0, 1,0,1,0, 1,1,1,0, 0,0,0, 1,0,0,0,1,1, 1,0,1,1,1, 0,0,0,0, 0,0,0,1,1,1,1,1,1,1,1, 1,0,0,0,0, 1,0,1,1,1,1, 0,0,0,0, 1,1,0,1,0,1,1, 1,0,0,0, 0,0,0,1,,1,0,0,0,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,0,0,0,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,1,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 </pre> </p><br /> <br /><hr /><span style='color: Maroon'>[이 글에 대해서 여러분들과 의견을 공유하고 싶습니다. 틀리거나 미흡한 부분 또는 의문 사항이 있으시면 언제든 댓글 남겨주십시오.]</span> </div>
첨부파일
스팸 방지용 인증 번호
5057
(왼쪽의 숫자를 입력해야 합니다.)