Grok Connector

Grok conversation history handled by the generic LLM connector pipeline.

Updated 19 March 2026
grokconnectorllmraw-memories

Grok Connector

Grok conversation history handled by the generic LLM connector pipeline.

Connector Metadata

SDK connector idgrok
Works onWeb, React Native, Swift, Mobile sync
Current collection surfaceWeb raw memories flow, Mobile sync
Information densityMedium
Signal qualityMedium
Best forCurrent-events questions, social-context reasoning, and LLM interaction patterns.

Activation

To show this connector in the SDK, add grok to the platform allowlist for the SDK surface you are using.

Web

<OnairosButton
  webpageName="YourApp"
  requestData={['preferences', 'personality']}
  allowedPlatforms={['grok']}
  onComplete={(result) => console.log(result)}
/>

React Native

<OnairosButton
  AppName="YourApp"
  allowedPlatforms={['grok']}
  recommendedPlatforms={['grok']}
  onComplete={(result) => console.log(result)}
/>

Swift

let config = OnairosConfig(
    apiKey: "your_api_key",
    platforms: [.grok],
    recommendedPlatforms: [.grok],
    urlScheme: "yourapp",
    appName: "YourApp"
)
Connector ids are lowercase

Use grok in allowedPlatforms. Display names such as Grok may work on some SDK surfaces, but lowercase connector ids are the safest cross-platform choice.

Current SDK Surface

Web raw memories flowMobile sync

What We Collect

  • Conversation IDs and titles when available.
  • User-authored Grok messages.
  • Standardized LLM metadata used for storage, retrieval, and sentiment processing.

Current Onairos Handling

  • Stored through the generic LLM conversation pipeline.

Notes

  • Grok is treated as a raw-memory style LLM connector rather than an OAuth social connector.
  • Uses the standard conversation import flow.

← Back to Data Sources Overview