├── .devcontainer └── devcontainer.json ├── .gitignore ├── LICENSE ├── RAG=DeepSeek-R1-Ollama.sln ├── README.md └── src ├── Program.cs ├── RAG=DeepSeek-R1-Ollama.csproj └── SpectreConsoleOutput.cs /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbruno/deepseek-rag-ollama/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbruno/deepseek-rag-ollama/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbruno/deepseek-rag-ollama/HEAD/LICENSE -------------------------------------------------------------------------------- /RAG=DeepSeek-R1-Ollama.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbruno/deepseek-rag-ollama/HEAD/RAG=DeepSeek-R1-Ollama.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbruno/deepseek-rag-ollama/HEAD/README.md -------------------------------------------------------------------------------- /src/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbruno/deepseek-rag-ollama/HEAD/src/Program.cs -------------------------------------------------------------------------------- /src/RAG=DeepSeek-R1-Ollama.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbruno/deepseek-rag-ollama/HEAD/src/RAG=DeepSeek-R1-Ollama.csproj -------------------------------------------------------------------------------- /src/SpectreConsoleOutput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elbruno/deepseek-rag-ollama/HEAD/src/SpectreConsoleOutput.cs --------------------------------------------------------------------------------