Implement the text generation feature with Fine Tunning, I see that you currently have the documentation but it is not working yet: https://docs.metatext.ai/v1/api-reference/generate import requests url = https://api.metatext.ai/v2/generate/RZkmzwhOtATrdFSbuGvI 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)