mirror of
https://github.com/VinciGit00/Scrapegraph-ai.git
synced 2026-06-25 21:11:11 +08:00
13 lines
310 B
Python
13 lines
310 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"],
|
|
"claude": ["Claude-Web", "ClaudeBot"],
|
|
"perplexity": "PerplexityBot",
|
|
"cohere": "cohere-ai",
|
|
"anthropic": "anthropic-ai"
|
|
}
|