├── .editorconfig ├── .gitattributes ├── .gitignore ├── AndrewDemo.DevAIAPPs.sln ├── KernelMemory_MCPServer ├── KernelMemory_MCPServer.csproj ├── Program.cs ├── README.md └── command.txt ├── KernelMemory_MCPServer_UseOfficialSDK ├── KernelMemory_MCPServer_UseOfficialSDK.csproj └── Program.cs ├── README.md ├── UseMicrosoft_KernelMemoryPlugin ├── 00_Example_Call_Kernel_Memory_Service_API.http ├── 07_Program_Example07_SynthesisWithRAG.http ├── HttpLogger.cs ├── Program.cs ├── Program_Example01_RAG_Basic.cs ├── Program_Example02_RAG_With_Search_Plugins.cs ├── Program_Example03_RAG_With_KernelMemory_Plugins.cs ├── Program_Example04_RAG_With_KernelMemory_Custom_Plugins.cs ├── Program_Example05_DemoFromKernelMemoryOfficalRepo.cs ├── Program_Example06_MultiplePluginsDemo.cs ├── Program_Example07_SynthesisWithRAG.cs ├── UseMicrosoft_KernelMemoryPlugin.csproj ├── blogs │ ├── posts │ │ ├── 2024-01-15-archview-llm.md │ │ ├── 2024-02-10-archview-int-app.md │ │ ├── 2024-03-15-archview-int-blog.md │ │ ├── 2024-07-20-devopsdays-keynote.md │ │ └── 2024-11-11-working-with-wsl.md │ └── synthesis │ │ ├── 2024-01-15-archview-llm-abstract.md │ │ ├── 2024-01-15-archview-llm-paragraph.md │ │ ├── 2024-01-15-archview-llm-postinfo.json │ │ ├── 2024-01-15-archview-llm-problem.md │ │ ├── 2024-01-15-archview-llm-question.md │ │ ├── 2024-02-10-archview-int-app-abstract.md │ │ ├── 2024-02-10-archview-int-app-paragraph.md │ │ ├── 2024-02-10-archview-int-app-postinfo.json │ │ ├── 2024-02-10-archview-int-app-problem.md │ │ ├── 2024-02-10-archview-int-app-question.md │ │ ├── 2024-03-15-archview-int-blog-abstract.md │ │ ├── 2024-03-15-archview-int-blog-paragraph.md │ │ ├── 2024-03-15-archview-int-blog-postinfo.json │ │ ├── 2024-03-15-archview-int-blog-problem.md │ │ ├── 2024-03-15-archview-int-blog-question.md │ │ ├── 2024-07-20-devopsdays-keynote-abstract.md │ │ ├── 2024-07-20-devopsdays-keynote-paragraph.md │ │ ├── 2024-07-20-devopsdays-keynote-postinfo.json │ │ ├── 2024-07-20-devopsdays-keynote-problem.md │ │ ├── 2024-07-20-devopsdays-keynote-question.md │ │ ├── 2024-11-11-working-with-wsl-abstract.md │ │ ├── 2024-11-11-working-with-wsl-paragraph.md │ │ ├── 2024-11-11-working-with-wsl-postinfo.json │ │ ├── 2024-11-11-working-with-wsl-problem.md │ │ ├── 2024-11-11-working-with-wsl-question.md │ │ ├── chat-gpt │ │ ├── _2024-01-15-archview-llm.md │ │ ├── _2024-02-10-archview-int-app.md │ │ ├── _2024-03-15-archview-int-blog.md │ │ ├── _2024-07-20-devopsdays-keynote.md │ │ └── _2024-11-11-working-with-wsl.md │ │ ├── gpt-4o-mini │ │ ├── 2024-01-15-archview-llm-abstract.md │ │ ├── 2024-01-15-archview-llm-paragraph.md │ │ ├── 2024-01-15-archview-llm-postinfo.json │ │ ├── 2024-01-15-archview-llm-problem.md │ │ ├── 2024-01-15-archview-llm-question.md │ │ ├── 2024-02-10-archview-int-app-abstract.md │ │ ├── 2024-02-10-archview-int-app-paragraph.md │ │ ├── 2024-02-10-archview-int-app-postinfo.json │ │ ├── 2024-02-10-archview-int-app-problem.md │ │ ├── 2024-02-10-archview-int-app-question.md │ │ ├── 2024-03-15-archview-int-blog-abstract.md │ │ ├── 2024-03-15-archview-int-blog-paragraph.md │ │ ├── 2024-03-15-archview-int-blog-postinfo.json │ │ ├── 2024-03-15-archview-int-blog-problem.md │ │ ├── 2024-03-15-archview-int-blog-question.md │ │ ├── 2024-07-20-devopsdays-keynote-abstract.md │ │ ├── 2024-07-20-devopsdays-keynote-paragraph.md │ │ ├── 2024-07-20-devopsdays-keynote-postinfo.json │ │ ├── 2024-07-20-devopsdays-keynote-problem.md │ │ ├── 2024-07-20-devopsdays-keynote-question.md │ │ ├── 2024-11-11-working-with-wsl-abstract.md │ │ ├── 2024-11-11-working-with-wsl-paragraph.md │ │ ├── 2024-11-11-working-with-wsl-postinfo.json │ │ ├── 2024-11-11-working-with-wsl-problem.md │ │ └── 2024-11-11-working-with-wsl-question.md │ │ ├── gpt-4o │ │ ├── 2024-01-15-archview-llm-abstract.md │ │ ├── 2024-01-15-archview-llm-paragraph.md │ │ ├── 2024-01-15-archview-llm-postinfo.json │ │ ├── 2024-01-15-archview-llm-problem.md │ │ ├── 2024-01-15-archview-llm-question.md │ │ ├── 2024-02-10-archview-int-app-abstract.md │ │ ├── 2024-02-10-archview-int-app-paragraph.md │ │ ├── 2024-02-10-archview-int-app-postinfo.json │ │ ├── 2024-02-10-archview-int-app-problem.md │ │ ├── 2024-02-10-archview-int-app-question.md │ │ ├── 2024-03-15-archview-int-blog-abstract.md │ │ ├── 2024-03-15-archview-int-blog-paragraph.md │ │ ├── 2024-03-15-archview-int-blog-postinfo.json │ │ ├── 2024-03-15-archview-int-blog-problem.md │ │ ├── 2024-03-15-archview-int-blog-question.md │ │ ├── 2024-07-20-devopsdays-keynote-abstract.md │ │ ├── 2024-07-20-devopsdays-keynote-paragraph.md │ │ ├── 2024-07-20-devopsdays-keynote-postinfo.json │ │ ├── 2024-07-20-devopsdays-keynote-problem.md │ │ ├── 2024-07-20-devopsdays-keynote-question.md │ │ ├── 2024-11-11-working-with-wsl-abstract.md │ │ ├── 2024-11-11-working-with-wsl-paragraph.md │ │ ├── 2024-11-11-working-with-wsl-postinfo.json │ │ ├── 2024-11-11-working-with-wsl-problem.md │ │ └── 2024-11-11-working-with-wsl-question.md │ │ ├── o1 │ │ ├── 2024-01-15-archview-llm-abstract.md │ │ ├── 2024-01-15-archview-llm-paragraph.md │ │ ├── 2024-01-15-archview-llm-postinfo.json │ │ ├── 2024-01-15-archview-llm-problem.md │ │ ├── 2024-01-15-archview-llm-question.md │ │ ├── 2024-02-10-archview-int-app-abstract.md │ │ ├── 2024-02-10-archview-int-app-paragraph.md │ │ ├── 2024-02-10-archview-int-app-postinfo.json │ │ ├── 2024-02-10-archview-int-app-problem.md │ │ ├── 2024-02-10-archview-int-app-question.md │ │ ├── 2024-03-15-archview-int-blog-abstract.md │ │ ├── 2024-03-15-archview-int-blog-paragraph.md │ │ ├── 2024-03-15-archview-int-blog-postinfo.json │ │ ├── 2024-03-15-archview-int-blog-problem.md │ │ ├── 2024-03-15-archview-int-blog-question.md │ │ ├── 2024-07-20-devopsdays-keynote-abstract.md │ │ ├── 2024-07-20-devopsdays-keynote-paragraph.md │ │ ├── 2024-07-20-devopsdays-keynote-postinfo.json │ │ ├── 2024-07-20-devopsdays-keynote-problem.md │ │ ├── 2024-07-20-devopsdays-keynote-question.md │ │ ├── 2024-11-11-working-with-wsl-abstract.md │ │ ├── 2024-11-11-working-with-wsl-paragraph.md │ │ ├── 2024-11-11-working-with-wsl-postinfo.json │ │ ├── 2024-11-11-working-with-wsl-problem.md │ │ └── 2024-11-11-working-with-wsl-question.md │ │ └── o3 │ │ ├── 2024-01-15-archview-llm-abstract.md │ │ ├── 2024-01-15-archview-llm-paragraph.md │ │ ├── 2024-01-15-archview-llm-postinfo.json │ │ ├── 2024-01-15-archview-llm-problem.md │ │ ├── 2024-01-15-archview-llm-question.md │ │ ├── 2024-02-10-archview-int-app-abstract.md │ │ ├── 2024-02-10-archview-int-app-paragraph.md │ │ ├── 2024-02-10-archview-int-app-postinfo.json │ │ ├── 2024-02-10-archview-int-app-problem.md │ │ ├── 2024-02-10-archview-int-app-question.md │ │ ├── 2024-03-15-archview-int-blog-abstract.md │ │ ├── 2024-03-15-archview-int-blog-paragraph.md │ │ ├── 2024-03-15-archview-int-blog-postinfo.json │ │ ├── 2024-03-15-archview-int-blog-problem.md │ │ ├── 2024-03-15-archview-int-blog-question.md │ │ ├── 2024-07-20-devopsdays-keynote-abstract.md │ │ ├── 2024-07-20-devopsdays-keynote-paragraph.md │ │ ├── 2024-07-20-devopsdays-keynote-postinfo.json │ │ ├── 2024-07-20-devopsdays-keynote-problem.md │ │ ├── 2024-07-20-devopsdays-keynote-question.md │ │ ├── 2024-11-11-working-with-wsl-abstract.md │ │ ├── 2024-11-11-working-with-wsl-paragraph.md │ │ ├── 2024-11-11-working-with-wsl-postinfo.json │ │ ├── 2024-11-11-working-with-wsl-problem.md │ │ └── 2024-11-11-working-with-wsl-question.md ├── http-client.env.json └── mydocs-NASA-news.pdf ├── UseMicrosoft_SemanticKernel ├── HttpLogger.cs ├── Program.cs ├── Program_Demo02_ExtractAddress.cs ├── Program_Demo03_ScheduleEventAssistant.cs ├── Program_Example01_SimpleChat.cs ├── Program_Example03_FunctionCalling.cs ├── Program_Example06_StructuredOutputs.cs └── UseMicrosoft_SemanticKernel.csproj ├── UseOpenAI_SDK ├── Demo02_ExtractAddress.http ├── Demo03_ScheduleEventAssistant.http ├── Example01_SimpleChat.http ├── Example03_FunctionCalling.http ├── Example06_StructuredOutputs.http ├── Program.cs ├── Program_Demo02_ExtractAddress.cs ├── Program_Example01_SimpleChat.cs ├── Program_Example03_FunctionCalling.cs ├── Program_Example06_StructuredOutputs.cs ├── UseOpenAI_SDK.csproj └── http-client.env.json ├── docker-compose.yaml └── docs ├── NOTES.md ├── claude1.jpg ├── claude2.jpg ├── image-0.png ├── image-1.png ├── image-2.png ├── image-3.png ├── image-4.png ├── image-5.png ├── image-6.png ├── image-7.png ├── image-8.png ├── image-9.png └── image.png /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/.gitignore -------------------------------------------------------------------------------- /AndrewDemo.DevAIAPPs.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/AndrewDemo.DevAIAPPs.sln -------------------------------------------------------------------------------- /KernelMemory_MCPServer/KernelMemory_MCPServer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/KernelMemory_MCPServer/KernelMemory_MCPServer.csproj -------------------------------------------------------------------------------- /KernelMemory_MCPServer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/KernelMemory_MCPServer/Program.cs -------------------------------------------------------------------------------- /KernelMemory_MCPServer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/KernelMemory_MCPServer/README.md -------------------------------------------------------------------------------- /KernelMemory_MCPServer/command.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/KernelMemory_MCPServer/command.txt -------------------------------------------------------------------------------- /KernelMemory_MCPServer_UseOfficialSDK/KernelMemory_MCPServer_UseOfficialSDK.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/KernelMemory_MCPServer_UseOfficialSDK/KernelMemory_MCPServer_UseOfficialSDK.csproj -------------------------------------------------------------------------------- /KernelMemory_MCPServer_UseOfficialSDK/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/KernelMemory_MCPServer_UseOfficialSDK/Program.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/README.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/00_Example_Call_Kernel_Memory_Service_API.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/00_Example_Call_Kernel_Memory_Service_API.http -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/07_Program_Example07_SynthesisWithRAG.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/07_Program_Example07_SynthesisWithRAG.http -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/HttpLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/HttpLogger.cs -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/Program.cs -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/Program_Example01_RAG_Basic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/Program_Example01_RAG_Basic.cs -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/Program_Example02_RAG_With_Search_Plugins.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/Program_Example02_RAG_With_Search_Plugins.cs -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/Program_Example03_RAG_With_KernelMemory_Plugins.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/Program_Example03_RAG_With_KernelMemory_Plugins.cs -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/Program_Example04_RAG_With_KernelMemory_Custom_Plugins.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/Program_Example04_RAG_With_KernelMemory_Custom_Plugins.cs -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/Program_Example05_DemoFromKernelMemoryOfficalRepo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/Program_Example05_DemoFromKernelMemoryOfficalRepo.cs -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/Program_Example06_MultiplePluginsDemo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/Program_Example06_MultiplePluginsDemo.cs -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/Program_Example07_SynthesisWithRAG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/Program_Example07_SynthesisWithRAG.cs -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/UseMicrosoft_KernelMemoryPlugin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/UseMicrosoft_KernelMemoryPlugin.csproj -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/posts/2024-01-15-archview-llm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/posts/2024-01-15-archview-llm.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/posts/2024-02-10-archview-int-app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/posts/2024-02-10-archview-int-app.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/posts/2024-03-15-archview-int-blog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/posts/2024-03-15-archview-int-blog.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/posts/2024-07-20-devopsdays-keynote.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/posts/2024-07-20-devopsdays-keynote.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/posts/2024-11-11-working-with-wsl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/posts/2024-11-11-working-with-wsl.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/2024-01-15-archview-llm-abstract.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/2024-01-15-archview-llm-abstract.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/2024-01-15-archview-llm-paragraph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/2024-01-15-archview-llm-paragraph.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/2024-01-15-archview-llm-postinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/2024-01-15-archview-llm-postinfo.json -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/2024-01-15-archview-llm-problem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/2024-01-15-archview-llm-problem.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/2024-01-15-archview-llm-question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/2024-01-15-archview-llm-question.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/2024-02-10-archview-int-app-abstract.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/2024-02-10-archview-int-app-abstract.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/2024-02-10-archview-int-app-paragraph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/2024-02-10-archview-int-app-paragraph.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/2024-02-10-archview-int-app-postinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/2024-02-10-archview-int-app-postinfo.json -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/2024-02-10-archview-int-app-problem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/2024-02-10-archview-int-app-problem.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/2024-02-10-archview-int-app-question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/2024-02-10-archview-int-app-question.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/2024-03-15-archview-int-blog-abstract.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/2024-03-15-archview-int-blog-abstract.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/2024-03-15-archview-int-blog-paragraph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/2024-03-15-archview-int-blog-paragraph.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/2024-03-15-archview-int-blog-postinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/2024-03-15-archview-int-blog-postinfo.json -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/2024-03-15-archview-int-blog-problem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/2024-03-15-archview-int-blog-problem.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/2024-03-15-archview-int-blog-question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/2024-03-15-archview-int-blog-question.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/2024-07-20-devopsdays-keynote-abstract.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/2024-07-20-devopsdays-keynote-abstract.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/2024-07-20-devopsdays-keynote-paragraph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/2024-07-20-devopsdays-keynote-paragraph.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/2024-07-20-devopsdays-keynote-postinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/2024-07-20-devopsdays-keynote-postinfo.json -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/2024-07-20-devopsdays-keynote-problem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/2024-07-20-devopsdays-keynote-problem.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/2024-07-20-devopsdays-keynote-question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/2024-07-20-devopsdays-keynote-question.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/2024-11-11-working-with-wsl-abstract.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/2024-11-11-working-with-wsl-abstract.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/2024-11-11-working-with-wsl-paragraph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/2024-11-11-working-with-wsl-paragraph.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/2024-11-11-working-with-wsl-postinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/2024-11-11-working-with-wsl-postinfo.json -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/2024-11-11-working-with-wsl-problem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/2024-11-11-working-with-wsl-problem.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/2024-11-11-working-with-wsl-question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/2024-11-11-working-with-wsl-question.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/chat-gpt/_2024-01-15-archview-llm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/chat-gpt/_2024-01-15-archview-llm.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/chat-gpt/_2024-02-10-archview-int-app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/chat-gpt/_2024-02-10-archview-int-app.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/chat-gpt/_2024-03-15-archview-int-blog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/chat-gpt/_2024-03-15-archview-int-blog.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/chat-gpt/_2024-07-20-devopsdays-keynote.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/chat-gpt/_2024-07-20-devopsdays-keynote.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/chat-gpt/_2024-11-11-working-with-wsl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/chat-gpt/_2024-11-11-working-with-wsl.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o-mini/2024-01-15-archview-llm-abstract.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o-mini/2024-01-15-archview-llm-abstract.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o-mini/2024-01-15-archview-llm-paragraph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o-mini/2024-01-15-archview-llm-paragraph.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o-mini/2024-01-15-archview-llm-postinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o-mini/2024-01-15-archview-llm-postinfo.json -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o-mini/2024-01-15-archview-llm-problem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o-mini/2024-01-15-archview-llm-problem.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o-mini/2024-01-15-archview-llm-question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o-mini/2024-01-15-archview-llm-question.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o-mini/2024-02-10-archview-int-app-abstract.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o-mini/2024-02-10-archview-int-app-abstract.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o-mini/2024-02-10-archview-int-app-paragraph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o-mini/2024-02-10-archview-int-app-paragraph.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o-mini/2024-02-10-archview-int-app-postinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o-mini/2024-02-10-archview-int-app-postinfo.json -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o-mini/2024-02-10-archview-int-app-problem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o-mini/2024-02-10-archview-int-app-problem.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o-mini/2024-02-10-archview-int-app-question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o-mini/2024-02-10-archview-int-app-question.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o-mini/2024-03-15-archview-int-blog-abstract.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o-mini/2024-03-15-archview-int-blog-abstract.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o-mini/2024-03-15-archview-int-blog-paragraph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o-mini/2024-03-15-archview-int-blog-paragraph.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o-mini/2024-03-15-archview-int-blog-postinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o-mini/2024-03-15-archview-int-blog-postinfo.json -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o-mini/2024-03-15-archview-int-blog-problem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o-mini/2024-03-15-archview-int-blog-problem.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o-mini/2024-03-15-archview-int-blog-question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o-mini/2024-03-15-archview-int-blog-question.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o-mini/2024-07-20-devopsdays-keynote-abstract.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o-mini/2024-07-20-devopsdays-keynote-abstract.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o-mini/2024-07-20-devopsdays-keynote-paragraph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o-mini/2024-07-20-devopsdays-keynote-paragraph.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o-mini/2024-07-20-devopsdays-keynote-postinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o-mini/2024-07-20-devopsdays-keynote-postinfo.json -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o-mini/2024-07-20-devopsdays-keynote-problem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o-mini/2024-07-20-devopsdays-keynote-problem.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o-mini/2024-07-20-devopsdays-keynote-question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o-mini/2024-07-20-devopsdays-keynote-question.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o-mini/2024-11-11-working-with-wsl-abstract.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o-mini/2024-11-11-working-with-wsl-abstract.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o-mini/2024-11-11-working-with-wsl-paragraph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o-mini/2024-11-11-working-with-wsl-paragraph.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o-mini/2024-11-11-working-with-wsl-postinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o-mini/2024-11-11-working-with-wsl-postinfo.json -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o-mini/2024-11-11-working-with-wsl-problem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o-mini/2024-11-11-working-with-wsl-problem.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o-mini/2024-11-11-working-with-wsl-question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o-mini/2024-11-11-working-with-wsl-question.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o/2024-01-15-archview-llm-abstract.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o/2024-01-15-archview-llm-abstract.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o/2024-01-15-archview-llm-paragraph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o/2024-01-15-archview-llm-paragraph.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o/2024-01-15-archview-llm-postinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o/2024-01-15-archview-llm-postinfo.json -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o/2024-01-15-archview-llm-problem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o/2024-01-15-archview-llm-problem.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o/2024-01-15-archview-llm-question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o/2024-01-15-archview-llm-question.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o/2024-02-10-archview-int-app-abstract.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o/2024-02-10-archview-int-app-abstract.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o/2024-02-10-archview-int-app-paragraph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o/2024-02-10-archview-int-app-paragraph.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o/2024-02-10-archview-int-app-postinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o/2024-02-10-archview-int-app-postinfo.json -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o/2024-02-10-archview-int-app-problem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o/2024-02-10-archview-int-app-problem.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o/2024-02-10-archview-int-app-question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o/2024-02-10-archview-int-app-question.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o/2024-03-15-archview-int-blog-abstract.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o/2024-03-15-archview-int-blog-abstract.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o/2024-03-15-archview-int-blog-paragraph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o/2024-03-15-archview-int-blog-paragraph.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o/2024-03-15-archview-int-blog-postinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o/2024-03-15-archview-int-blog-postinfo.json -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o/2024-03-15-archview-int-blog-problem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o/2024-03-15-archview-int-blog-problem.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o/2024-03-15-archview-int-blog-question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o/2024-03-15-archview-int-blog-question.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o/2024-07-20-devopsdays-keynote-abstract.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o/2024-07-20-devopsdays-keynote-abstract.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o/2024-07-20-devopsdays-keynote-paragraph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o/2024-07-20-devopsdays-keynote-paragraph.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o/2024-07-20-devopsdays-keynote-postinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o/2024-07-20-devopsdays-keynote-postinfo.json -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o/2024-07-20-devopsdays-keynote-problem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o/2024-07-20-devopsdays-keynote-problem.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o/2024-07-20-devopsdays-keynote-question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o/2024-07-20-devopsdays-keynote-question.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o/2024-11-11-working-with-wsl-abstract.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o/2024-11-11-working-with-wsl-abstract.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o/2024-11-11-working-with-wsl-paragraph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o/2024-11-11-working-with-wsl-paragraph.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o/2024-11-11-working-with-wsl-postinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o/2024-11-11-working-with-wsl-postinfo.json -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o/2024-11-11-working-with-wsl-problem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o/2024-11-11-working-with-wsl-problem.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o/2024-11-11-working-with-wsl-question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/gpt-4o/2024-11-11-working-with-wsl-question.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o1/2024-01-15-archview-llm-abstract.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o1/2024-01-15-archview-llm-abstract.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o1/2024-01-15-archview-llm-paragraph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o1/2024-01-15-archview-llm-paragraph.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o1/2024-01-15-archview-llm-postinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o1/2024-01-15-archview-llm-postinfo.json -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o1/2024-01-15-archview-llm-problem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o1/2024-01-15-archview-llm-problem.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o1/2024-01-15-archview-llm-question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o1/2024-01-15-archview-llm-question.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o1/2024-02-10-archview-int-app-abstract.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o1/2024-02-10-archview-int-app-abstract.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o1/2024-02-10-archview-int-app-paragraph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o1/2024-02-10-archview-int-app-paragraph.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o1/2024-02-10-archview-int-app-postinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o1/2024-02-10-archview-int-app-postinfo.json -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o1/2024-02-10-archview-int-app-problem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o1/2024-02-10-archview-int-app-problem.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o1/2024-02-10-archview-int-app-question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o1/2024-02-10-archview-int-app-question.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o1/2024-03-15-archview-int-blog-abstract.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o1/2024-03-15-archview-int-blog-abstract.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o1/2024-03-15-archview-int-blog-paragraph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o1/2024-03-15-archview-int-blog-paragraph.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o1/2024-03-15-archview-int-blog-postinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o1/2024-03-15-archview-int-blog-postinfo.json -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o1/2024-03-15-archview-int-blog-problem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o1/2024-03-15-archview-int-blog-problem.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o1/2024-03-15-archview-int-blog-question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o1/2024-03-15-archview-int-blog-question.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o1/2024-07-20-devopsdays-keynote-abstract.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o1/2024-07-20-devopsdays-keynote-abstract.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o1/2024-07-20-devopsdays-keynote-paragraph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o1/2024-07-20-devopsdays-keynote-paragraph.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o1/2024-07-20-devopsdays-keynote-postinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o1/2024-07-20-devopsdays-keynote-postinfo.json -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o1/2024-07-20-devopsdays-keynote-problem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o1/2024-07-20-devopsdays-keynote-problem.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o1/2024-07-20-devopsdays-keynote-question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o1/2024-07-20-devopsdays-keynote-question.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o1/2024-11-11-working-with-wsl-abstract.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o1/2024-11-11-working-with-wsl-abstract.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o1/2024-11-11-working-with-wsl-paragraph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o1/2024-11-11-working-with-wsl-paragraph.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o1/2024-11-11-working-with-wsl-postinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o1/2024-11-11-working-with-wsl-postinfo.json -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o1/2024-11-11-working-with-wsl-problem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o1/2024-11-11-working-with-wsl-problem.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o1/2024-11-11-working-with-wsl-question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o1/2024-11-11-working-with-wsl-question.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o3/2024-01-15-archview-llm-abstract.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o3/2024-01-15-archview-llm-abstract.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o3/2024-01-15-archview-llm-paragraph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o3/2024-01-15-archview-llm-paragraph.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o3/2024-01-15-archview-llm-postinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o3/2024-01-15-archview-llm-postinfo.json -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o3/2024-01-15-archview-llm-problem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o3/2024-01-15-archview-llm-problem.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o3/2024-01-15-archview-llm-question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o3/2024-01-15-archview-llm-question.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o3/2024-02-10-archview-int-app-abstract.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o3/2024-02-10-archview-int-app-abstract.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o3/2024-02-10-archview-int-app-paragraph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o3/2024-02-10-archview-int-app-paragraph.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o3/2024-02-10-archview-int-app-postinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o3/2024-02-10-archview-int-app-postinfo.json -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o3/2024-02-10-archview-int-app-problem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o3/2024-02-10-archview-int-app-problem.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o3/2024-02-10-archview-int-app-question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o3/2024-02-10-archview-int-app-question.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o3/2024-03-15-archview-int-blog-abstract.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o3/2024-03-15-archview-int-blog-abstract.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o3/2024-03-15-archview-int-blog-paragraph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o3/2024-03-15-archview-int-blog-paragraph.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o3/2024-03-15-archview-int-blog-postinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o3/2024-03-15-archview-int-blog-postinfo.json -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o3/2024-03-15-archview-int-blog-problem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o3/2024-03-15-archview-int-blog-problem.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o3/2024-03-15-archview-int-blog-question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o3/2024-03-15-archview-int-blog-question.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o3/2024-07-20-devopsdays-keynote-abstract.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o3/2024-07-20-devopsdays-keynote-abstract.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o3/2024-07-20-devopsdays-keynote-paragraph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o3/2024-07-20-devopsdays-keynote-paragraph.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o3/2024-07-20-devopsdays-keynote-postinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o3/2024-07-20-devopsdays-keynote-postinfo.json -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o3/2024-07-20-devopsdays-keynote-problem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o3/2024-07-20-devopsdays-keynote-problem.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o3/2024-07-20-devopsdays-keynote-question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o3/2024-07-20-devopsdays-keynote-question.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o3/2024-11-11-working-with-wsl-abstract.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o3/2024-11-11-working-with-wsl-abstract.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o3/2024-11-11-working-with-wsl-paragraph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o3/2024-11-11-working-with-wsl-paragraph.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o3/2024-11-11-working-with-wsl-postinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o3/2024-11-11-working-with-wsl-postinfo.json -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o3/2024-11-11-working-with-wsl-problem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o3/2024-11-11-working-with-wsl-problem.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o3/2024-11-11-working-with-wsl-question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/blogs/synthesis/o3/2024-11-11-working-with-wsl-question.md -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/http-client.env.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/http-client.env.json -------------------------------------------------------------------------------- /UseMicrosoft_KernelMemoryPlugin/mydocs-NASA-news.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_KernelMemoryPlugin/mydocs-NASA-news.pdf -------------------------------------------------------------------------------- /UseMicrosoft_SemanticKernel/HttpLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_SemanticKernel/HttpLogger.cs -------------------------------------------------------------------------------- /UseMicrosoft_SemanticKernel/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_SemanticKernel/Program.cs -------------------------------------------------------------------------------- /UseMicrosoft_SemanticKernel/Program_Demo02_ExtractAddress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_SemanticKernel/Program_Demo02_ExtractAddress.cs -------------------------------------------------------------------------------- /UseMicrosoft_SemanticKernel/Program_Demo03_ScheduleEventAssistant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_SemanticKernel/Program_Demo03_ScheduleEventAssistant.cs -------------------------------------------------------------------------------- /UseMicrosoft_SemanticKernel/Program_Example01_SimpleChat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_SemanticKernel/Program_Example01_SimpleChat.cs -------------------------------------------------------------------------------- /UseMicrosoft_SemanticKernel/Program_Example03_FunctionCalling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_SemanticKernel/Program_Example03_FunctionCalling.cs -------------------------------------------------------------------------------- /UseMicrosoft_SemanticKernel/Program_Example06_StructuredOutputs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_SemanticKernel/Program_Example06_StructuredOutputs.cs -------------------------------------------------------------------------------- /UseMicrosoft_SemanticKernel/UseMicrosoft_SemanticKernel.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseMicrosoft_SemanticKernel/UseMicrosoft_SemanticKernel.csproj -------------------------------------------------------------------------------- /UseOpenAI_SDK/Demo02_ExtractAddress.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseOpenAI_SDK/Demo02_ExtractAddress.http -------------------------------------------------------------------------------- /UseOpenAI_SDK/Demo03_ScheduleEventAssistant.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseOpenAI_SDK/Demo03_ScheduleEventAssistant.http -------------------------------------------------------------------------------- /UseOpenAI_SDK/Example01_SimpleChat.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseOpenAI_SDK/Example01_SimpleChat.http -------------------------------------------------------------------------------- /UseOpenAI_SDK/Example03_FunctionCalling.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseOpenAI_SDK/Example03_FunctionCalling.http -------------------------------------------------------------------------------- /UseOpenAI_SDK/Example06_StructuredOutputs.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseOpenAI_SDK/Example06_StructuredOutputs.http -------------------------------------------------------------------------------- /UseOpenAI_SDK/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseOpenAI_SDK/Program.cs -------------------------------------------------------------------------------- /UseOpenAI_SDK/Program_Demo02_ExtractAddress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseOpenAI_SDK/Program_Demo02_ExtractAddress.cs -------------------------------------------------------------------------------- /UseOpenAI_SDK/Program_Example01_SimpleChat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseOpenAI_SDK/Program_Example01_SimpleChat.cs -------------------------------------------------------------------------------- /UseOpenAI_SDK/Program_Example03_FunctionCalling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseOpenAI_SDK/Program_Example03_FunctionCalling.cs -------------------------------------------------------------------------------- /UseOpenAI_SDK/Program_Example06_StructuredOutputs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseOpenAI_SDK/Program_Example06_StructuredOutputs.cs -------------------------------------------------------------------------------- /UseOpenAI_SDK/UseOpenAI_SDK.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseOpenAI_SDK/UseOpenAI_SDK.csproj -------------------------------------------------------------------------------- /UseOpenAI_SDK/http-client.env.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/UseOpenAI_SDK/http-client.env.json -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /docs/NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/docs/NOTES.md -------------------------------------------------------------------------------- /docs/claude1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/docs/claude1.jpg -------------------------------------------------------------------------------- /docs/claude2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/docs/claude2.jpg -------------------------------------------------------------------------------- /docs/image-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/docs/image-0.png -------------------------------------------------------------------------------- /docs/image-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/docs/image-1.png -------------------------------------------------------------------------------- /docs/image-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/docs/image-2.png -------------------------------------------------------------------------------- /docs/image-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/docs/image-3.png -------------------------------------------------------------------------------- /docs/image-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/docs/image-4.png -------------------------------------------------------------------------------- /docs/image-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/docs/image-5.png -------------------------------------------------------------------------------- /docs/image-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/docs/image-6.png -------------------------------------------------------------------------------- /docs/image-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/docs/image-7.png -------------------------------------------------------------------------------- /docs/image-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/docs/image-8.png -------------------------------------------------------------------------------- /docs/image-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/docs/image-9.png -------------------------------------------------------------------------------- /docs/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew0928/AndrewDemo.DevAIAPPs/HEAD/docs/image.png --------------------------------------------------------------------------------