Zooming Into Each Step of Demo Run with LatticaAI flow
Installation & Setup
pip install lattica_querynpm install "@Lattica-ai/lattica-query-client"Authentication & Model ID
from lattica_query.auth import get_demo_token
# Use the model ID provided in the specific demo tutorial (e.g., 'imageEnhancement', 'sentimentAnalysis')
model_id = "demoModelId"
my_token = get_demo_token(model_id)import { getDemoToken } from '@Lattica-ai/lattica-query-client';
// Use the model ID provided in the specific demo tutorial (e.g., 'imageEnhancement', 'sentimentAnalysis')
const modelId = "demoModelId"
const token = await getDemoToken(modelId);Generating & Registering Keys
Process the requested query
Last updated