Currently it uses a ContainerResource but it should be possible to use Aspire.Hosting.Qdrant.
On the consuming side it would be ideal if we could use Aspire.Qdrant.Client, but that would at least require writing an adapter since it won't implement SK's IQdrantVectorDbClient.
Another option on the consuming side is to use the HTTP endpoint directly with the SK client, though you'll have to deal with auth. The key is provided by the AppHost in an environment variable.
Currently it uses a
ContainerResource
but it should be possible to useAspire.Hosting.Qdrant
.On the consuming side it would be ideal if we could use
Aspire.Qdrant.Client
, but that would at least require writing an adapter since it won't implement SK'sIQdrantVectorDbClient
.Another option on the consuming side is to use the HTTP endpoint directly with the SK client, though you'll have to deal with auth. The key is provided by the AppHost in an environment variable.