Paso 1. Enviar la solicitud de trabajo de IA
Punto final: POST - /api/v1/content/paraphrase
| Atributo |
Tipo |
Obligatorio |
Descripción |
| content |
String |
Sí |
Proporciona el contenido para parafrasear. |
| language |
String |
No |
Especifica el idioma de salida, por defecto es English. |
| voice_tone |
String |
No |
Especifica el tono de voz de la salida. Puede ser adjetivos como funny o joyous, o incluso el nombre de un famoso escritor. |
| max_length |
Number |
No |
Especifica la longitud máxima del contenido parafraseado. |
| context |
String |
No |
Proporciona contexto adicional para mejorar la precisión de la parafrase. |
EJEMPLO DE SOLICITUD:
{
"content": "Red Bull's Max Verstappen says this weekend's Las Vegas Grand Prix is \"99% show and 1% sporting event\". \n\n The triple world champion said he is \"not looking forward\" to the razzmatazz around the race, the first time Formula 1 cars have raced down the city's famous Strip. \n\n Other leading drivers were more equivocal about the hype.\n\n Aston Martin's Fernando Alonso said: \"With the investment that has been made and the place we are racing, it deserves a little bit [of] different treatment and extra show.\" \n\n The weekend was kick-started on Wednesday evening with a lavish opening ceremony.\n\n It featured performances from several music stars, including Kylie Minogue and Journey, and culminated in the drivers being introduced to a sparsely populated crowd in light rain by being lifted into view on hydraulic platforms under a sound-and-light show. \n\n Lewis Hamilton said: \"It's amazing to be here. It is exciting - such an incredible place, so many lights, a great energy, a great buzz. \n\n \"This is one of the most iconic cities there is. It is a big show, for sure. It is never going to be like Silverstone [in terms of history and purity]. But maybe over time the people in the community here will grow to love the sport.\" \n\n Hamilton added: \"It is a business, ultimately. You'll still see good racing here. \n\n \"Maybe the track will be good, maybe it will be bad. It was so-so on the [simulator]. Don't knock it 'til you try it. I hear there are a lot of people complaining about the direction [F1 president] Stefano [Domenicali] and [owners] Liberty have been going [but] I think they have been doing an amazing job b.\"",
"max_length": 500,
"language": "English",
"voice_tone": "David Attenborough alike",
"context": "replace Lewis first name with Bob"
}
EJEMPLO DE RESPUESTA:
{
"status_url": "https://sharpapi.com/api/v1/content/translate/job/status/5de4887a-0dfd-49b6-8edb-9280e468c210",
"job_id": "5de4887a-0dfd-49b6-8edb-9280e468c210"
}
Paso 2. Monitorear y Obtener Resultados del Trabajo de IA
Punto final: GET - /api/v1/content/paraphrase/job/status/:uuid
Un punto final se utiliza para verificar el progreso del trabajo de API solicitado.
EJEMPLO DE RESULTADO:
{
"data": {
"type": "api_job_result",
"id": "385fec60-e73e-458c-a6c9-6e76e5a76661",
"attributes": {
"status": "success",
"type": "content_paraphrase",
"result": {
"paraphrase": "Max Verstappen de Red Bull comenta que el Gran Premio de Las Vegas es '99% espectáculo y 1% deporte.' El triple campeón del mundo no está emocionado por el espectáculo, marcando la primera carrera de F1 en la famosa Strip de la ciudad. Otros pilotos, como Fernando Alonso, reconocen la inversión única y el entorno. El evento comenzó con una gran ceremonia que presentó a estrellas como Kylie Minogue. Bob Hamilton expresó entusiasmo por la ciudad icónica, señalando la combinación de espectáculo y deporte, y elogió la dirección de F1 bajo Stefano Domenicali y Liberty."
}
}
}
}