Models
HTTP request
POST /models/text_completion
Authorization
Include your ACCESS TOKEN in HTTP Authorization header
Authorization: Bearer TokenRequest Parameters
None
Parrot API
models = parrot.get_models(“text_completion”)Response
Returns the list of models.
{
  "data": [
    {
      "model": "gemma-7b",
      "metadata": {
        "source": "https://huggingface.co/google/gemma-7b"
      }
    }
  ]
}Last updated
Was this helpful?