Deploy on Banana for fast, affordable, and easy deployment of GPT JT. Get results fast with our user-friendly interface, unbeatable pricing and speed. Click the button above to deploy this model now!


Readme


INPUT

{
  "max_new_tokens": 5,
  "prompt": "Return the currency of the given country. Input: Switzerland. Output: Swiss Franc. Input: India. Output:"
}

OUTPUT

{
  "output": "Indian Rupee"
}

CODE SNIPPETS


import banana_dev as banana

model_inputs = {
  "max_new_tokens": 5,
  "prompt": "Return the currency of the given country. Input: Switzerland. Output: Swiss Franc. Input: India. Output:"
}

api_key = "YOUR_API_KEY"
model_key = "YOUR_MODEL_KEY"

# Run the model
out = banana.run(api_key, model_key, model_inputs)

logo