Welcome to Lattice AI

A decentralized network connecting users to distributed open-source AI models

Welcome to Lattice AI

What is Lattice AI?

Lattice AI is a decentralized AI inference network that connects users directly with a distributed network of open-source AI models. Our platform creates a decentralized prompt economy powered by the LAI token, enabling transparent, accessible, and personalized AI experiences.

Quick Start

Key Features

Decentralized Infrastructure

Run AI models on a distributed network with no single point of failure

Privacy-First

Local processing options and on-premise deployments for sensitive data

Customizable

Support for private clusters and enterprise integrations

Getting Started with Code

Here's a quick example of how to use our API:

Basic Usage
import { LatticeClient } from '@lattice-ai/client';
 
const client = new LatticeClient({
  apiKey: process.env.LATTICE_API_KEY,
  model: 'llama-2-70b'
});
 
const response = await client.chat({
  messages: [
    { role: 'user', content: 'Hello, how are you?' }
  ]
});

Model Options

const models = {
  'llama-2-70b': {
    maxTokens: 4096,
    temperature: 0.7
  },
  'mistral-7b': {
    maxTokens: 2048,
    temperature: 0.8
  }
};

Community Support

Make sure to check our Discord community for the latest updates and support.