Skip to content

Commit 6955c44

Browse files
authored
Merge pull request #975 from jupyter-naas/claude/fix-feature-key-literal
fix(nexus): align outer FeatureKey literal with new flag set
2 parents bddbc83 + d1e0c46 commit 6955c44

1 file changed

Lines changed: 16 additions & 2 deletions

File tree

libs/naas-abi/naas_abi/__init__.py

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -169,13 +169,27 @@ class ExternalAppConfig(BaseModel):
169169
icon_emoji: str | None = None
170170

171171

172-
FeatureKey = Literal["chat", "files", "agents", "knowledge", "settings"]
172+
FeatureKey = Literal[
173+
"chat",
174+
"files",
175+
"agents",
176+
"apps",
177+
"marketplace",
178+
"search",
179+
"ontology",
180+
"graph",
181+
"settings",
182+
]
173183

174184
_ALL_FEATURES: list[FeatureKey] = [
175185
"chat",
176186
"files",
177187
"agents",
178-
"knowledge",
188+
"apps",
189+
"marketplace",
190+
"search",
191+
"ontology",
192+
"graph",
179193
"settings",
180194
]
181195

0 commit comments

Comments
 (0)