We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 867b61c commit 6fdf4aaCopy full SHA for 6fdf4aa
pkg/entities/manifest_entities/tags.go
@@ -24,6 +24,7 @@ const (
24
PLUGIN_TAG_ENTERTAINMENT PluginTag = "entertainment"
25
PLUGIN_TAG_UTILITIES PluginTag = "utilities"
26
PLUGIN_TAG_AGENT PluginTag = "agent"
27
+ PLUGIN_TAG_RAG PluginTag = "rag"
28
PLUGIN_TAG_OTHER PluginTag = "other"
29
)
30
@@ -46,7 +47,8 @@ func isPluginTag(fl validator.FieldLevel) bool {
46
47
string(PLUGIN_TAG_ENTERTAINMENT),
48
string(PLUGIN_TAG_UTILITIES),
49
string(PLUGIN_TAG_OTHER),
- string(PLUGIN_TAG_AGENT):
50
+ string(PLUGIN_TAG_AGENT),
51
+ string(PLUGIN_TAG_RAG):
52
return true
53
}
54
return false
0 commit comments