Files
yj_room_agent/.env
yujj128 d6ebcf8303 feat:
2025-06-10 22:33:05 +08:00

34 lines
1.2 KiB
Bash

#api key
MODEL_API_KEY=sk-42b5a1479b3b4a1b8176c13c6e2249f0
#模型地址
MODEL_BASE_URL=https://api.deepseek.com
#模型名称
MODEL_NAME=deepseek-chat
#模型活跃度
MODEL_TEMPERATURE=1.0
#放行host地址
DJANGO_ALLOWED_HOSTS=192.168.237.130,127.0.0.1,10.212.26.130
#是否开启debug模式
DJANGO_DEBUG_ENABLE=True
DEFAULT_AUTH_URL = 'https://oa-pre.yced.com.cn/iuap-api-auth'
DEFAULT_GATEWAY_URL = 'https://oa-pre.yced.com.cn/iuap-api-gateway '
TEMP_TENANT_ID = 'pr3rl2oj'
APPKEY = '422b4eb9c97b448689c0d444072a55ad'
APPSECRET = '371f07c8abe30577c608be6ba60198a914f98297'
DEFAULT_HEADER = {'Content-Type': 'application/json'}
# General Purpose Interface
TOKEN_INTF = '/open-auth/selfAppAuth/getAccessToken'
GATEWAY_INTF = '/open-auth/dataCenter/getGatewayAddress'
# Service Interface
QUERY_MEETING_ROOM_TYPE = '/yonbip/uspace/external/access/getMeetingRoomType'
QUERY_MEETING_ROOM = '/yonbip/uspace/external/access/getMeetingRoom'
QUERY_MEETINGBOOKING_INFO = '/yonbip/uspace/external/access/getDestineInformation'
CANCEL_MEETING = '/yonbip/uspace/external/access/cancel'
BOOKMEETING = '/yonbip/uspace/external/access/book'
EDIT_MEETING = '/yonbip/uspace/external/access/edit'
#
DEFAULT_PAGESIZE = 800