# ChemBuilder Errors

This page outlines several error messages that users may encounter when utilizing Chemistry Builder. The following errors occur specifically when the thermodynamic framework value is misspelled:

```json
{
    "data": {
        "error": {
            "error": {
                "messages": [
                    {
                        "code": 0,
                        "functionName": "oli_process_api::ChemistryBuilderAPI::setChemModel::<lambda_76b84038b7c916aae3a6b0c08ba8103d>::operator ()",
                        "message": [
                            "The input name of thermodynamic framework 'Aueous (H+ ion)' is not supported; Please enter a valid name of supported thermodynamic frameworks"
                        ],
                        "messageType": "error",
                        "objectType": "ChemistryBuilderAPI"
                    },
                    {
                        "code": 0,
                        "functionName": "oli_process_api::ChemistryBuilderAPI::initialize::<lambda_3f42c0f8e472529a61e2551c61fd79a7>::()::<lambda_280f20c46ba155cc50138f64d484b31a>::operator ()",
                        "message": [
                            "Fail to create the chemistry model; Query species exits"
                        ],
                        "messageType": "error",
                        "objectType": "ChemistryBuilderAPI"
                    }
                ]
            }
        },
        "metaData": {
            "executionTime": {
                "unit": "ms",
                "value": 1.0
            }
        }
    },
    "message": "Chemistry could not be generated",
    "status": "FAILED"
}
```

### JSON Format Errors

Users may occasionally encounter issues with formatting JSON input files, as illustrated in the following example:

```json
{ 
    "name": "H2O" // A comma is missing following the input 
    "enabled": false 
} 
```

Missing commas or parentheses in the JSON input file can lead to the following error:

```json
"Errors in parsing input JSON file; Check the format and argument of every keyword in the JSON file"
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://devdocs.olisystems.com/chemistry-model-files/chembuilder-api/supporting-information-for-chembuilder/chembuilder-errors.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
