improve config sample
This commit is contained in:
parent
bdbd6bae88
commit
276d0fe40b
3 changed files with 8 additions and 5 deletions
|
@ -1,9 +1,9 @@
|
||||||
# Please remove the option that is blank
|
# Please remove the option that is blank
|
||||||
HOMESERVER="https://matrix.xxxxxx.xxxx" # required
|
HOMESERVER="https://matrix.xxxxxx.xxxx" # required
|
||||||
USER_ID="@lullap:xxxxxxxxxxxxx.xxx" # required
|
USER_ID="@lullap:xxxxxxxxxxxxx.xxx" # required
|
||||||
PASSWORD="xxxxxxxxxxxxxxx" # required
|
PASSWORD="xxxxxxxxxxxxxxx" # Optional
|
||||||
DEVICE_ID="xxxxxxxxxxxxxx" # required
|
DEVICE_ID="xxxxxxxxxxxxxx" # required
|
||||||
ROOM_ID="!FYCmBSkCRUXXXXXXXXX:matrix.XXX.XXX" # Optional, if the property is blank, bot will work on the room it is in (Unencrypted room only as for now)
|
ROOM_ID="!FYCmBSkCRUXXXXXXXXX:matrix.XXX.XXX" # Optional, if not set, bot will work on the room it is in
|
||||||
OPENAI_API_KEY="xxxxxxxxxxxxxxxxx" # Optional, for !chat and !gpt command
|
OPENAI_API_KEY="xxxxxxxxxxxxxxxxx" # Optional, for !chat and !gpt command
|
||||||
BING_API_ENDPOINT="xxxxxxxxxxxxxxx" # Optional, for !bing command
|
BING_API_ENDPOINT="xxxxxxxxxxxxxxx" # Optional, for !bing command
|
||||||
ACCESS_TOKEN="xxxxxxxxxxxxxxxxxxxxx" # Optional, use user_id and password is recommended
|
ACCESS_TOKEN="xxxxxxxxxxxxxxxxxxxxx" # Optional, use user_id and password is recommended
|
||||||
|
|
|
@ -5,5 +5,8 @@
|
||||||
"device_id": "ECYEOKVPLG",
|
"device_id": "ECYEOKVPLG",
|
||||||
"room_id": "!FYCmBSkCRUNvZDBaDQ:matrix.qqs.tw",
|
"room_id": "!FYCmBSkCRUNvZDBaDQ:matrix.qqs.tw",
|
||||||
"api_key": "xxxxxxxxxxxxxxxxxxxxxxxx",
|
"api_key": "xxxxxxxxxxxxxxxxxxxxxxxx",
|
||||||
"access_token": "xxxxxxx"
|
"bing_api_endpoint": "http://api:3000/conversation",
|
||||||
}
|
"jailbreakEnabled": true,
|
||||||
|
"access_token": "xxxxxxx",
|
||||||
|
"bing_auth_cookie": "xxxxxxxxxxx"
|
||||||
|
}
|
||||||
|
|
2
main.py
2
main.py
|
@ -33,7 +33,7 @@ async def main():
|
||||||
api_key=os.environ.get("OPENAI_API_KEY"),
|
api_key=os.environ.get("OPENAI_API_KEY"),
|
||||||
bing_api_endpoint=os.environ.get("BING_API_ENDPOINT"),
|
bing_api_endpoint=os.environ.get("BING_API_ENDPOINT"),
|
||||||
access_token=os.environ.get("ACCESS_TOKEN"),
|
access_token=os.environ.get("ACCESS_TOKEN"),
|
||||||
jailbreakEnabled=os.environ.get("JAILBREAKENABLED"),
|
jailbreakEnabled=os.environ.get("JAILBREAKENABLED", "false").lower() in ('true', '1', 't'),
|
||||||
bing_auth_cookie=os.environ.get("BING_AUTH_COOKIE"),
|
bing_auth_cookie=os.environ.get("BING_AUTH_COOKIE"),
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue