diff --git a/website/src/data/tags.tsx b/website/src/data/tags.tsx index 26997936..c14af8f0 100644 --- a/website/src/data/tags.tsx +++ b/website/src/data/tags.tsx @@ -114,7 +114,8 @@ export type TagType = | "logicapps" | "msal" | "pinecone" - | "nextjs"; + | "nextjs" + | "speechservice"; // LIST OF AVAILABLE TAGS // Each tag in lit about must have a defined object here @@ -517,6 +518,13 @@ export const Tags: { [type in TagType]: Tag } = { url: "https://azure.microsoft.com/solutions/ai", type: "Service", }, + speechservice: { + label: "Azure Speech Services", + description: "Template architecture uses Azure AI Speech Services", + azureIcon: "./img/Azure-Speech-Services.svg", + url: "https://azure.microsoft.com/en-us/products/ai-services/ai-speech", + type: "Service", + }, apim: { label: "Azure API Management", description: "Template architecture uses Azure API Management", diff --git a/website/static/img/Azure-Speech-Services.svg b/website/static/img/Azure-Speech-Services.svg new file mode 100644 index 00000000..5b3b7bff --- /dev/null +++ b/website/static/img/Azure-Speech-Services.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/website/static/templates.json b/website/static/templates.json index 6a9297d0..ca9ecb5c 100644 --- a/website/static/templates.json +++ b/website/static/templates.json @@ -615,7 +615,8 @@ "popular", "blobstorage", "appservice", - "build2024" + "build2024", + "speechservice" ] }, { @@ -1714,7 +1715,8 @@ "openai", "aca", "bicep", - "ai" + "ai", + "speechservice" ] }, { @@ -1835,9 +1837,9 @@ }, { "title": "GPT Video Analysis-In-A-Box", - "description": "This solution is part of the the AI-in-a-Box framework developed by the team of Microsoft Customer Engineers and Architects to accelerate the deployment of AI and ML solutions. Our goal is to simplify the adoption of AI technologies by providing ready-to-use accelerators that ensure quality, efficiency, and rapid deployment.", - "preview": "./templates/images/contoso-chat-architecture-diagram.png", - "website": "https://github.com/Azure-Samples/gpt-video-analysis-in-a-box", + "description": "The GPT Video Analysis in-a-Box project leverages Azure OpenAI GPT-4 Turbo with Vision and Azure Data Factory to provide a low-code solution for analyzing images and videos, making AI adoption simpler and more efficient. This solution, part of the AI-in-a-Box framework by Microsoft Customer Engineers and Architects, ensures quality, efficiency, and rapid deployment of AI and ML solutions across various industries.", + "preview": "./templates/images/gpt4-adf-architecture.jpg", + "website": "https://github.com/Azure/AI-in-a-box", "author": "AI-in-a-Box Team", "source": "https://github.com/Azure-Samples/gpt-video-analysis-in-a-box", "tags": [ @@ -1962,5 +1964,27 @@ "aca", "new" ] + }, + { + "title": "NLP to SQL In-A-Box", + "description": "NLP-SQL-in-a-Box is part of Microsoft's AI-in-a-Box framework, designed to simplify the deployment of AI and ML solutions. This project enables users to interact with SQL databases using natural language and speech, leveraging Azure OpenAI, Semantic Kernel, and Azure AI Speech Service to translate spoken queries into SQL statements, execute them, and deliver results audibly, ensuring an intuitive and user-friendly experience.", + "preview": "./templates/images/nlp_to_sql_architecture.png", + "website": "https://github.com/Azure/AI-in-a-box", + "author": "AI-in-a-Box Team", + "source": "https://github.com/Azure-Samples/nlp-sql-in-a-box", + "tags": [ + "msft", + "openai", + "gpt", + "bicep", + "ai", + "python", + "azuresql", + "speechservice", + "azureai", + "managedidentity", + "semantickernel", + "new" + ] } ] diff --git a/website/static/templates/images/nlp_to_sql_architecture.png b/website/static/templates/images/nlp_to_sql_architecture.png new file mode 100644 index 00000000..af72a821 Binary files /dev/null and b/website/static/templates/images/nlp_to_sql_architecture.png differ