# 每日待办
- 支付宝积分
- 2 元红包
- C 小程序签到
- 小号发文
- 今天 2 篇文章
- 明天 2 篇文章
- 每日三连
- ==============================
- 资源上传 20 个
- 华为云
# 待办
华为云批量发文
处理图片
滴答清单处理
备忘录处理
每日看书
思维导图
专家
- 前端登录
- 前端上传文件提交任务
- 前端查询手机号列表
- 前端查询处理好的数据列表
kwan
- 手机号查询列表优化
- 操作日志列表查询,操作日志入库
- 订单号入库,订单号查询管理
- swagger集成
- 日志模块
- dify的swagger怎么做的?
# 周日待办
- 米客文章准备
- 找房子
- 电话统计
- 51自定义接口
- 需要确认是否可以搞
- 华为云发文
- 明基显示器文章准备
# 5月13日
- 海诚部署
- 海诚自定义的部署
- 正式环境的更新计划(权限问题)
# 重要的事情
- 找房子
- 写书
- 下一步的规划以及执行–gpt列计划
- 看书
- 算法
- 表达-深刻理解
- 运动
AobingJava/JavaFamily
curl 'http://127.0.0.1:5001/console/api/workspaces/current/model-providers/openai/models' \
-H 'Accept: */*' \
-H 'Accept-Language: zh-CN,zh;q=0.9' \
-H 'Connection: keep-alive' \
-b 'locale=zh-Hans' \
-H 'Origin: https://fastagi-cloud-test.deepexi.com' \
-H 'Sec-Fetch-Dest: empty' \
-H 'Sec-Fetch-Mode: cors' \
-H 'Sec-Fetch-Site: same-origin' \
-H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36' \
-H 'authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE3NDc3MDU3NTYsInVzZXJJbmZvIjp7InVzZXJuYW1lIjoiZmFzdGFnaSIsInRlbmFudElkIjoiZmFzdGFnaSIsInVzZXJfZmxhZyI6dHJ1ZX19.Wma8INltMO6Kclw2tD7_Oa_cWG9FfKwVgJ0wI2yUu-A' \
-H 'content-type: application/json' \
-H 'locale: zh-Hans' \
-H 'pid: c0bdcd44-3dd0-4361-9965-e658e1ae2a0c' \
-H 'sec-ch-ua: "Chromium";v="136", "Google Chrome";v="136", "Not.A/Brand";v="99"' \
-H 'sec-ch-ua-mobile: ?0' \
-H 'sec-ch-ua-platform: "Windows"' \
--data-raw '{"model":"gpt-4.1","model_type":"llm","credentials":{"openai_api_key":"sk-PrBaOjBqIfrhrGgN321f7f52Af374d93849836688aDcE116","openai_organization":"deepexi","openai_api_base":"https://fastagi.deepexi.com/v1/chat/completions"},"conf_type":"1"}'
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# 对于重定向响应,直接返回
if response.status == 307 and 'location' in response.headers:
return Response(
content=b"",
status_code=307,
headers={"location": response.headers['location']}
)
1
2
3
4
5
6
7
2
3
4
5
6
7
curl http://127.0.0.1:8888/fastagi/baselineApi/auth/login/verify?access_token=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE3NDc3MTIwOTYsInVzZXJJbmZvIjp7InVzZXJuYW1lIjoiZmFzdGFnaSIsInRlbmFudElkIjoiZmFzdGFnaSIsInVzZXJfZmxhZyI6dHJ1ZX19.TfI3-WApQuwUh23RIRZQfeX5C2nEPdpK49XPXSUa1N4&redirect_url=https%3A%2F%2Ffastagi-cloud-test.deepexi.com%2Fbaseline&login_type=inner
1
1
# 对于重定向响应,直接返回
if 300 <= response.status < 400 and 'location' in response.headers:
return Response(
content=b"",
status_code=response.status,
headers={"location": response.headers['location']}
)
1
2
3
4
5
6
7
2
3
4
5
6
7