- Easy container-setup - no longer have to fiddle around with Docker!
- Easy service connections
- Orchestrate, organize, and monitor all of your software components & services in one place
- Retreive your OpenAI credentials key and endpoint from the OpenAI platform.
- Fill-in your OpenAI credentials in the
IronPdf.Aspire.AI.AppHost/appsettings.json
file under theAzureOpenAI
section:
{
"AzureOpenAI": {
"Endpoint": "https://your-azure-endpoint/",
"ApiKey": "your-api-key"
}
}
- Retrieve a valid IronPDF license key.
- Fill-in your
ironsoftwareofficial/ironpdfengine
version and IronPdf license key in theIronPdf.Aspire.AI.AppHost/appsettings.json
file under theIronPdf
section:
{
"IronPdf": {
"EngineVersion": "your-ironpdf-engine-version",
"LicenseKey": "your-license-key"
}
}
Note: To find the ironsoftwareofficial/ironpdfengine
version, follow this link.
- Ensure you have the correct
chromadb/chroma
version specified in theIronPdf.Aspire.AI.AppHost/appsettings.json
file under theChroma
section:
{
"Chroma": {
"ChromaVersion": "your-chroma-version"
}
}
Note: To find the chromadb/chroma
version, follow this link.
You may use Docker for desktop to ensure your chrome DB and IronPdfEngine are up-and-running properly.
Enjoy!