Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.usechar.com/llms.txt

Use this file to discover all available pages before exploring further.

Use Firebase Authentication ID tokens with Char.

1) Configure Firebase in Char

Set issuer and audience settings that match your Firebase project.

2) Read token from Firebase user

const idToken = await user.getIdToken();

3) Connect

agent.connect({
  publishableKey: "pk_live_...",
  idToken,
});

Embedding Guide