Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,11 @@ const useStyles = makeStyles({
...shorthands.padding("0px", "0px"),
rowGap: "20px",
},

aiKnowledgeTab:{
height:"calc(100vh - 150px) !important",
overflow:"auto"
}
});

interface DocDialogProps {
Expand Down Expand Up @@ -284,14 +289,17 @@ export function DocDialog(
)}

{selectedTab === "AI Knowledge" && (
<div className={`flex h-[150%] w-[200%] justify-between ${styles.aiKnowledgeTab}`}>
<AIKnowledgeTab
metadata={metadata?.keywords ? Object.fromEntries(
Object.entries(metadata.keywords).map(([key, value]) => [
key,
Array.isArray(value) ? value : [value] // Ensure all values are arrays
])
) : {}}

/>
</div>
)}


Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ Quick deploy

### Prerequisites

To use this solution accelerator, you will need access to an [Azure subscription](https://azure.microsoft.com/free/) with permission to create resource groups and resources. While not required, a prior understanding of Azure OpenAI, Azure AI Search, Azure AI Document Intelligence, Azure App Service, Azure Kubernetes Service, Azure Container Registry, Azure Blog Storage, Azure Queue Storage, and Azure Cosmos DB will be helpful.
To use this solution accelerator, you will need access to an [Azure subscription](https://azure.microsoft.com/free/) with permission to create resource groups and resources. While not required, a prior understanding of Azure OpenAI, Azure AI Search, Azure AI Document Intelligence, Azure App Service, Azure Kubernetes Service, Azure Container Registry, Azure Blob Storage, Azure Queue Storage, and Azure Cosmos DB will be helpful.

For additional training and support, please see:

Expand Down Expand Up @@ -129,7 +129,7 @@ Customer stories coming soon.
Responsible AI Transparency FAQ
</h2>

Please refer to [Transarency FAQ](./TRANSPARENCY_FAQ.md) for responsible AI transparency details of this solution accelerator.
Please refer to [Transparency FAQ](./TRANSPARENCY_FAQ.md) for responsible AI transparency details of this solution accelerator.

<br/>

Expand Down