This GPT2-trump model generates Donald Trump style tweets text.
When you enter text at the beginning of the tweets, the model gives you the rest of the tweets as long as you want.
This API has 2 routing address
# POST parameter
/long
text : begining of the text you want to generate
number_samples : the number of sentence that will be generated
length : the length of each sentence
/short
text : begining of the text you want to generate
number_samples : the number of word that will be generated
# With CLI :
curl --location --request POST 'https://main-gpt2-trump-gmlee329.endpoint.ainize.ai/gpt2-trump/long' --form 'text=We have more cases' --form 'num_samples=5' --form 'length=10'
curl --location --request POST 'https://main-gpt2-trump-gmlee329.endpoint.ainize.ai/gpt2-trump/short' --form 'text=We have more cases' --form 'num_samples=5'
# With swagger :
You can test this API with swagger.yaml on swagger editor