# Code boilerplates to specify multiple variables in a model

!> This page describes the **Machine Learning Manager**, a service of the ForePaaS Legacy Platform that is not available on OVHcloud Data Platform. See [the current documentation](/en/product/index).

Supported file formats:
* [.txt](en/product/ml/models/import/bulk-add-x.md?id=txt-file)
* [.json](en/product/ml/models/import/bulk-add-x.md?id=json-file)

---
## .txt file

```txt
variable_name_1
variable_name_2
variable_name_3
```

> You can obtain such a *.txt* file from your pandas DataFrame by running the NumPy command:  
**np.savetxt("file_name.txt", `your_X_dataframe.columns.values`, fmt="%s")** 

---
## .json file


```json
{
    "columns": [
        "variable_name_1",
        "variable_name_2",
        "variable_name_3"
    ]
}
```

---
##  Need help? 🆘

> You didn't find what you were looking for on this page? Reach out to our [product team](https://hq.forepaas.io/#/features) if there is an integration you'd like to see implemented.  
You can also ask for help via the [OVHcloud Help Centre](https://help.ovhcloud.com/csm/fr-home?id=csm_index) or the [support guide](/en/support/index).

