Sessions

Sessions are a way to group together multiple requests to the agent. This is useful for multi-turn conversations and changes.

Configuration

const config: VibeConfig = {
  ...
  sessionId: "abdc***"
};

Set session id

const session = await vibeKit.setSession("abcd***")

Get session id

const session = await vibeKit.getSession()