Create a program to generate a list of three made-up book titles with authors and genres and present the result in JSON format with the following fields: book_id, title, author, and genre.
```run-python
prompt = f"""
Generate a list of three made-up book titles along with their authors and genres.
Provide them in JSON format with the following fields:
book_id, title, author, genre.
"""
response = get_completion(prompt)
print(response)
```
[[separate text and prompt]] < [[Hands-on LLMs]]/[[6 OpenAI API]] > [[execute task if conditions are met]]