File size: 380 Bytes
ddd81fb
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
"""Configuration file for model settings"""

# Model Configuration 
# for more information on the models, see https://github.com/camel-ai/camel/blob/master/camel/types/enums.py

PLATFORM_TYPE = "OPENAI"
MODEL_TYPE = "GPT_4O"

# Model Settings
MODEL_CONFIG = {
    "temperature": 0.3,
    "max_tokens": 4096,
}

# Agent Settings
MESSAGE_WINDOW_SIZE = 4096 * 50
TOKEN_LIMIT = 20000