├── .gitignore ├── .vs └── SkSemanticSearch │ └── xs │ ├── UserPrefs.xml │ └── project-cache │ └── SkSemanticSearch-Debug.json ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── README.md ├── SkSemanticSearch.sln └── src └── SkSemanticSearch ├── Program.cs ├── SkSemanticSearch.csproj ├── index.db └── plugins └── qa └── answer ├── config.json └── skprompt.txt /.gitignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | obj/ 3 | .idea/ 4 | .DS_Store 5 | appsettings.json 6 | -------------------------------------------------------------------------------- /.vs/SkSemanticSearch/xs/UserPrefs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture-labs/semantic-kernel-semanticsearch/HEAD/.vs/SkSemanticSearch/xs/UserPrefs.xml -------------------------------------------------------------------------------- /.vs/SkSemanticSearch/xs/project-cache/SkSemanticSearch-Debug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture-labs/semantic-kernel-semanticsearch/HEAD/.vs/SkSemanticSearch/xs/project-cache/SkSemanticSearch-Debug.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture-labs/semantic-kernel-semanticsearch/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "dotnet.defaultSolution": "SkSemanticSearch.sln" 3 | } -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture-labs/semantic-kernel-semanticsearch/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture-labs/semantic-kernel-semanticsearch/HEAD/README.md -------------------------------------------------------------------------------- /SkSemanticSearch.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture-labs/semantic-kernel-semanticsearch/HEAD/SkSemanticSearch.sln -------------------------------------------------------------------------------- /src/SkSemanticSearch/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture-labs/semantic-kernel-semanticsearch/HEAD/src/SkSemanticSearch/Program.cs -------------------------------------------------------------------------------- /src/SkSemanticSearch/SkSemanticSearch.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture-labs/semantic-kernel-semanticsearch/HEAD/src/SkSemanticSearch/SkSemanticSearch.csproj -------------------------------------------------------------------------------- /src/SkSemanticSearch/index.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture-labs/semantic-kernel-semanticsearch/HEAD/src/SkSemanticSearch/index.db -------------------------------------------------------------------------------- /src/SkSemanticSearch/plugins/qa/answer/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture-labs/semantic-kernel-semanticsearch/HEAD/src/SkSemanticSearch/plugins/qa/answer/config.json -------------------------------------------------------------------------------- /src/SkSemanticSearch/plugins/qa/answer/skprompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture-labs/semantic-kernel-semanticsearch/HEAD/src/SkSemanticSearch/plugins/qa/answer/skprompt.txt --------------------------------------------------------------------------------