Get Your Credentials
Configure your API credentials for development
Last updated
GRAPHLIT_ORGANIZATION_ID=your_org_id
GRAPHLIT_ENVIRONMENT_ID=your_env_id
GRAPHLIT_JWT_SECRET=your_secret# Use the API key for your chosen LLM provider
OPENAI_API_KEY=your_openai_key
# OR
ANTHROPIC_API_KEY=your_anthropic_key
# OR
GOOGLE_API_KEY=your_google_key
# (etc.)import { Graphlit } from 'graphlit-client';
const graphlit = new Graphlit();
async function main() {
const project = await graphlit.getProject();
console.log(`✅ Connected: ${project.project.name}`);
}
main();