Skip to content

Commit fd286e2

Browse files
committed
Add icon and category_slugs to AppTemplate model
1 parent 02fb0e8 commit fd286e2

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

llmstack/apps/schemas.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
from typing import Any, Dict, List, Optional
2+
23
from pydantic import BaseModel, Field
34

45
"""
@@ -104,6 +105,9 @@ class AppTemplate(BaseModel):
104105
"""
105106
name: str = Field(None, description='Name of the app template')
106107
slug: str = Field(None, description='Unique slug for the app template')
108+
icon: str = Field(None, description='Icon for the app template')
109+
category_slugs: List[str] = Field(
110+
None, description='Slugs of the app template categories')
107111
description: str = Field(
108112
None, description='Description of the app template')
109113
pages: List[AppTemplatePage] = Field(

0 commit comments

Comments
 (0)