Skip to content

Commit b8e566f

Browse files
authored
support duplicated tag (#3380)
* fix: support duplicate tags Signed-off-by: Philippe Martin <[email protected]> * fix: use llama-stack tag for framework Signed-off-by: Philippe Martin <[email protected]>
1 parent 8e6c393 commit b8e566f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/backend/src/assets/ai.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@
285285
"readme": "# Chat Application\n\n This recipe helps developers start building their own custom LLM enabled chat applications.\n\n There are a few options today for local Model Serving, but this recipe will use [`Llama Stack`](https://llama-stack.readthedocs.io/en/latest/).\n\n The AI Application will connect to the Model Service via its API. The recipe relies on [Llama Stack Client Python SDK](https://github.com/meta-llama/llama-stack-client-python) to simplify communication with the Model Service and uses [Streamlit](https://streamlit.io/) for the UI layer. \n\n## Try the Chat Application\n\nThe [Podman Desktop](https://podman-desktop.io) [AI Lab Extension](https://github.com/containers/podman-desktop-extension-ai-lab) includes this recipe among others. To try it out, open `Recipes Catalog` -> `Chatbot using Llama Stack` and follow the instructions to start the application.\n",
286286
"backend": "llama-stack",
287287
"languages": ["python"],
288-
"frameworks": ["streamlit", "llama-stack-sdk"]
288+
"frameworks": ["streamlit", "llama-stack"]
289289
}
290290
],
291291
"models": [

packages/frontend/src/lib/RecipeCardTags.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ function toggleExpanded(): void {
117117
class="w-full flex flex-row gap-2 py-2"
118118
class:overflow-hidden={!expanded}
119119
class:flex-wrap={expanded}>
120-
{#each TAGS as tag, i (tag)}
120+
{#each TAGS as tag, i (i)}
121121
<div bind:this={divTags[i]}>
122122
<Badge class="{getBGColor(tag)} {getTextColor(tag)}" content={updateContent(tag)} />
123123
</div>

0 commit comments

Comments
 (0)