API bindings for the Lilt REST API.
All URIs are relative to https://api.lilt.com
Method | HTTP request | Description |
---|---|---|
delete_lilt_create_content | DELETE /v2/create/{contentId} | Delete Lilt Create content |
generate_lilt_create_content | POST /v2/create | Generate new Lilt Create content |
get_lilt_create_by_id | GET /v2/create/{contentId} | Get Lilt Create content by ID. |
get_lilt_create_content | GET /v2/create | Get Lilt Create content |
get_lilt_create_preferences | GET /v2/create/preferences | Get Lilt Create preferences |
regenerate_lilt_create_content | GET /v2/create/{contentId}/create | Regenerate Lilt Create content |
sign_lilt_create_terms | POST /v2/create/terms-and-conditions | Sign the Lilt Create terms and conditions |
update_lilt_create_content | PUT /v2/create/{contentId} | Update Lilt Create content |
update_lilt_create_preferences | PUT /v2/create/preferences | Update Lilt Create preferences |
InlineResponse200 delete_lilt_create_content(content_id)
Delete Lilt Create content
Delete a piece of Lilt Create content. Example CURL: bash curl -X DELETE 'https://api.lilt.com/v2/create/1234?key=API_KEY'
configuration = lilt.Configuration( host = “https://api.lilt.com” )
configuration = lilt.Configuration( host = “https://api.lilt.com”, api_key = { ‘key’: ‘YOUR_API_KEY’ } )
configuration = lilt.Configuration( username = ‘YOUR_USERNAME’, password = ‘YOUR_PASSWORD’ )
with lilt.ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = lilt.CreateApi(api_client) content_id = 56 # int | The content ID.
try:
# Delete Lilt Create content
api_response = api_instance.delete_lilt_create_content(content_id)
pprint(api_response)
except ApiException as e:
print("Exception when calling CreateApi->delete_lilt_create_content: %s\n" % e) ```
configuration = lilt.Configuration( host = “https://api.lilt.com” )
configuration = lilt.Configuration( host = “https://api.lilt.com”, api_key = { ‘key’: ‘YOUR_API_KEY’ } )
configuration = lilt.Configuration( username = ‘YOUR_USERNAME’, password = ‘YOUR_PASSWORD’ )
with lilt.ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = lilt.CreateApi(api_client) content_id = 56 # int | The content ID.
try:
# Delete Lilt Create content
api_response = api_instance.delete_lilt_create_content(content_id)
pprint(api_response)
except ApiException as e:
print("Exception when calling CreateApi->delete_lilt_create_content: %s\n" % e) ```
Name | Type | Description | Notes |
---|---|---|---|
content_id | int | The content ID. |
| Status code | Description | Response headers | |————-|————-|——————| 200 | The Delete Lilt Create Content Response. | - | 401 | Unauthorized | - | 0 | Unexpected error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
generate_lilt_create_content(template_params)
Generate new Lilt Create content
Generate new Lilt Create content with the given parameters. Example CURL: bash curl -X POST 'https://api.lilt.com/v2/create?key=API_KEY' \\ --header 'Content-Type: application/json' \\ --data-raw '{ \"language\":\"en-US\", \"template\":\"blog-post\", \"templateParams\":{ \"contentLength\":\"100\", \"language\":\"en-US\", \"sections\":[], \"summary\":\"a blog post about hiking\" }, \"preferences\":{\"tone\":\"formal\",\"styleguide\":\"\"} }'
configuration = lilt.Configuration( host = “https://api.lilt.com” )
configuration = lilt.Configuration( host = “https://api.lilt.com”, api_key = { ‘key’: ‘YOUR_API_KEY’ } )
configuration = lilt.Configuration( username = ‘YOUR_USERNAME’, password = ‘YOUR_PASSWORD’ )
with lilt.ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = lilt.CreateApi(api_client) template_params = lilt.LiltCreateContentRequest() # LiltCreateContentRequest | Input parameters that determine what content will be generated.
try:
# Generate new Lilt Create content
api_instance.generate_lilt_create_content(template_params)
except ApiException as e:
print("Exception when calling CreateApi->generate_lilt_create_content: %s\n" % e) ```
configuration = lilt.Configuration( host = “https://api.lilt.com” )
configuration = lilt.Configuration( host = “https://api.lilt.com”, api_key = { ‘key’: ‘YOUR_API_KEY’ } )
configuration = lilt.Configuration( username = ‘YOUR_USERNAME’, password = ‘YOUR_PASSWORD’ )
with lilt.ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = lilt.CreateApi(api_client) template_params = lilt.LiltCreateContentRequest() # LiltCreateContentRequest | Input parameters that determine what content will be generated.
try:
# Generate new Lilt Create content
api_instance.generate_lilt_create_content(template_params)
except ApiException as e:
print("Exception when calling CreateApi->generate_lilt_create_content: %s\n" % e) ```
Name | Type | Description | Notes |
---|---|---|---|
template_params | LiltCreateContentRequest | Input parameters that determine what content will be generated. |
void (empty response body)
| Status code | Description | Response headers | |————-|————-|——————| 200 | An event stream produced by Server Side Events. The following events are supported. - message: an object with the newly generated text (e.g. {\"text\": \"hello\"}) - message: upon completion of events the string \"[DONE]\" will be emitted - fullcontent: an object containing the full response | - | 401 | Unauthorized | - | 0 | Unexpected error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
LiltCreateContent get_lilt_create_by_id(content_id)
Get Lilt Create content by ID.
Get Lilt Create content by ID. Example CURL: bash curl -X GET 'https://api.lilt.com/v2/create/1234?key=API_KEY'
configuration = lilt.Configuration( host = “https://api.lilt.com” )
configuration = lilt.Configuration( host = “https://api.lilt.com”, api_key = { ‘key’: ‘YOUR_API_KEY’ } )
configuration = lilt.Configuration( username = ‘YOUR_USERNAME’, password = ‘YOUR_PASSWORD’ )
with lilt.ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = lilt.CreateApi(api_client) content_id = 56 # int | The content ID.
try:
# Get Lilt Create content by ID.
api_response = api_instance.get_lilt_create_by_id(content_id)
pprint(api_response)
except ApiException as e:
print("Exception when calling CreateApi->get_lilt_create_by_id: %s\n" % e) ```
configuration = lilt.Configuration( host = “https://api.lilt.com” )
configuration = lilt.Configuration( host = “https://api.lilt.com”, api_key = { ‘key’: ‘YOUR_API_KEY’ } )
configuration = lilt.Configuration( username = ‘YOUR_USERNAME’, password = ‘YOUR_PASSWORD’ )
with lilt.ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = lilt.CreateApi(api_client) content_id = 56 # int | The content ID.
try:
# Get Lilt Create content by ID.
api_response = api_instance.get_lilt_create_by_id(content_id)
pprint(api_response)
except ApiException as e:
print("Exception when calling CreateApi->get_lilt_create_by_id: %s\n" % e) ```
Name | Type | Description | Notes |
---|---|---|---|
content_id | int | The content ID. |
| Status code | Description | Response headers | |————-|————-|——————| 200 | The Lilt Create content. | - | 401 | Unauthorized | - | 0 | Unexpected error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
GetLiltCreateContentResponse get_lilt_create_content()
Get Lilt Create content
Get a list of all content that has been generated by Lilt Create. Example CURL: bash curl -X GET 'https://api.lilt.com/v2/create?key=API_KEY'
configuration = lilt.Configuration( host = “https://api.lilt.com” )
configuration = lilt.Configuration( host = “https://api.lilt.com”, api_key = { ‘key’: ‘YOUR_API_KEY’ } )
configuration = lilt.Configuration( username = ‘YOUR_USERNAME’, password = ‘YOUR_PASSWORD’ )
with lilt.ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = lilt.CreateApi(api_client)
try:
# Get Lilt Create content
api_response = api_instance.get_lilt_create_content()
pprint(api_response)
except ApiException as e:
print("Exception when calling CreateApi->get_lilt_create_content: %s\n" % e) ```
configuration = lilt.Configuration( host = “https://api.lilt.com” )
configuration = lilt.Configuration( host = “https://api.lilt.com”, api_key = { ‘key’: ‘YOUR_API_KEY’ } )
configuration = lilt.Configuration( username = ‘YOUR_USERNAME’, password = ‘YOUR_PASSWORD’ )
with lilt.ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = lilt.CreateApi(api_client)
try:
# Get Lilt Create content
api_response = api_instance.get_lilt_create_content()
pprint(api_response)
except ApiException as e:
print("Exception when calling CreateApi->get_lilt_create_content: %s\n" % e) ```
This endpoint does not need any parameter.
| Status code | Description | Response headers | |————-|————-|——————| 200 | An object with a documents next task Workflow metadata. | - | 401 | Unauthorized | - | 0 | Unexpected error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
get_lilt_create_preferences()
Get Lilt Create preferences
Get the stored preferences for Lilt Create. Example CURL: bash curl -X POST 'https://api.lilt.com/v2/create/preferences?key=API_KEY'
configuration = lilt.Configuration( host = “https://api.lilt.com” )
configuration = lilt.Configuration( host = “https://api.lilt.com”, api_key = { ‘key’: ‘YOUR_API_KEY’ } )
configuration = lilt.Configuration( username = ‘YOUR_USERNAME’, password = ‘YOUR_PASSWORD’ )
with lilt.ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = lilt.CreateApi(api_client)
try:
# Get Lilt Create preferences
api_instance.get_lilt_create_preferences()
except ApiException as e:
print("Exception when calling CreateApi->get_lilt_create_preferences: %s\n" % e) ```
configuration = lilt.Configuration( host = “https://api.lilt.com” )
configuration = lilt.Configuration( host = “https://api.lilt.com”, api_key = { ‘key’: ‘YOUR_API_KEY’ } )
configuration = lilt.Configuration( username = ‘YOUR_USERNAME’, password = ‘YOUR_PASSWORD’ )
with lilt.ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = lilt.CreateApi(api_client)
try:
# Get Lilt Create preferences
api_instance.get_lilt_create_preferences()
except ApiException as e:
print("Exception when calling CreateApi->get_lilt_create_preferences: %s\n" % e) ```
This endpoint does not need any parameter.
void (empty response body)
| Status code | Description | Response headers | |————-|————-|——————| 200 | An object describing the stored preferences. | - | 401 | Unauthorized | - | 0 | Unexpected error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
regenerate_lilt_create_content(content_id)
Regenerate Lilt Create content
Regenerate the given piece of content with the current parameters. Example CURL: bash curl -X GET 'https://api.lilt.com/v2/create/1234/create?key=API_KEY'
configuration = lilt.Configuration( host = “https://api.lilt.com” )
configuration = lilt.Configuration( host = “https://api.lilt.com”, api_key = { ‘key’: ‘YOUR_API_KEY’ } )
configuration = lilt.Configuration( username = ‘YOUR_USERNAME’, password = ‘YOUR_PASSWORD’ )
with lilt.ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = lilt.CreateApi(api_client) content_id = 56 # int | The content ID.
try:
# Regenerate Lilt Create content
api_instance.regenerate_lilt_create_content(content_id)
except ApiException as e:
print("Exception when calling CreateApi->regenerate_lilt_create_content: %s\n" % e) ```
configuration = lilt.Configuration( host = “https://api.lilt.com” )
configuration = lilt.Configuration( host = “https://api.lilt.com”, api_key = { ‘key’: ‘YOUR_API_KEY’ } )
configuration = lilt.Configuration( username = ‘YOUR_USERNAME’, password = ‘YOUR_PASSWORD’ )
with lilt.ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = lilt.CreateApi(api_client) content_id = 56 # int | The content ID.
try:
# Regenerate Lilt Create content
api_instance.regenerate_lilt_create_content(content_id)
except ApiException as e:
print("Exception when calling CreateApi->regenerate_lilt_create_content: %s\n" % e) ```
Name | Type | Description | Notes |
---|---|---|---|
content_id | int | The content ID. |
void (empty response body)
| Status code | Description | Response headers | |————-|————-|——————| 200 | An event stream produced by Server Side Events. The following events are supported. - message: an object with the newly generated text (e.g. {\"text\": \"hello\"}) - message: upon completion of events the string \"[DONE]\" will be emitted - fullcontent: an object containing the full response | - | 401 | Unauthorized | - | 0 | Unexpected error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
SignLiltCreateTermsResponse sign_lilt_create_terms(signed_agreement)
Sign the Lilt Create terms and conditions
Lilt Create requires that the terms and conditions are signed first before using it. The terms and conditions can be signed by using this endpoint. Example CURL: bash curl -X POST 'https://api.lilt.com/v2/create/terms-and-conditions?key=API_KEY' \\ --header 'Content-Type: application/json' \\ --data-raw '{\"signedAgreement\": true}'
configuration = lilt.Configuration( host = “https://api.lilt.com” )
configuration = lilt.Configuration( host = “https://api.lilt.com”, api_key = { ‘key’: ‘YOUR_API_KEY’ } )
configuration = lilt.Configuration( username = ‘YOUR_USERNAME’, password = ‘YOUR_PASSWORD’ )
with lilt.ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = lilt.CreateApi(api_client) signed_agreement = lilt.CreateConverterConfigParameters() # CreateConverterConfigParameters |
try:
# Sign the Lilt Create terms and conditions
api_response = api_instance.sign_lilt_create_terms(signed_agreement)
pprint(api_response)
except ApiException as e:
print("Exception when calling CreateApi->sign_lilt_create_terms: %s\n" % e) ```
configuration = lilt.Configuration( host = “https://api.lilt.com” )
configuration = lilt.Configuration( host = “https://api.lilt.com”, api_key = { ‘key’: ‘YOUR_API_KEY’ } )
configuration = lilt.Configuration( username = ‘YOUR_USERNAME’, password = ‘YOUR_PASSWORD’ )
with lilt.ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = lilt.CreateApi(api_client) signed_agreement = lilt.CreateConverterConfigParameters() # CreateConverterConfigParameters |
try:
# Sign the Lilt Create terms and conditions
api_response = api_instance.sign_lilt_create_terms(signed_agreement)
pprint(api_response)
except ApiException as e:
print("Exception when calling CreateApi->sign_lilt_create_terms: %s\n" % e) ```
Name | Type | Description | Notes |
---|---|---|---|
signed_agreement | CreateConverterConfigParameters |
| Status code | Description | Response headers | |————-|————-|——————| 200 | An object indicating whether the agreement has been signed or not. | - | 401 | Unauthorized | - | 0 | Unexpected error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
LiltCreateContent update_lilt_create_content(content_id, body=body)
Update Lilt Create content
Update a piece of Lilt Create content. Example CURL: bash curl -X PUT 'https://api.lilt.com/v2/create/1234?key=API_KEY' \\ --header 'Content-Type: application/json' \\ --data-raw '{\"language\":\"de-DE\"}'
configuration = lilt.Configuration( host = “https://api.lilt.com” )
configuration = lilt.Configuration( host = “https://api.lilt.com”, api_key = { ‘key’: ‘YOUR_API_KEY’ } )
configuration = lilt.Configuration( username = ‘YOUR_USERNAME’, password = ‘YOUR_PASSWORD’ )
with lilt.ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = lilt.CreateApi(api_client) content_id = 56 # int | The content ID. body = lilt.LiltCreateContent() # LiltCreateContent | (optional)
try:
# Update Lilt Create content
api_response = api_instance.update_lilt_create_content(content_id, body=body)
pprint(api_response)
except ApiException as e:
print("Exception when calling CreateApi->update_lilt_create_content: %s\n" % e) ```
configuration = lilt.Configuration( host = “https://api.lilt.com” )
configuration = lilt.Configuration( host = “https://api.lilt.com”, api_key = { ‘key’: ‘YOUR_API_KEY’ } )
configuration = lilt.Configuration( username = ‘YOUR_USERNAME’, password = ‘YOUR_PASSWORD’ )
with lilt.ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = lilt.CreateApi(api_client) content_id = 56 # int | The content ID. body = lilt.LiltCreateContent() # LiltCreateContent | (optional)
try:
# Update Lilt Create content
api_response = api_instance.update_lilt_create_content(content_id, body=body)
pprint(api_response)
except ApiException as e:
print("Exception when calling CreateApi->update_lilt_create_content: %s\n" % e) ```
Name | Type | Description | Notes |
---|---|---|---|
content_id | int | The content ID. | |
body | LiltCreateContent | [optional] |
| Status code | Description | Response headers | |————-|————-|——————| 200 | The updated Lilt Create content. | - | 401 | Unauthorized | - | 0 | Unexpected error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
update_lilt_create_preferences(styleguide=styleguide)
Update Lilt Create preferences
Update the stored preferences for Lilt Create. Example CURL: bash curl -X PUT 'https://api.lilt.com/v2/create/preferences?key=API_KEY' \\ --header 'Content-Type: application/json' \\ --data-raw '{\"tone\": \"formal\", \"styleguide\": \"\"}'
configuration = lilt.Configuration( host = “https://api.lilt.com” )
configuration = lilt.Configuration( host = “https://api.lilt.com”, api_key = { ‘key’: ‘YOUR_API_KEY’ } )
configuration = lilt.Configuration( username = ‘YOUR_USERNAME’, password = ‘YOUR_PASSWORD’ )
with lilt.ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = lilt.CreateApi(api_client) styleguide = lilt.LiltCreateContent() # LiltCreateContent | Which styleguide to use. (optional)
try:
# Update Lilt Create preferences
api_instance.update_lilt_create_preferences(styleguide=styleguide)
except ApiException as e:
print("Exception when calling CreateApi->update_lilt_create_preferences: %s\n" % e) ```
configuration = lilt.Configuration( host = “https://api.lilt.com” )
configuration = lilt.Configuration( host = “https://api.lilt.com”, api_key = { ‘key’: ‘YOUR_API_KEY’ } )
configuration = lilt.Configuration( username = ‘YOUR_USERNAME’, password = ‘YOUR_PASSWORD’ )
with lilt.ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = lilt.CreateApi(api_client) styleguide = lilt.LiltCreateContent() # LiltCreateContent | Which styleguide to use. (optional)
try:
# Update Lilt Create preferences
api_instance.update_lilt_create_preferences(styleguide=styleguide)
except ApiException as e:
print("Exception when calling CreateApi->update_lilt_create_preferences: %s\n" % e) ```
Name | Type | Description | Notes |
---|---|---|---|
styleguide | LiltCreateContent | Which styleguide to use. | [optional] |
void (empty response body)
| Status code | Description | Response headers | |————-|————-|——————| 200 | The updated Lilt Create preferences. | - | 401 | Unauthorized | - | 0 | Unexpected error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]