-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.py
36 lines (34 loc) · 846 Bytes
/
config.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
OPEN_AI_API_KEY='<your key>'
ACCOUNT_EMAIL='<your email>'
ACCOUNT_PASSWORD='<your password>'
import os
from character import *
IMAGES_FOLDER = os.path.expanduser(r"~\Downloads\images")
CHARACTER = Character(
Character.Anatomy(
sex=True, # True for male, False for female
age=25,
height=Height.AVERAGE,
body=Body.MUSCULAR,
eye_color='brown',
hair_color='brown',
skin_color='pale',
race='white',
hair=Hair.SHORT,
beard=Hair.NONE
),
Location(
name='Los Angeles',
physical_features=['dense city']
),
topics={
'playing sports': -0.8,
'cooking': 0.9
},
writing_style='casual',
picture_presence=1.0,
outside_preference=1.0,
login_frequency=1.0,
post_interaction_count=6,
writing_chance=0.8
)