chore: sync local updates
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
method: post
|
||||
url: "{{baseUrl}}/api/aimodelapp/linux-command"
|
||||
name: Linux 命令建议
|
||||
parameters:
|
||||
header:
|
||||
- name: Authorization
|
||||
value: Bearer {{bearerToken}}
|
||||
- name: Content-Type
|
||||
value: application/json
|
||||
requestBody:
|
||||
type: application/json
|
||||
data: |-
|
||||
{
|
||||
"task_description": "查找当前目录下大于 10MB 的文件",
|
||||
"difficulty_level": "beginner"
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
method: post
|
||||
url: "{{baseUrl}}/api/aimodelapp/markdown_formatting"
|
||||
name: Markdown 排版
|
||||
parameters:
|
||||
header:
|
||||
- name: Authorization
|
||||
value: Bearer {{bearerToken}}
|
||||
- name: Content-Type
|
||||
value: application/json
|
||||
requestBody:
|
||||
type: application/json
|
||||
data: |-
|
||||
{
|
||||
"article_text": "第一段内容\n\n第二段内容",
|
||||
"emoji_style": "balanced",
|
||||
"markdown_option": "standard"
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
{}
|
||||
16
api-docs/infogenie-api-apifox/AI 模型应用/应用/亲属称呼计算.http.yaml
Normal file
16
api-docs/infogenie-api-apifox/AI 模型应用/应用/亲属称呼计算.http.yaml
Normal file
@@ -0,0 +1,16 @@
|
||||
method: post
|
||||
url: "{{baseUrl}}/api/aimodelapp/kinship-calculator"
|
||||
name: 亲属称呼计算
|
||||
parameters:
|
||||
header:
|
||||
- name: Authorization
|
||||
value: Bearer {{bearerToken}}
|
||||
- name: Content-Type
|
||||
value: application/json
|
||||
requestBody:
|
||||
type: application/json
|
||||
data: |-
|
||||
{
|
||||
"relation_chain": "我妈妈的姐姐的儿子",
|
||||
"dialects": ["粤语", "闽南语"]
|
||||
}
|
||||
16
api-docs/infogenie-api-apifox/AI 模型应用/应用/变量命名建议.http.yaml
Normal file
16
api-docs/infogenie-api-apifox/AI 模型应用/应用/变量命名建议.http.yaml
Normal file
@@ -0,0 +1,16 @@
|
||||
method: post
|
||||
url: "{{baseUrl}}/api/aimodelapp/variable-naming"
|
||||
name: 变量命名建议
|
||||
parameters:
|
||||
header:
|
||||
- name: Authorization
|
||||
value: Bearer {{bearerToken}}
|
||||
- name: Content-Type
|
||||
value: application/json
|
||||
requestBody:
|
||||
type: application/json
|
||||
data: |-
|
||||
{
|
||||
"description": "存储用户最近一次登录时间的字段",
|
||||
"language": "javascript"
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
method: get
|
||||
url: "{{baseUrl}}/api/aimodelapp/models"
|
||||
name: 可用模型列表
|
||||
parameters:
|
||||
header:
|
||||
- name: Authorization
|
||||
value: Bearer {{bearerToken}}
|
||||
16
api-docs/infogenie-api-apifox/AI 模型应用/应用/多语言翻译.http.yaml
Normal file
16
api-docs/infogenie-api-apifox/AI 模型应用/应用/多语言翻译.http.yaml
Normal file
@@ -0,0 +1,16 @@
|
||||
method: post
|
||||
url: "{{baseUrl}}/api/aimodelapp/translation"
|
||||
name: 多语言翻译
|
||||
parameters:
|
||||
header:
|
||||
- name: Authorization
|
||||
value: Bearer {{bearerToken}}
|
||||
- name: Content-Type
|
||||
value: application/json
|
||||
requestBody:
|
||||
type: application/json
|
||||
data: |-
|
||||
{
|
||||
"source_text": "Hello, world!",
|
||||
"target_language": "zh-CN"
|
||||
}
|
||||
15
api-docs/infogenie-api-apifox/AI 模型应用/应用/姓名分析.http.yaml
Normal file
15
api-docs/infogenie-api-apifox/AI 模型应用/应用/姓名分析.http.yaml
Normal file
@@ -0,0 +1,15 @@
|
||||
method: post
|
||||
url: "{{baseUrl}}/api/aimodelapp/name-analysis"
|
||||
name: 姓名分析
|
||||
parameters:
|
||||
header:
|
||||
- name: Authorization
|
||||
value: Bearer {{bearerToken}}
|
||||
- name: Content-Type
|
||||
value: application/json
|
||||
requestBody:
|
||||
type: application/json
|
||||
data: |-
|
||||
{
|
||||
"name": "张晨曦"
|
||||
}
|
||||
17
api-docs/infogenie-api-apifox/AI 模型应用/应用/现代文转文言.http.yaml
Normal file
17
api-docs/infogenie-api-apifox/AI 模型应用/应用/现代文转文言.http.yaml
Normal file
@@ -0,0 +1,17 @@
|
||||
method: post
|
||||
url: "{{baseUrl}}/api/aimodelapp/classical_conversion"
|
||||
name: 现代文转文言
|
||||
parameters:
|
||||
header:
|
||||
- name: Authorization
|
||||
value: Bearer {{bearerToken}}
|
||||
- name: Content-Type
|
||||
value: application/json
|
||||
requestBody:
|
||||
type: application/json
|
||||
data: |-
|
||||
{
|
||||
"modern_text": "今天天气很好,我们去公园散步。",
|
||||
"style": "古雅",
|
||||
"article_type": "散文"
|
||||
}
|
||||
16
api-docs/infogenie-api-apifox/AI 模型应用/应用/表情符号生成.http.yaml
Normal file
16
api-docs/infogenie-api-apifox/AI 模型应用/应用/表情符号生成.http.yaml
Normal file
@@ -0,0 +1,16 @@
|
||||
method: post
|
||||
url: "{{baseUrl}}/api/aimodelapp/expression-maker"
|
||||
name: 表情符号生成
|
||||
parameters:
|
||||
header:
|
||||
- name: Authorization
|
||||
value: Bearer {{bearerToken}}
|
||||
- name: Content-Type
|
||||
value: application/json
|
||||
requestBody:
|
||||
type: application/json
|
||||
data: |-
|
||||
{
|
||||
"text": "今天答辩顺利通过了!",
|
||||
"style": "mixed"
|
||||
}
|
||||
17
api-docs/infogenie-api-apifox/AI 模型应用/应用/诗歌生成.http.yaml
Normal file
17
api-docs/infogenie-api-apifox/AI 模型应用/应用/诗歌生成.http.yaml
Normal file
@@ -0,0 +1,17 @@
|
||||
method: post
|
||||
url: "{{baseUrl}}/api/aimodelapp/poetry"
|
||||
name: 诗歌生成
|
||||
parameters:
|
||||
header:
|
||||
- name: Authorization
|
||||
value: Bearer {{bearerToken}}
|
||||
- name: Content-Type
|
||||
value: application/json
|
||||
requestBody:
|
||||
type: application/json
|
||||
data: |-
|
||||
{
|
||||
"theme": "春雨与江南",
|
||||
"style": "现代诗",
|
||||
"mood": "宁静"
|
||||
}
|
||||
Reference in New Issue
Block a user