Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
f1bf561
Update chat template dependencies
MackinnonBuck Apr 10, 2025
0cf84cd
Update test snapshots
MackinnonBuck Apr 10, 2025
2760c6a
Update Aspire version
MackinnonBuck Apr 10, 2025
c237e98
Revert Aspire + update CommunityToolkit.Aspire
MackinnonBuck Apr 11, 2025
7e8e3c8
Merge branch 'main' into mbuck/template-version-update
MackinnonBuck Apr 11, 2025
4c0cbec
Open README in VS after project creation
MackinnonBuck Apr 11, 2025
61fc8fe
Add Known Issue to Aspire README for Qdrant
jeffhandley Apr 14, 2025
814292e
Update survey template URL
jeffhandley Apr 14, 2025
ce20e62
Set the Project Template package version to -preview.2
jeffhandley Apr 14, 2025
5dc64a1
Update template baseline
jeffhandley Apr 14, 2025
6e54257
Update template pinned versions
jozkee Apr 15, 2025
fa2f5d7
Do not append template args to snapshot names
jeffhandley Apr 15, 2025
246d017
Fix vector store index in the README. Add an AzureAISearch template t…
jeffhandley Apr 15, 2025
146d47a
Add a note to the Aspire README for trusting the development certificate
jeffhandley Apr 15, 2025
095b5bd
Use AddOpenAIClient for OpenAI and AddAzureOpenAIClient for Azure OpenAI
jeffhandley Apr 15, 2025
e8fb578
Remove duplicated using System.ClientModel
jozkee Apr 15, 2025
28e9922
Update Aspire README to specify the exception thrown for the known issue
jeffhandley Apr 16, 2025
f17d83b
Augment the Aspire README for more Docker notes for Ollama and Qdrant
jeffhandley Apr 16, 2025
65db551
Fix Microsoft.Extensions.Http.Resilience warnings with separate pinne…
jeffhandley Apr 16, 2025
c301be0
Merge branch 'mbuck/template-version-update' of https://github.com/do…
jeffhandley Apr 16, 2025
abf2b41
Merge branch 'main' into mbuck/template-version-update
jeffhandley Apr 16, 2025
5e8ae22
Update test baseline for: Rename EmbeddingGeneratorExtensions.Generat…
jeffhandley Apr 16, 2025
bb0e614
Add --managed-identity to the template developer README
jeffhandley Apr 16, 2025
790b784
Merge branch 'main' into mbuck/template-version-update
jeffhandley Apr 16, 2025
4b6e9d7
Apply the Ollama timeout recommendation in the template code
jeffhandley Apr 16, 2025
73ca9d7
Call http.RemoveAllResilienceHandlers before adding the handler
jeffhandley Apr 16, 2025
333faa0
Update template test baseline
jeffhandley Apr 16, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Augment the Aspire README for more Docker notes for Ollama and Qdrant
  • Loading branch information
jeffhandley committed Apr 16, 2025
commit f17d83b79001a4aa558804987a1cfd4094e56906
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,9 @@ dotnet user-secrets set ConnectionStrings:openai "Key=YOUR-API-KEY"
#### ---#endif
#### ---#if (IsOllama)
## Setting up a local environment for Ollama
This project is configured to run Ollama in a Docker container.
This project is configured to run Ollama in a Docker container. Docker Desktop must be installed and running for the project to run successfully. An Ollama container will automatically start when running the application.

To get started, download, install, and run Docker Desktop from the [official website](https://www.docker.com/). Follow the installation instructions specific to your operating system.
Download, install, and run Docker Desktop from the [official website](https://www.docker.com/). Follow the installation instructions specific to your operating system.

Note: Ollama and Docker are excellent open source products, but are not maintained by Microsoft.
#### ---#endif
Expand Down Expand Up @@ -153,6 +153,15 @@ Note that if you previously used the same Azure AI Search resource with differen

Make sure to replace `YOUR-DEPLOYMENT-NAME` and `YOUR-API-KEY` with your actual Azure AI Search deployment name and key.
#### ---#endif
#### ---#if (UseQdrant)

## Setting up a local environment for Qdrant
This project is configured to run Qdrant in a Docker container. Docker Desktop must be installed and running for the project to run successfully. A Qdrant container will automatically start when running the application.

Download, install, and run Docker Desktop from the [official website](https://www.docker.com/). Follow the installation instructions specific to your operating system.

Note: Qdrant and Docker are excellent open source products, but are not maintained by Microsoft.
#### ---#endif

# Running the application

Expand Down