Providers are the AI platforms that OneGlanse monitors for brand mentions. Each provider represents a different AI service that users interact with to get information, recommendations, and answers.OneGlanse supports five major AI providers:
ChatGPT
OpenAI’s conversational AI assistant
Claude
Anthropic’s AI assistant focused on helpful, honest, and harmless interactions
Perplexity
AI-powered search engine with real-time information
Different AI providers have different:Knowledge sources - Each provider trains on different datasets and accesses different informationResponse styles - Providers format answers differently (lists, paragraphs, comparative tables)Citation practices - Some providers extensively cite sources, others don’tUpdate frequencies - Providers refresh their knowledge at different intervalsUser bases - Each platform serves different user demographics and use casesMonitoring multiple providers gives you comprehensive coverage of how AI represents your brand across the ecosystem.
OneGlanse uses Playwright to automate real browser sessions for each provider. This approach ensures:Authentic responses - Providers see real user interactions, not API callsComplete feature support - Access to all provider capabilities, including experimental featuresSource extraction - Ability to extract citation links and metadataAnti-detection - Mimics human behavior with randomized delays and real browser fingerprints
ChatGPT sometimes includes a “Sources” button that opens a panel with citations:
interface Source { title: "OpenAI Documentation"; cited_text: "OpenAI provides API access to GPT models..."; url: "https://platform.openai.com/docs"; domain: "platform.openai.com"; favicon: "https://platform.openai.com/favicon.ico";}
Claude - No citations
Claude does not provide source citations. The extractSources function returns an empty array.
Perplexity - Numbered citations
Perplexity extensively cites sources with numbered references:
Example
The best project management tools include Asana[1], Monday.com[2], and Jira[3]. Each offers different strengths...Sources:[1] https://asana.com/guide - "Asana Features Guide"[2] https://monday.com/features - "Monday.com Overview"[3] https://atlassian.com/jira - "Jira for Software Teams"
Gemini - Search citations
Gemini includes sources from Google Search integration, available through an expandable panel.
AI Overview - Inline citations
AI Overview embeds source links directly in the response text:
Example
Project management tools like Asana (asana.com) and Monday.com (monday.com) help teams collaborate effectively.
You can control which providers run for each workspace:
// Enable all providers (default)enabledProviders: '["chatgpt","claude","perplexity","gemini","ai-overview"]'// Enable only search-focused providersenabledProviders: '["perplexity","ai-overview"]'// Enable only conversational AIenabledProviders: '["chatgpt","claude","gemini"]'
Disabling providers in your workspace configuration prevents them from running during scheduled jobs, saving resources and focusing on the platforms most relevant to your audience.