Files
wehub-resource-sync fbfefa28d3
CodeQL / Analyze (python) (push) Failing after 0s
Release / Build (push) Failing after 1s
Test Suite / Unit Tests (push) Failing after 0s
Release / Release (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:18:10 +08:00

15 lines
399 B
Python

"""
Module for mapping the models in ai agents
"""
robots_dictionary = {
"gpt-3.5-turbo": ["GPTBot", "ChatGPT-user"],
"gpt-4-turbo": ["GPTBot", "ChatGPT-user"],
"gpt-4o": ["GPTBot", "ChatGPT-user"],
"gpt-4o-mini": ["GPTBot", "ChatGPT-user"],
"claude": ["Claude-Web", "ClaudeBot"],
"perplexity": "PerplexityBot",
"cohere": "cohere-ai",
"anthropic": "anthropic-ai",
}