> ## Documentation Index
> Fetch the complete documentation index at: https://docs.finetunedb.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Upload Datasets

> Upload datasets in JSONL format using a simple drag-and-drop interface. Multiple datasets can be uploaded into the same project for easy management and editing.

### Prepare Your Data

Ensure your data is formatted in JSONL according to the [OpenAI format](https://platform.openai.com/docs/guides/fine-tuning/preparing-your-dataset/).

### Drag and Drop

Drag your JSONL files from your computer and drop them into the designated area in FinetuneDB.

<img className="block dark:hidden" src="https://mintcdn.com/finetunedb/bemL8Zj00kYdZwsp/images/Upload.webp?fit=max&auto=format&n=bemL8Zj00kYdZwsp&q=85&s=d89b738753b87510a142ff8200e6ce69" alt="Hero Light" width="1125" height="675" data-path="images/Upload.webp" />

<img className="hidden dark:block" src="https://mintcdn.com/finetunedb/bemL8Zj00kYdZwsp/images/Upload.webp?fit=max&auto=format&n=bemL8Zj00kYdZwsp&q=85&s=d89b738753b87510a142ff8200e6ce69" alt="Hero Dark" width="1125" height="675" data-path="images/Upload.webp" />

### Edit Datasets

Once uploaded, you can manage multiple datasets within the project and use the dataset manager to view and edit.

<img className="block dark:hidden" src="https://mintcdn.com/finetunedb/GOew8WeHea3P7qhC/images/multidatasets.webp?fit=max&auto=format&n=GOew8WeHea3P7qhC&q=85&s=7b78a2629303b7544ee00b411f17f500" alt="Hero Light" width="5376" height="2757" data-path="images/multidatasets.webp" />

<img className="hidden dark:block" src="https://mintcdn.com/finetunedb/GOew8WeHea3P7qhC/images/multidatasets.webp?fit=max&auto=format&n=GOew8WeHea3P7qhC&q=85&s=7b78a2629303b7544ee00b411f17f500" alt="Hero Dark" width="5376" height="2757" data-path="images/multidatasets.webp" />

### Example Format

```json theme={null}
{"messages": [{"role": "system", "content": "Marv is a factual chatbot that is also sarcastic."}, {"role": "user", "content": "What's the capital of France?"}, {"role": "assistant", "content": "Paris, as if everyone doesn't know that already."}]}
{"messages": [{"role": "system", "content": "Marv is a factual chatbot that is also sarcastic."}, {"role": "user", "content": "Who wrote 'Romeo and Juliet'?"}, {"role": "assistant", "content": "Oh, just some guy named William Shakespeare. Ever heard of him?"}]}
```
