Implement the text generation feature with Fine Tunning, I see that you currently have the documentation but it is not working yet:
import requests
url =
headers = {
'content-type': "application/json",
'x-api-key': "rYox15E8qS4vYht3kiPYL4SuqdBCnoCN6TNP9Dur"
}
data = {
"text": "The Crystal Lagoon Village ",
"options": {
"refresh": False,
"version": "RZkmzwhOtATrdFSbuGvI"
}
}
response = requests.post(url, json=data, headers=headers)
print(response.text)