How-To: Create User Access Token
This guide explains how to create a User Access Token using two methods: the Web Console and the Python SDK.
Last updated
This guide explains how to create a User Access Token using two methods: the Web Console and the Python SDK.
Last updated
# Generate Token
import LatticaManagement
# Authenticate
lattica = LatticaManagement("your_license_from_lattica_console")
# Register a new model...
model_id = lattica.create_model("model_name")
# Generate a token
token_id, token = lattica.generate_query_token(model_id, "token_name")