I had declared my first class as:
schema = {
"classes": [
{
"class": "wpArticle", # NB the first letter gets capitalized regardless of how you write it here
"description": "Contains the WP article text data along with embeddings",
"vectorizer": "none", # we will provide the embedding, not let Weaviate do it
"properties": [
{
"name": "slug",
"dataType": ["text"],
},
{
"name": "kicker",
"dataType": ["text"],
},
],
}
]
}
but the class was nevertheless created as WpArticle (first letter uppercased). Find it a bit offsetting. Is there a prescription to name classes only with a capital initial?
Thanks !