{"record":{"id":"4f35c3a3ae655e0c","repo":"mem0ai/mem0","slug":"extra-fields-not-allowed-please-input-only-th","errorCode":null,"errorMessage":"Extra fields not allowed: {}. Please input only the following fields: {}","messagePattern":"Extra fields not allowed: (.+?)\\. Please input only the following fields: (.+?)","errorType":"validation","errorClass":"ValueError","httpStatus":null,"severity":"error","filePath":"mem0/configs/vector_stores/oracledb.py","lineNumber":110,"sourceCode":"                exclude_none=True,\n            )\n\n        if self.index_accuracy is not None:\n            if not (0 < self.index_accuracy <= 100):\n                raise ValueError(\"`index_accuracy` must be between 1 and 100\")\n\n        if not (0 < self.embedding_model_dims):\n            raise ValueError(\"`embedding_model_dims` must be bigger than 0\")\n\n        return self\n\n    @model_validator(mode=\"before\")\n    @classmethod\n    def validate_extra_fields(cls, values: Dict[str, Any]) -> Dict[str, Any]:\n        allowed_fields = set(cls.model_fields.keys())\n        extra_fields = set(values.keys()) - allowed_fields\n        if extra_fields:\n            raise ValueError(\n                \"Extra fields not allowed: {}. Please input only the following fields: {}\".format(\n                    \", \".join(sorted(extra_fields)), \", \".join(sorted(allowed_fields))\n                )\n            )\n        return values\n","sourceCodeStart":92,"sourceCodeEnd":116,"githubUrl":"https://github.com/mem0ai/mem0/blob/001c235229be8795e3834520467bd0d661ed8f34/mem0/configs/vector_stores/oracledb.py#L92-L116","documentation":"Error \"Extra fields not allowed: {}. Please input only the following fields: {}\" thrown in mem0ai/mem0.","triggerScenarios":"Thrown at mem0/configs/vector_stores/oracledb.py:110 when the library encounters an invalid state.","commonSituations":"See trigger scenarios.","solutions":["Remove the extra config fields listed and keep only the allowed OracleDB fields."],"exampleFix":null,"handlingStrategy":null,"validationCode":null,"typeGuard":null,"tryCatchPattern":null,"preventionTips":[],"tags":[],"backgroundTag":null,"analyzedSha":"001c235229be8795e3834520467bd0d661ed8f34","analyzedAt":"2026-08-15T01:55:42.685Z","schemaVersion":2},"datasetVersion":"2026-08-15T22:17:37.221Z"}