Skip to content

Commit

Permalink
tracking changes
Browse files Browse the repository at this point in the history
  • Loading branch information
jschluchter committed May 1, 2024
1 parent d4ea3a1 commit 16c4505
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 8 deletions.
2 changes: 1 addition & 1 deletion TSA-API/tsaWaitTime/wwwroot/.well-known/ai-plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
"logo_url": "http://localhost:5088/.well-known/tsalogo.png",
"contact_email": "[email protected]",
"legal_info_url": "http://www.example.com/legal"
}
}
29 changes: 22 additions & 7 deletions webapi/appsettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,20 @@
// - Key is the key used to access the plugin if it requires authentication.
"Plugins": [
// Klarna Shopping does not require authentication.
// {
// "Name": "Klarna Shopping",
// "ManifestDomain": "https://www.klarna.com"
// // "Key": ""
// },
{
"Name": "Klarna Shopping",
"ManifestDomain": "https://www.klarna.com"
// "Key": ""
}
"Name": "TSA Wait times",
"ManifestDomain": "http://localhost:5088"
},
// {
// "Name": "Miyagi calculator",
// "ManifestDomain": "https://ai-demos.azure-api.net"
// // "Key": ""
// }
],
//
// Optional Azure Speech service configuration for providing Azure Speech access tokens.
Expand Down Expand Up @@ -152,6 +161,8 @@
"AllowedOrigins": [
"http://localhost:3000",
"https://localhost:3000",
"http://localhost:5000",
"https://localhost:5000",
"http://localhost:5088",
"https://localhost:5088"
],
Expand Down Expand Up @@ -183,9 +194,13 @@
"QueueType": "SimpleQueues"
},
// Multiple generators can be used, e.g. for data migration, A/B testing, etc.
"EmbeddingGeneratorTypes": ["AzureOpenAIEmbedding"],
"EmbeddingGeneratorTypes": [
"AzureOpenAIEmbedding"
],
// Vectors can be written to multiple storages, e.g. for data migration, A/B testing, etc.
"MemoryDbTypes": ["SimpleVectorDb"],
"MemoryDbTypes": [
"SimpleVectorDb"
],
// ImageOcrType is the image OCR configuration: "None", "AzureFormRecognizer" or "Tesseract"
"ImageOcrType": "None"
},
Expand Down Expand Up @@ -398,4 +413,4 @@
// (i.e. dotnet user-secrets set "APPLICATIONINSIGHTS_CONNECTION_STRING" "MY_APPINS_CONNSTRING")
//
"APPLICATIONINSIGHTS_CONNECTION_STRING": null
}
}

0 comments on commit 16c4505

Please sign in to comment.