import requests
import json
url = "https://api.minimax.chat/v1/assistants/create?GroupId=$GroupId"
payload = json.dumps({
  "model": "abab5.5",
  "name": "小说解读专家",
  "description": "小说解读专家,用在小说解读场景中回答用户问题",
  "instructions": "是一个小说解读专家,读过万卷书,了解小说里的各种细致情节,另外也非常热心,会热情的帮读者解答小说里的问题",
  "metadata": {
    "key1": "value1",
    "key2": "value2"
  },
  "tools": [
    {
      "type": "code_interpreter"
    },
    {
      "type": "retrieval"
    },
    {
      "type": "web_search"
    }
  ]
})
headers = {
  'Authorization': 'Bearer $API_KEY',
  'Content-Type': 'application/json',
}
response = requests.request("POST", url, headers=headers, data=payload)
print(response.text)
curl --location 'https://api.minimax.chat/v1/assistants/create?GroupId=$GroupId' \
--header 'Authorization: Bearer $API_KEY' \
--header 'Content-Type: application/json' \
--data '{
    "model": "abab5.5",
    "name": "小说解读专家",
    "description": "小说解读专家,用在小说解读场景中回答用户问题",
    "instructions": "是一个小说解读专家,读过万卷书,了解小说里的各种细致情节,另外也非常热心,会热情的帮读者解答小说里的问题",
    "metadata": {
        "key1": "value1",
        "key2": "value2"
    },
    "tools": [
        {"type":"code_interpreter"},
        {"type":"retrieval"},
        {"type":"web_search"}
    ]
}'import requests
import json
url = "https://api.minimax.chat/v1/threads/create?GroupId=$GroupId"
payload = json.dumps({
  "metadata": {
    "key1": "value1",
    "key2": "value2"
  }
})
headers = {
  'Authorization': 'Bearer $API_KEY',
  'Content-Type': 'application/json',
}
response = requests.request("POST", url, headers=headers, data=payload)
print(response.text)
curl --location 'https://api.minimax.chat/v1/threads/create?GroupId=$GroupId' \
--header 'Authorization: Bearer $API_KEY' \
--header 'Content-Type: application/json' \
--data '{
    "metadata": {
        "key1": "value1",
        "key2": "value2"
    }
}'import requests
import json
url = "https://api.minimax.chat/v1/threads/messages/add?GroupId=$GroupId"
payload = json.dumps({
  "thread_id": "$Thread_Id",
  "role": "user",
  "content": "在倚天屠龙记中,无俗念词的作者是谁?",
  "metadata": {
    "key1": "value1",
    "key2": "value2"
  },
  "file_ids": [
      "${file id}"
  ]
})
headers = {
  'Authorization': 'Bearer $API_KEY',
  'Content-Type': 'application/json',
}
response = requests.request("POST", url, headers=headers, data=payload)
print(response.text)
curl --location 'https://api.minimax.chat/v1/threads/messages/add?GroupId=$GroupId' \
--header 'Authorization: Bearer $API_KEY' \
--header 'Content-Type: application/json' \
--data '{
    "thread_id": "$Thread_Id",
    "role": "user",
    "content": "在倚天屠龙记中,无俗念词的作者是谁?",
    "metadata": {
        "key1": "value1",
        "key2": "value2"
    },
    "file_ids": [
      "${file id}"
  ]
}'import requests
import json
url = "https://api.minimax.chat/v1/threads/messages/list?GroupId=$GroupId"
payload = json.dumps({
  "thread_id": "$Thread_Id"
})
headers = {
  'Authorization': 'Bearer $API_KEY',
  'Content-Type': 'application/json',
}
response = requests.request("GET", url, headers=headers, data=payload)
print(response.text)
curl --location --request GET 'https://api.minimax.chat/v1/threads/messages/list?GroupId=$GroupId' \
--header 'Authorization: Bearer $API_KEY' \
--header 'Content-Type: application/json' \
--data '{
"thread_id": "$Thread_Id"
}'import requests
import json
url = "https://api.minimax.chat/v1/threads/run/create?GroupId=$GroupId"
payload = json.dumps({
  "thread_id": "$Thread_Id",
  "assistant_id": "$Assistant_Id"
})
headers = {
  'Authorization': 'Bearer $API_KEY',
  'Content-Type': 'application/json',
}
response = requests.request("POST", url, headers=headers, data=payload)
print(response.text)
curl --location 'https://api.minimax.chat/v1/threads/run/create?GroupId=$GroupId' \
--header 'Authorization: Bearer $API_KEY' \
--header 'Content-Type: application/json' \
--data '{
    "thread_id": "$Thread_Id",
    "assistant_id": "$Assistant_Id"
}'import requests
import json
url = "https://api.minimax.chat/v1/threads/run/retrieve?GroupId=$GroupId"
payload = json.dumps({
  "thread_id": "$Thread_Id",
  "run_id": "$Run_Id"
})
headers = {
  'Authorization': 'Bearer $API_KEY',
  'Content-Type': 'application/json'
}
response = requests.request("GET", url, headers=headers, data=payload)
print(response.text)
curl --location --request GET 'https://api.minimax.chat/v1/threads/run/retrieve?GroupId=$GroupId' \
--header 'Authorization: Bearer $API_KEY' \
--header 'Content-Type: application/json' \
--data '{
    "thread_id": "$Thread_Id",
    "run_id": "$Run_Id"
}'import requests
import json
url = "https://api.minimax.chat/v1/threads/messages/list?GroupId=$GroupId"
payload = json.dumps({
  "thread_id": "$Thread_Id"
})
headers = {
  'Authorization': 'Bearer $API_KEY',
  'Content-Type': 'application/json'
}
response = requests.request("GET", url, headers=headers, data=payload)
print(response.text)
curl --location --request GET 'https://api.minimax.chat/v1/threads/messages/list?GroupId=$GroupId' \
--header 'Authorization: Bearer $API_KEY' \
--header 'Content-Type: application/json' \
--data '{
    "thread_id": "$Thread_Id"
}'import requests
import json
import time
# 请使用自己的groupid和api key
GroupId = ${group_id}
headers = {
    'Authorization': 'Bearer ${api_key}',
    'Content-Type': 'application/json'
}
headers_retrieval = {
    'Authorization': 'Bearer  ${api_key}',
    'authority': 'api.minimax.chat',
}
# 流程零:上传文档
def create_file():
    url = f"https://api.minimax.chat/v1/files/upload?GroupId={GroupId}"
    data = {
        'purpose': 'assistants'
    }
    files = {
        'file': open('./倚天屠龙记.txt', 'rb')
    }
    response = requests.post(url, headers=headers_retrieval, data=data,files=files)
    return response.json()
#流程一:创建助手
def create_assistant(file_id):
    url = f"https://api.minimax.chat/v1/assistants/create?GroupId={GroupId}"
    payload = json.dumps({
        "model": "abab5.5",# 模型版本,目前仅支持abab5.5
        "name": "小说专家", # 助手名称
        "description": "小说专家,用在小说解读场景中回答用户问题", # 助手描述
        "instructions": "是一个小说专家,读过万卷书,了解小说里的各种细致情节,另外也非常热心,会热情的帮读者解答小说里的问题",# 助手设定(即bot_setting)
        "file_ids": [
            str(file_id)
        ],
        #"tools": [{"type": "code_interpreter"}, {"type": "web_search"}]
        "tools": [{"type": "retrieval"},{"type": "web_search"}]
    })
    response = requests.post(url, headers=headers, data=payload)
    return response.json()
# 流程二:创建线程
def create_thread():
    url = f"https://api.minimax.chat/v1/threads/create?GroupId={GroupId}"
    response = requests.post( url, headers=headers)
    return response.json()
# 流程三:往线程里添加信息
def add_message_to_thread(thread_id):
    url = f"https://api.minimax.chat/v1/threads/messages/add?GroupId={GroupId}"
    payload = json.dumps({
        "thread_id": thread_id,
        "role": "user",
        "content": "在倚天屠龙记中,无俗念词的作者是谁?",
    })
    response = requests.post(url, headers=headers, data=payload)
    return response.json()
# 流程四:使用助手处理该线程
def run_thread_with_assistant(thread_id, assistant_id):
    time.sleep(200) #创建assistants进行向量化以及存储时需要一定的时间,可以考虑使用retrieve assistant检索是否创建成功
    url = f"https://api.minimax.chat/v1/threads/run/create?GroupId={GroupId}"
    payload = json.dumps({
        "thread_id": thread_id,
        "assistant_id": assistant_id
    })
    response = requests.post(url, headers=headers, data=payload)
    return response.json()
# 流程五:获取线程中助手处理出的新信息
def get_thread_messages(thread_id):
    url = f"https://api.minimax.chat/v1/threads/messages/list?GroupId={GroupId}"
    payload = json.dumps({
        "thread_id": thread_id
    })
    response = requests.get(url, headers=headers, data=payload)
    return response.json()
def check_thread_run_status(thread_id, run_id):
    url = f"https://api.minimax.chat/v1/threads/run/retrieve?GroupId={GroupId}"
    payload = json.dumps({
        "thread_id": str(thread_id),
        "run_id": str(run_id)
    })
    completed = False
    while not completed:
        response = requests.request("GET", url, headers=headers, data=payload)
        if response.status_code == 200:
            response_data = response.json()
            status = response_data.get('status', '')
            print(f"Status: {status}")
            if status == 'completed':
                completed = True
                print("Process completed, exiting loop.")
            else:
                time.sleep(2)  # 如果状态不是completed,等待两秒后重新请求
        else:
            print(f"Error: {response.status_code}")
            break  # 如果请求失败,退出循环
    return completed
# 主流程
def main():
    # 上传文档
    file_response = create_file()
    file_id = file_response.get('file', {}).get('file_id')
    print("file_id:",file_id)
    # 创建助手
    assistant_response = create_assistant(file_id)
    assistant_id = assistant_response.get('id', '')
    print("assistant_id:",assistant_id)
    # 创建线程
    thread_response = create_thread()
    thread_id = thread_response.get('id', '')
    print("thread_id:",thread_id)
    # 往线程里添加信息
    add_message_to_thread(thread_id)  # 不保存返回值
    # 使用助手处理该线程
    run_response = run_thread_with_assistant(thread_id, assistant_id)
    run_id = run_response.get('id', '')  # 假设run_response是正确的JSON响应,并包含run_id
    print("run_id:",run_id)
    # 检查助手处理状态
    if check_thread_run_status(thread_id, run_id):
        # 获取线程中助手处理出的新信息
        thread_messages_response = get_thread_messages(thread_id)
        # 打印JSON数据
        print(json.dumps(thread_messages_response, indent=4, ensure_ascii=False))
if __name__ == "__main__":
    main()file_id: 891849227529
assistant_id: asst_9f399f168c445093853ba08332346e
thread_id: thread_8578198eb840cbaec7344b56ae2f8f
run_id: run_080adf40e20749b34e59225326f3
Status: in_progress
Status: in_progress
Status: completed
Process completed, exiting loop.
{
    "object": "list",
    "data": [
        {
            "id": "msg_ff35404520504e1787b08c74058b928d",
            "object": "message",
            "created_at": 1703419324,
            "thread_id": "thread_8578198eb840cbaec7344b56ae2f8f",
            "role": "user",
            "content": [
                {
                    "type": "text",
                    "text": {
                        "value": "在倚天屠龙记中,无俗念词的作者是谁?",
                        "annotations": []
                    }
                }
            ],
            "file_ids": null,
            "assistant_id": "asst_9f399f168c445093853ba08332346e",
            "run_id": "run_080adf40e20749b3914e5109225326f3",
            "metadata": null
        },
        {
            "id": "msg_01c12f5874174e87950bfa5f4dcd0d3c",
            "object": "message",
            "created_at": 1703419528,
            "thread_id": "thread_8578198eb840cbaec7344b56ae2f8f",
            "role": "ai",
            "content": [
                {
                    "type": "text",
                    "text": {
                        "value": "在《倚天屠龙记》中,无俗念词的作者是南宋末年的一位武学名家,有道之士,他姓丘,名处机,道号长春子,名列全真七子之一,是全真教中出类拔萃的人物。【1†source】",
                        "annotations": [
                            {
                                "type": "file_citation",
                                "text": "【1†source】",
                                "start_index": 71,
                                "end_index": 81,
                                "file_citation": {
                                    "file_id": "",
                                    "quote": "###《倚天屠龙记》\n\n###第01章 天涯思君不可忘\n\n“春游浩荡,是年年寒食,梨花时节。白锦无纹香烂漫,玉树琼苞堆雪。静夜沉沉,浮光霭霭,冷浸溶溶月。人间天上,烂银霞照通彻。\n\n浑似姑射真人,天姿灵秀,意气殊高洁。万蕊参差谁信道,不与群芳同列。浩气清英,仙才卓荦,下土难分别。瑶台归去,洞天方看清绝。”\n\n作这一首无俗念词的,乃南宋末年一位武学名家,有道之士。此人姓丘,名处机,道号长春子,名列全真七子之一,是全真教中出类拔萃的人物。词品评论此词道:“长春,世之所谓仙人也,而词之清拔如此”。\n\n这首词诵的似是梨花,其实同中真意却是赞誉一位身穿白衣的美貌少女,说她“浑似姑射真人,天姿灵秀,意气殊高洁”,又说她“浩气清英,仙才卓荦”,“不与群芳同列”。词中所颂这美女,乃古墓派传人小龙女。她一生爱穿白衣,当真如风拂玉树,雪裹琼苞,兼之生性清冷,实当得起“冷浸溶溶月”的形容,以“无俗念”三字赠之,可说十分贴切。长春子丘处机和她在终南山上比邻而居,当年一见,便写下这首词来。\n\n这时丘处机逝世已久,小龙女也已嫁与神雕大侠杨过为妻。在河南少室山山道之上,却另有一个少女,正在低低念诵此词。"
                                }
                            }
                        ]
                    }
                }
            ],
            "file_ids": null,
            "assistant_id": "asst_9f399f168c445093853ba08332346e",
            "run_id": "run_080adf40e20749b34e59225326f3",
            "metadata": null
        }
    ],
    "first_id": "msg_ff35404520504e1787b08c74058b928d",
    "last_id": "msg_01c12f5874174e87950bfa5f4dcd0d3c",
    "base_resp": {
        "status_code": 0,
        "status_msg": "success"
    }
}import requests
import json
import time
# 请使用自己的groupid和api key
GroupId = ${group_id}
headers = {
    'Authorization': 'Bearer ${api_key}',
    'Content-Type': 'application/json'
}
headers_retrieval = {
    'Authorization': 'Bearer  ${api_key}',
    'authority': 'api.minimax.chat',
}
# 流程零:上传文档
def create_file():
    url = f"https://api.minimax.chat/v1/files/upload?GroupId={GroupId}"
    data = {
        'purpose': 'assistants'
    }
    files = {
        'file': open('./M国gdp.csv', 'rb')
    }
    response = requests.post(url, headers=headers_retrieval, data=data,files=files)
    return response.json()
#流程一:创建助手
def create_assistant(file_id):
    url = f"https://api.minimax.chat/v1/assistants/create?GroupId={GroupId}"
    payload = json.dumps({
        "model": "abab5.5",# 模型版本,目前仅支持abab5.5
        "name": "数据分析师", # 助手名称
        "description": "数据分析师,用在数据分析场景", # 助手描述
        "instructions": "是一个数据分析师,善于读取文件进行数据分析,并能严谨精准的给出分析结论",# 助手设定(即bot_setting)
        "file_ids": [
            str(file_id)
        ],
        #"tools": [{"type": "code_interpreter"}, {"type": "web_search"}]
        "tools": [{"type": "code_interpreter"},{"type": "web_search"}]
    })
    response = requests.post(url, headers=headers, data=payload)
    return response.json()
# 流程二:创建线程
def create_thread():
    url = f"https://api.minimax.chat/v1/threads/create?GroupId={GroupId}"
    response = requests.post( url, headers=headers)
    return response.json()
# 流程三:往线程里添加信息
def add_message_to_thread(thread_id):
    url = f"https://api.minimax.chat/v1/threads/messages/add?GroupId={GroupId}"
    payload = json.dumps({
        "thread_id": thread_id,
        "role": "user",
        "content": "M国的2000-2005年的gdp趋势是怎么样的,2005同比增长了还是下降了?",
    })
    response = requests.post(url, headers=headers, data=payload)
    return response.json()
# 流程四:使用助手处理该线程
def run_thread_with_assistant(thread_id, assistant_id):
    time.sleep(200) #创建assistants进行向量化以及存储时需要一定的时间,可以考虑使用retrieve assistant检索是否创建成功
    url = f"https://api.minimax.chat/v1/threads/run/create?GroupId={GroupId}"
    payload = json.dumps({
        "thread_id": thread_id,
        "assistant_id": assistant_id
    })
    response = requests.post(url, headers=headers, data=payload)
    return response.json()
# 流程五:获取线程中助手处理出的新信息
def get_thread_messages(thread_id):
    url = f"https://api.minimax.chat/v1/threads/messages/list?GroupId={GroupId}"
    payload = json.dumps({
        "thread_id": thread_id
    })
    response = requests.get(url, headers=headers, data=payload)
    return response.json()
def check_thread_run_status(thread_id, run_id):
    url = f"https://api.minimax.chat/v1/threads/run/retrieve?GroupId={GroupId}"
    payload = json.dumps({
        "thread_id": str(thread_id),
        "run_id": str(run_id)
    })
    completed = False
    while not completed:
        response = requests.request("GET", url, headers=headers, data=payload)
        if response.status_code == 200:
            response_data = response.json()
            status = response_data.get('status', '')
            print(f"Status: {status}")
            if status == 'completed':
                completed = True
                print("Process completed, exiting loop.")
            else:
                time.sleep(2)  # 如果状态不是completed,等待两秒后重新请求
        else:
            print(f"Error: {response.status_code}")
            break  # 如果请求失败,退出循环
    return completed
# 主流程
def main():
    # 上传文档
    file_response = create_file()
    file_id = file_response.get('file', {}).get('file_id')
    print("file_id:",file_id)
    # 创建助手
    assistant_response = create_assistant(file_id)
    assistant_id = assistant_response.get('id', '')
    print("assistant_id:",assistant_id)
    # 创建线程
    thread_response = create_thread()
    thread_id = thread_response.get('id', '')
    print("thread_id:",thread_id)
    # 往线程里添加信息
    add_message_to_thread(thread_id)  # 不保存返回值
    # 使用助手处理该线程
    run_response = run_thread_with_assistant(thread_id, assistant_id)
    run_id = run_response.get('id', '')  # 假设run_response是正确的JSON响应,并包含run_id
    print("run_id:",run_id)
    # 检查助手处理状态
    if check_thread_run_status(thread_id, run_id):
        # 获取线程中助手处理出的新信息
        thread_messages_response = get_thread_messages(thread_id)
        # 打印JSON数据
        print(json.dumps(thread_messages_response, indent=4, ensure_ascii=False))
if __name__ == "__main__":
    main()file_id: 892087299164
assistant_id: asst_e61ea32224284aacc40b36a6d61b
thread_id: thread_b6e8ef88333c4f148a84a5f45606
run_id: run_3c184429d47f414294403fc59c560
Status: in_progress
Status: in_progress
Status: in_progress
Status: in_progress
Status: in_progress
Status: completed
Process completed, exiting loop.
{
    "object": "list",
    "data": [
        {
            "id": "msg_d8ca1b4cd4644f91a75807b5549a17",
            "object": "message",
            "created_at": 1703418313,
            "thread_id": "thread_b6e8ef88334f118c248a84a5f45606",
            "role": "user",
            "content": [
                {
                    "type": "text",
                    "text": {
                        "value": "M国的2000-2005年的gdp趋势是怎么样的,2005同比增长了还是下降了?",
                        "annotations": []
                    }
                }
            ],
            "file_ids": null,
            "assistant_id": "asst_e61ea32224284aacc40b36a6d61b",
            "run_id": "run_3c184429d47f414294403fc59c560",
            "metadata": null
        },
        {
            "id": "msg_d6166cd827134c93afb5c3c49204a784",
            "object": "message",
            "created_at": 1703418523,
            "thread_id": "thread_b6e8ef88333c4f148a84a5f45606",
            "role": "ai",
            "content": [
                {
                    "type": "text",
                    "text": {
                        "value": "根据提供的数据,M国的GDP在2000年至2005年间的趋势如下:\n\n- 2000年:GDP为1\n- 2001年:GDP为2\n- 2002年:GDP为3\n- 2003年:GDP为4\n- 2004年:GDP为5\n- 2005年:GDP为6\n\n因此,2005年的GDP相比2004年增长了。",
                        "annotations": []
                    }
                }
            ],
            "file_ids": null,
            "assistant_id": "asst_e61ea32224284aacc40b36a6d61b",
            "run_id": "run_3c184429d47f414294403fc59c560",
            "metadata": null
        }
    ],
    "first_id": "msg_d8ca1b4cd4644f91a757f807b5549a17",
    "last_id": "msg_d6166cd827134c93afb5c3c49204a784",
    "base_resp": {
        "status_code": 0,
        "status_msg": "success"
    }
}import json
import time
import requests
# # 请使用自己的groupid和api key
# GroupId = ${group_id}
# headers = {
#     'Authorization': 'Bearer ${api_key}',
#     'Content-Type': 'application/json'
# }
#流程一:创建助手
def create_assistant():
    url = f"https://api.minimax.chat/v1/assistants/create?GroupId={GroupId}"
    payload = json.dumps({
        "model": "abab5.5",# 模型版本,目前仅支持abab5.5
        "name": "AI搜索引擎", # 助手名称
        "description": "AI搜索引擎,用在搜索场景", # 助手描述
        "instructions": "是一个AI搜索引擎,擅长利用网络搜索参考资料回答用的问题",# 助手设定(即bot_setting)
        #"tools": [{"type": "code_interpreter"}, {"type": "web_search"}]
        "tools": [{"type": "web_search"}]
    })
    response = requests.post(url, headers=headers, data=payload)
    return response.json()
# 流程二:创建线程
def create_thread():
    url = f"https://api.minimax.chat/v1/threads/create?GroupId={GroupId}"
    response = requests.post( url, headers=headers)
    return response.json()
# 流程三:往线程里添加信息
def add_message_to_thread(thread_id):
    url = f"https://api.minimax.chat/v1/threads/messages/add?GroupId={GroupId}"
    payload = json.dumps({
        "thread_id": thread_id,
        "role": "user",
        "content": "上海迪士尼2024圣诞节会举办什么活动?",
    })
    response = requests.post(url, headers=headers, data=payload)
    return response.json()
# 流程四:使用助手处理该线程
def run_thread_with_assistant(thread_id, assistant_id):
    time.sleep(2) #创建assistants进行向量化以及存储时需要一定的时间,可以考虑使用retrieve assistant检索是否创建成功
    url = f"https://api.minimax.chat/v1/threads/run/create?GroupId={GroupId}"
    payload = json.dumps({
        "thread_id": thread_id,
        "assistant_id": assistant_id
    })
    response = requests.post(url, headers=headers, data=payload)
    return response.json()
# 流程五:获取线程中助手处理出的新信息
def get_thread_messages(thread_id):
    url = f"https://api.minimax.chat/v1/threads/messages/list?GroupId={GroupId}"
    payload = json.dumps({
        "thread_id": thread_id
    })
    response = requests.get(url, headers=headers, data=payload)
    return response.json()
def check_thread_run_status(thread_id, run_id):
    url = f"https://api.minimax.chat/v1/threads/run/retrieve?GroupId={GroupId}"
    payload = json.dumps({
        "thread_id": str(thread_id),
        "run_id": str(run_id)
    })
    completed = False
    while not completed:
        response = requests.request("GET", url, headers=headers, data=payload)
        if response.status_code == 200:
            response_data = response.json()
            status = response_data.get('status', '')
            print(f"Status: {status}")
            if status == 'completed':
                completed = True
                print("Process completed, exiting loop.")
            else:
                time.sleep(2)  # 如果状态不是completed,等待两秒后重新请求
        else:
            print(f"Error: {response.status_code}")
            break  # 如果请求失败,退出循环
    return completed
def post_process_message(message):
    message_content = message["content"][0]["text"]
    annotations = message_content["annotations"]
    citations = []
    # Iterate over the annotations and add footnotes
    for index, annotation in enumerate(annotations):
        # Replace the text with a footnote
        message_content["value"] = message_content["value"].replace(annotation["text"], f' [{index}]')
        # Gather citations based on annotation attributes
        if annotation["type"] == "file_citation":
            citations.append(f'[{index}] {annotation["file_citation"]["quote"]}')
        elif annotation["type"] == "web_citation":
            res = f"[{index}]"
            if annotation["web_citation"]["url"]:
                res += f' 网址:{annotation["web_citation"]["url"]}'
            if annotation["web_citation"]["quote"]:
                res += f' {annotation["web_citation"]["quote"]}'
            citations.append(res)
    message_content["value"] += '\n' + '\n'.join(citations)
    print(message_content["value"])
# 主流程
def main():
    # 创建助手
    assistant_response = create_assistant()
    assistant_id = assistant_response.get('id', '')
    print("assistant_id:",assistant_id)
    # 创建线程
    thread_response = create_thread()
    thread_id = thread_response.get('id', '')
    print("thread_id:",thread_id)
    # 往线程里添加信息
    add_message_to_thread(thread_id)  # 不保存返回值
    # 使用助手处理该线程
    run_response = run_thread_with_assistant(thread_id, assistant_id)
    run_id = run_response.get('id', '')  # 假设run_response是正确的JSON响应,并包含run_id
    print("run_id:",run_id)
    # 检查助手处理状态
    if check_thread_run_status(thread_id, run_id):
        # 获取线程中助手处理出的新信息
        thread_messages_response = get_thread_messages(thread_id)
        # 打印JSON数据
        print(json.dumps(thread_messages_response, indent=4, ensure_ascii=False))
        # 打印后处理后的信息
        print(post_process_message(thread_messages_response["data"][-1]))
if __name__ == "__main__":
    main()assistant_id: asst_5e65f2aae3a044f2b9c26012aaed1a95
thread_id: thread_4f8d5e7dfd894d2186fe3baac45c0085
run_id: run_ef18b2b8185744c3a58453dc1020f497
Status: in_progress
Status: in_progress
Status: in_progress
Status: in_progress
Status: in_progress
Status: in_progress
Status: in_progress
Status: in_progress
Status: in_progress
Status: completed
Process completed, exiting loop.
{
    "object": "list",
    "data": [
        {
            "id": "msg_66a208c1de5d49ab88b664adef704364",
            "object": "message",
            "created_at": 1703579772,
            "thread_id": "thread_4f8d5e7dfd894d2186fe3baac45c0085",
            "role": "user",
            "content": [
                {
                    "type": "text",
                    "text": {
                        "value": "上海迪士尼2024圣诞节会举办什么活动?",
                        "annotations": []
                    }
                }
            ],
            "file_ids": null,
            "assistant_id": "asst_5e65f2aae3a044f2b9c26012aaed1a95",
            "run_id": "run_ef18b2b8185744c3a58453dc1020f497",
            "metadata": null
        },
        {
            "id": "msg_8f428bd21e4b403182ab0c5f6ea47781",
            "object": "message",
            "created_at": 1703579795,
            "thread_id": "thread_4f8d5e7dfd894d2186fe3baac45c0085",
            "role": "ai",
            "content": [
                {
                    "type": "text",
                    "text": {
                        "value": "2024年上海迪士尼的圣诞节活动主要包括以下部分:\n\n1. 米奇、达菲和朋友们一起点亮了魔法奇观环绕的圣诞大树,在烟花的照耀下,照亮了大家的童话梦想。这一活动会在上海迪士尼度假区圣诞季期间(2023年11月23日至2024年1月1日)举行。\n\n2. 圣诞树寻踪活动,游客可以加入我们庆祝的行列,走入暖心的童话故事,漫步小镇街头,一起寻踪不一样的圣诞奇妙。完成圣诞树寻踪任务后,即可获得一份精美小礼物。圣诞树寻踪小屋运营时间为周一至周四: 12:00 - 19:00; 周五至周日及2023年12月25日、2024年1月1日: 11:00 - 19:00;惊喜兑奖小屋运营时间为周一至周四 12:00 - 20:00。\n\n3. 迪士尼小镇也将变身童话圣诞世界,2023年11月23日起至2024年1月1日,米奇和朋友们、达菲和朋友们将换上圣诞新造型。\n\n4. 「奇妙集章 点亮童话圣诞」惊喜上线,完成任务,点亮印章,叠加3枚印章图案,就能解锁圣诞好礼【4†source】。\n\n5. 「迪士尼冬日奇幻冰雪节」将在2023年11月10日至2024年2月24日举行,这一活动将呈现梦幻冬日奇境,让即将到来的冬日暖意融融、爱意满满【5†source】。\n\n以上活动具体内容和时间可能会根据实际安排有所变动,建议您提前关注上海迪士尼度假区官方网站或官方社交媒体获取最新信息。",
                        "annotations": [
                            {
                                "type": "web_citation",
                                "text": "【4†source】",
                                "start_index": 454,
                                "end_index": 464,
                                "web_citation": {
                                    "url": "https://www.weibo.com/5200478600/NtfYcexxE",
                                    "quote": "#上海迪士尼童话圣诞# 🎄2023年11月23日起至2024年1月1日,上海迪士尼圣诞季来袭! 🌟米奇和朋友们、达菲和朋友们将换上圣诞新造型 💡达菲和玲娜贝儿将首次加入圣诞树点灯仪式! 🎉迪士尼小镇也将变身童话圣诞世界 ️"
                                }
                            },
                            {
                                "type": "web_citation",
                                "text": "【5†source】",
                                "start_index": 540,
                                "end_index": 550,
                                "web_citation": {
                                    "url": "https://www.weibo.com/5200478600/NuVFF7Enb",
                                    "quote": "#上海迪士尼童话圣诞# 🎉2023年12月1日起至2024年1月1日,「奇妙集章 点亮童话圣诞」惊喜上线啦! 完成任务,点亮印章,叠加3枚印章图案,就能解锁圣诞好礼,快来查收这份「圣诞集章攻略」吧~ 🎄童话圣诞正在进行中,等你前来集章,一起点亮属于你的节日祝愿吧~"
                                }
                            }
                        ]
                    }
                }
            ],
            "file_ids": null,
            "assistant_id": "asst_5e65f2aae3a044f2b9c26012aaed1a95",
            "run_id": "run_ef18b2b8185744c3a58453dc1020f497",
            "metadata": null
        }
    ],
    "first_id": "msg_66a208c1de5d49ab88b664adef704364",
    "last_id": "msg_8f428bd21e4b403182ab0c5f6ea47781",
    "base_resp": {
        "status_code": 0,
        "status_msg": "success"
    }
}
2024年上海迪士尼的圣诞节活动主要包括以下部分:
1. 米奇、达菲和朋友们一起点亮了魔法奇观环绕的圣诞大树,在烟花的照耀下,照亮了大家的童话梦想。这一活动会在上海迪士尼度假区圣诞季期间(2023年11月23日至2024年1月1日)举行。
2. 圣诞树寻踪活动,游客可以加入我们庆祝的行列,走入暖心的童话故事,漫步小镇街头,一起寻踪不一样的圣诞奇妙。完成圣诞树寻踪任务后,即可获得一份精美小礼物。圣诞树寻踪小屋运营时间为周一至周四: 12:00 - 19:00; 周五至周日及2023年12月25日、2024年1月1日: 11:00 - 19:00;惊喜兑奖小屋运营时间为周一至周四 12:00 - 20:00。
3. 迪士尼小镇也将变身童话圣诞世界,2023年11月23日起至2024年1月1日,米奇和朋友们、达菲和朋友们将换上圣诞新造型。
4. 「奇妙集章 点亮童话圣诞」惊喜上线,完成任务,点亮印章,叠加3枚印章图案,就能解锁圣诞好礼 [0]。
5. 「迪士尼冬日奇幻冰雪节」将在2023年11月10日至2024年2月24日举行,这一活动将呈现梦幻冬日奇境,让即将到来的冬日暖意融融、爱意满满 [1]。
以上活动具体内容和时间可能会根据实际安排有所变动,建议您提前关注上海迪士尼度假区官方网站或官方社交媒体获取最新信息。
[0] 网址:https://www.weibo.com/5200478600/NtfYcexxE #上海迪士尼童话圣诞# 🎄2023年11月23日起至2024年1月1日,上海迪士尼圣诞季来袭! 🌟米奇和朋友们、达菲和朋友们将换上圣诞新造型 💡达菲和玲娜贝儿将首次加入圣诞树点灯仪式! 🎉迪士尼小镇也将变身童话圣诞世界 ️
[1] 网址:https://www.weibo.com/5200478600/NuVFF7Enb #上海迪士尼童话圣诞# 🎉2023年12月1日起至2024年1月1日,「奇妙集章 点亮童话圣诞」惊喜上线啦! 完成任务,点亮印章,叠加3枚印章图案,就能解锁圣诞好礼,快来查收这份「圣诞集章攻略」吧~ 🎄童话圣诞正在进行中,等你前来集章,一起点亮属于你的节日祝愿吧~import json
import time
import requests
# 请使用自己的groupid和api key
GroupId = "${GroupId}"
headers = {
    'Authorization': 'Bearer ${api_key}',
    'Content-Type': 'application/json'
}
#流程一:创建助手
def create_assistant():
    url = f"https://api.minimax.chat/v1/assistants/create?GroupId={GroupId}"
    payload = json.dumps({
        "model": "abab5.5",# 模型版本,目前仅支持abab5.5
        "name": "function专家", # 助手名称
        "description": "根据用户定义的function,执行方案", # 助手描述
        "instructions": "根据用户定义的function,执行方案", # 助手设定(即bot_setting)
        "tools": [
            {
                "type": "function",
                "function": {
                    "name": "get_weather",
                    "description": "获得天气信息",
                    "parameters": {
                        "type": "object",
                        "required": ["location"],
                        "properties": {"location": {"type": "string", "description": "获得天气的地点"}},
                    },
                },
            }
        ],
    })
    response = requests.post(url, headers=headers, data=payload)
    return response.json()
# 流程二:创建线程
def create_thread():
    url = f"https://api.minimax.chat/v1/threads/create?GroupId={GroupId}"
    response = requests.post( url, headers=headers)
    return response.json()
# 流程三:往线程里添加信息
def add_message_to_thread(thread_id):
    url = f"https://api.minimax.chat/v1/threads/messages/add?GroupId={GroupId}"
    payload = json.dumps({
        "thread_id": thread_id,
        "role": "user",
        "content": "上海天气怎么样",
    })
    response = requests.post(url, headers=headers, data=payload)
    return response.json()
# 流程四:使用助手处理该线程
def run_thread_with_assistant(thread_id, assistant_id):
    url = f"https://api.minimax.chat/v1/threads/run/create?GroupId={GroupId}"
    payload = json.dumps({
        "thread_id": thread_id,
        "assistant_id": assistant_id
    })
    response = requests.post(url, headers=headers, data=payload)
    return response.json()
# 流程五:获取线程中助手处理出的新信息
def get_thread_messages(thread_id):
    url = f"https://api.minimax.chat/v1/threads/messages/list?GroupId={GroupId}"
    payload = json.dumps({
        "thread_id": thread_id
    })
    response = requests.get(url, headers=headers, data=payload)
    return response.json()
# 流程六:查看run
def check_thread_run_status(thread_id, run_id, wanted_status):
    url = f"https://api.minimax.chat/v1/threads/run/retrieve?GroupId={GroupId}"
    payload = json.dumps({
        "thread_id": str(thread_id),
        "run_id": str(run_id)
    })
    completed = False
    max_count = 10
    count = 0
    while not completed and count < max_count:
        response = requests.request("GET", url, headers=headers, data=payload)
        if response.status_code == 200:
            response_data = response.json()
            status = response_data.get('status', '')
            print(f"Status: {status}")
            if status == wanted_status:
                completed = True
                print("Process completed, exiting loop.")
            else:
                time.sleep(2)  # 如果状态不是completed,等待两秒后重新请求
        else:
            print(f"Error: {response.status_code}")
            break  # 如果请求失败,退出循环
        count += 1
    return completed
# 流程七:查看required_action
def get_required_action(thread_id, run_id):
    url = f"https://api.minimax.chat/v1/threads/run/retrieve?GroupId={GroupId}"
    payload = json.dumps(
        {
            "thread_id": thread_id,
            "run_id": run_id
        }
    )
    response = requests.request("GET", url, headers=headers, data=payload)
    required_action = response.json()["required_action"]
    return required_action
# 流程八:提交结果
def submit_output(thread_id, run_id, required_action, output):
    url = f"https://api.minimax.chat/v1/threads/run/submit_tool_outputs?GroupId={GroupId}"
    payload = json.dumps(
        {
            "thread_id": thread_id,
            "run_id": run_id,
            "tool_outputs": [{
                "tool_call_id": required_action["submit_tool_outputs"]["tool_calls"][0]["id"],
                "output": output,
            }]
        }
    )
    response = requests.request("POST", url, headers=headers, data=payload)
    return response.json()
def main():
    # 创建助手
    assistant_response = create_assistant()
    assistant_id = assistant_response.get('id', '')
    print("assistant_id:",assistant_id)
    # 创建线程
    thread_response = create_thread()
    thread_id = thread_response.get('id', '')
    print("thread_id:",thread_id)
    # 往线程里添加信息
    add_message_to_thread(thread_id)  # 不保存返回值
    # 使用助手处理该线程
    run_response = run_thread_with_assistant(thread_id, assistant_id)
    run_id = run_response.get('id', '')  # 假设run_response是正确的JSON响应,并包含run_id
    print("run_id:",run_id)
    # 检查助手处理状态
    if check_thread_run_status(thread_id, run_id, "requires_action"):
        required_action = get_required_action(thread_id, run_id)
        # fc_output = "上海天气晴朗"
        fc_output = '{"result": "上海最高气温7度 最低零下一度 晴"}'
        resp = submit_output(thread_id, run_id, required_action, fc_output)
        print(resp)
    # 检查助手处理状态
    if check_thread_run_status(thread_id, run_id, "completed"):
        # 获取线程中助手处理出的新信息
        thread_messages_response = get_thread_messages(thread_id)
        # 打印JSON数据
        print(json.dumps(thread_messages_response, indent=4, ensure_ascii=False))
if __name__ == "__main__":
    main()
16:21
assistant_id: asst_d7b4152fa8414d4e804733d35d445064
thread_id: thread_0a98d23117424cf088af4c32f99738ce
run_id: run_072537334b2f426eade029a77e6410c5
Status: in_progress
Status: requires_action
Process completed, exiting loop.
{'id': 'run_072537334b2f426eade029a77e6410c5', 'object': 'thread.run', 'created_at': 1703492444, 'assistant_id': 'asst_d7b4152fa8414d4e804733d35d445064', 'thread_id': 'thread_0a98d23117424cf088af4c32f99738ce', 'run_id': '', 'status': 'queued', 'started_at': 1703492444, 'expires_at': 0, 'cancelled_at': 0, 'failed_at': 0, 'completed_at': 0, 'last_error': None, 'model': 'abab5.5-chat', 'instructions': '根据用户定义的function,执行方案', 'tools': [{'type': 'function', 'function': {'name': 'get_weather', 'description': '获得天气信息', 'parameters': {'type': 'object', 'required': ['location'], 'properties': {'location': {'type': 'string', 'description': '获得天气的地点'}}}}}], 'file_ids': None, 'metadata': None, 'base_resp': {'status_code': 0, 'status_msg': 'success'}}
Status: in_progress
Status: completed
Process completed, exiting loop.
{
    "object": "list",
    "data": [
        {
            "id": "msg_fd788f009f7146a4835bedcee03c12ce",
            "object": "message",
            "created_at": 1703492444,
            "thread_id": "thread_0a98d23117424cf088af4c32f99738ce",
            "role": "user",
            "content": [
                {
                    "type": "text",
                    "text": {
                        "value": "上海天气怎么样",
                        "annotations": []
                    }
                }
            ],
            "file_ids": null,
            "assistant_id": "asst_d7b4152fa8414d4e804733d35d445064",
            "run_id": "run_072537334b2f426eade029a77e6410c5",
            "metadata": null
        },
        {
            "id": "msg_d6e3ef29ff7342a698cb9bc9c571edca",
            "object": "message",
            "created_at": 1703492448,
            "thread_id": "thread_0a98d23117424cf088af4c32f99738ce",
            "role": "ai",
            "content": [
                {
                    "type": "text",
                    "text": {
                        "value": "上海今天的天气是晴,最高气温7度,最低气温零下一度。",
                        "annotations": []
                    }
                }
            ],
            "file_ids": null,
            "assistant_id": "asst_d7b4152fa8414d4e804733d35d445064",
            "run_id": "run_072537334b2f426eade029a77e6410c5",
            "metadata": null
        }
    ],
    "first_id": "msg_fd788f009f7146a4835bedcee03c12ce",
    "last_id": "msg_d6e3ef29ff7342a698cb9bc9c571edca",
    "base_resp": {
        "status_code": 0,
        "status_msg": "success"
    }
}assistant_id: asst_d7b4152fa8414d4e804733d35d445064
thread_id: thread_0a98d23117424cf088af4c32f99738ce
run_id: run_072537334b2f426eade029a77e6410c5
Status: in_progress
Status: requires_action
Process completed, exiting loop.
{'id': 'run_072537334b2f426eade029a77e6410c5', 'object': 'thread.run', 'created_at': 1703492444, 'assistant_id': 'asst_d7b4152fa8414d4e804733d35d445064', 'thread_id': 'thread_0a98d23117424cf088af4c32f99738ce', 'run_id': '', 'status': 'queued', 'started_at': 1703492444, 'expires_at': 0, 'cancelled_at': 0, 'failed_at': 0, 'completed_at': 0, 'last_error': None, 'model': 'abab5.5-chat', 'instructions': '根据用户定义的function,执行方案', 'tools': [{'type': 'function', 'function': {'name': 'get_weather', 'description': '获得天气信息', 'parameters': {'type': 'object', 'required': ['location'], 'properties': {'location': {'type': 'string', 'description': '获得天气的地点'}}}}}], 'file_ids': None, 'metadata': None, 'base_resp': {'status_code': 0, 'status_msg': 'success'}}
Status: in_progress
Status: completed
Process completed, exiting loop.
{
    "object": "list",
    "data": [
        {
            "id": "msg_fd788f009f7146a4835bedcee03c12ce",
            "object": "message",
            "created_at": 1703492444,
            "thread_id": "thread_0a98d23117424cf088af4c32f99738ce",
            "role": "user",
            "content": [
                {
                    "type": "text",
                    "text": {
                        "value": "上海天气怎么样",
                        "annotations": []
                    }
                }
            ],
            "file_ids": null,
            "assistant_id": "asst_d7b4152fa8414d4e804733d35d445064",
            "run_id": "run_072537334b2f426eade029a77e6410c5",
            "metadata": null
        },
        {
            "id": "msg_d6e3ef29ff7342a698cb9bc9c571edca",
            "object": "message",
            "created_at": 1703492448,
            "thread_id": "thread_0a98d23117424cf088af4c32f99738ce",
            "role": "ai",
            "content": [
                {
                    "type": "text",
                    "text": {
                        "value": "上海今天的天气是晴,最高气温7度,最低气温零下一度。",
                        "annotations": []
                    }
                }
            ],
            "file_ids": null,
            "assistant_id": "asst_d7b4152fa8414d4e804733d35d445064",
            "run_id": "run_072537334b2f426eade029a77e6410c5",
            "metadata": null
        }
    ],
    "first_id": "msg_fd788f009f7146a4835bedcee03c12ce",
    "last_id": "msg_d6e3ef29ff7342a698cb9bc9c571edca",
    "base_resp": {
        "status_code": 0,
        "status_msg": "success"
    }
}import requests
import json
url = "https://api.minimax.chat/v1/assistants/create?GroupId=$GroupId"
payload = json.dumps({
  "model": "abab5.5",
  "name": "数据分析师",
  "description": "数据分析师,用在数据分析场景",
  "instructions": "是一个数据分析师,善于读取文件进行数据分析,并能严谨精准的给出分析结论",
  "metadata": {
    "key1": "value1",
    "key2": "value2"
  },
  "file_ids": [
    "88731293343809"
  ],
  "tools": [
    {
      "type": "code_interpreter"
    }
  ]
})
headers = {
  'Authorization': 'Bearer $API_KEY',
  'Content-Type': 'application/json',
}
response = requests.request("POST", url, headers=headers, data=payload)
print(response.text)
curl --location 'https://api.minimax.chat/v1/assistants/create?GroupId=$GroupId' \
--header 'Authorization: Bearer $API_KEY' \
--header 'bedrock_lane: lane_xh' \
--data '{
    "model": "abab5.5",
    "name": "数据分析师",
    "description": "数据分析师,用在数据分析场景",
    "instructions": "是一个数据分析师,善于读取文件进行数据分析,并能严谨精准的给出分析结论",
    "metadata": {
    "key1": "value1",
    "key2": "value2"
    },
    "file_ids":["${file id}"],
        "tools": [
            {
                "type": "code_interpreter"
            }
        ]
    }
'import requests
import json
url = "https://api.minimax.chat/v1/assistants/create?GroupId=${GroupId}"
payload = json.dumps({
  "model": "abab5.5",
  "name": "数据分析师",
  "description": "数据分析师",
  "instructions": "是一个数据分析师,善于读取文件进行数据分析,并能严谨精准的给出分析结论",
  "metadata": {
    "key1": "value1",
    "key2": "value2"
  },
  "file_ids": [
      "${file id}"
  ],
  "tools": [
    {
      "type": "code_interpreter"
    },
    {
      "type": "web_search"
    }
  ]
})
headers = {
  'Authorization': 'Bearer ${API_KEY}',
  'Content-Type': 'application/json'
}
response = requests.request("POST", url, headers=headers, data=payload)
print(response.text)
curl --location 'https://api.minimax.chat/v1/assistants/create?GroupId=${GroupId}' \
--header 'Authorization: Bearer ${API_KEY}' \
--header 'Content-Type: application/json' \
--data '{
    "model": "my_model",
    "name": "function",
    "description": "代码机器人",
    "instructions": "Follow the instructions carefully",
    "metadata": {
        "key1": "value1",
        "key2": "value2"
    },
    "file_ids":["${file id}"],
    "tools": [        
        {"type":"code_interpreter"},
    ]
}'import requests
import json
url = "https://api.minimax.chat/v1/threads/messages/add?GroupId=$GroupId"
payload = json.dumps({
  "thread_id": "thread_abc123",
  "role": "user",
  "file_ids": [
    "${file id}"
  ],
  "content": "统计一下总进球数?",
  "metadata": {
    "key1": "value1",
    "key2": "value2"
  }
})
headers = {
  'Authorization': 'Bearer $API_KEY',
  'Content-Type': 'application/json'
}
response = requests.request("POST", url, headers=headers, data=payload)
print(response.text)
curl --location 'https://api.minimax.chat/v1/threads/messages/add?GroupId=$GroupId' \
--header 'Authorization: Bearer $API_KEY' \
--header 'Content-Type: application/json' \
--data '{
    "thread_id": "thread_abc123",
    "role": "user",
    "file_ids":["${file id}"],
    "content": "统计一下总进球数?",
    "metadata": {
    "key1": "value1",
    "key2": "value2"
    }
}'import requests
import json
url = "https://api.minimax.chat/v1/threads/run_steps/list?GroupId=$GroupId"
payload = json.dumps({
  "thread_id": "thread_abc123",
  "run_id": "run_abc123"
})
headers = {
  'Authorization': 'Bearer $API_KEY',
  'Content-Type': 'application/json'
}
response = requests.request("GET", url, headers=headers, data=payload)
print(response.text)
curl --location --request GET 'https://api.minimax.chat/v1/threads/run_steps/list?GroupId=$GroupId' \
--header 'Authorization: Bearer $API_KEY' \
--header 'Content-Type: application/json' \
--data '{
    "thread_id": "thread_abc123",
    "run_id": "run_abc123"
}'
{
  "object": "list",
  "data": [
    {
      "id": "step_abc123",
      "object": "thread.run.step",
      "type": "tool_calls",
      "run_id": "run_abc123",
      "thread_id": "thread_abc123",
      "status": "completed",
      "step_details": {
        "type": "tool_calls",
        "tool_calls": [
          {
            "type": "code",
            "code": {
              "input": "# 计算 2 + 2\nresult = 2 + 2\nresult",
              "outputs": [
                {
                  "type": "logs",
                  "logs": "4"
                }
    ...
 }import requests
import json
url = "https://api.minimax.chat/v1/assistants/create?GroupId=$GroupId"
payload = json.dumps({
  "model": "abab5.5",
  "name": "小说专家",
  "description": "小说专家,用在小说解读场景中回答用户问题",
  "instructions": "是一个小说专家,读过万卷书,了解小说里的各种细致情节,另外也非常热心,会热情的帮读者解答小说里的问题",
  "metadata": {
    "key1": "value1",
    "key2": "value2"
  },
  "file_ids": [
    "${file id}"
  ],
  "tools": [
    {
      "type": "retrieval"
    }
  ]
})
headers = {
  'Authorization': 'Bearer $API_KEY',
  'Content-Type': 'application/json',
}
response = requests.request("POST", url, headers=headers, data=payload)
print(response.text)
curl --location 'https://api.minimax.chat/v1/assistants/create?GroupId=$GroupId' \
--header 'Authorization: Bearer $API_KEY' \
--header 'bedrock_lane: lane_xh' \
--data '{
    "model": "abab5.5",
    "name": "assistant名称",
    "description": "assistant设定描述",
    "instructions": "Follow the instructions carefully",
    "metadata": {
    "key1": "value1",
    "key2": "value2"
    },
    "file_ids":["${file id}"],
        "tools": [
            {
                "type": "retrieval"
            }
        ]
    }
'import requests
import json
url = "https://api.minimax.chat/v1/threads/messages/add?GroupId=$GroupId"
payload = json.dumps({
  "thread_id": "thread_b6c183200cf0448f93d1c32e79dd71d0",
  "role": "user",
  "file_ids": [
    "${file id}"
  ],
  "content": "在倚天屠龙记中,无俗念词的作者是谁?",
  "metadata": {
    "key1": "value1",
    "key2": "value2"
  }
})
headers = {
  'Authorization': 'Bearer $API_KEY',
  'Content-Type': 'application/json'
}
response = requests.request("POST", url, headers=headers, data=payload)
print(response.text)
curl --location 'https://api.minimax.chat/v1/threads/messages/add?GroupId=$GroupId' \
--header 'Authorization: Bearer $API_KEY' \
--header 'Content-Type: application/json' \
--data '{
    "thread_id": "thread_abc123",
    "role": "user",
    "file_ids":["${file id}"],
    "content": "在倚天屠龙记中,无俗念词的作者是谁?",
    "metadata": {
    "key1": "value1",
    "key2": "value2"
    }
}'{
  "id": "msg_83b789a095c74af5a192e1ce737c872d",
    "object": "message",
      "created_at": 1703416137,
        "thread_id": "thread_d98733725c7845eca48a56e14f6b1ce9",
          "role": "ai",
            "content": [
              {
                "type": "text",
                "text": {
                  "value": "在《倚天屠龙记》中,无俗念词的作者是南宋末年的一位武学名家,有道之士,他姓丘,名处机,道号长春子,名列全真七子之一,是全真教中出类拔萃的人物。【1†source】",
                  "annotations": [
                    {
                      "type": "file_citation",
                      "text": "【1†source】",
                      "start_index": 71,
                      "end_index": 81,
                      "file_citation": {
                        "file_id": "",
                        "quote": "###《倚天屠龙记》\n\n###第01章 天涯思君不可忘\n\n“春游浩荡,是年年寒食,梨花时节。白锦无纹香烂漫,玉树琼苞堆雪。静夜沉沉,浮光霭霭,冷浸溶溶月。人间天上,烂银霞照通彻。\n\n浑似姑射真人,天姿灵秀,意气殊高洁。万蕊参差谁信道,不与群芳同列。浩气清英,仙才卓荦,下土难分别。瑶台归去,洞天方看清绝。”\n\n作这一首无俗念词的,乃南宋末年一位武学名家,有道之士。此人姓丘,名处机,道号长春子,名列全真七子之一,是全真教中出类拔萃的人物。词品评论此词道:“长春,世之所谓仙人也,而词之清拔如此”。\n\n这首词诵的似是梨花,其实同中真意却是赞誉一位身穿白衣的美貌少女,说她“浑似姑射真人,天姿灵秀,意气殊高洁”,又说她“浩气清英,仙才卓荦”,“不与群芳同列”。词中所颂这美女,乃古墓派传人小龙女。她一生爱穿白衣,当真如风拂玉树,雪裹琼苞,兼之生性清冷,实当得起“冷浸溶溶月”的形容,以“无俗念”三字赠之,可说十分贴切。长春子丘处机和她在终南山上比邻而居,当年一见,便写下这首词来。\n\n这时丘处机逝世已久,小龙女也已嫁与神雕大侠杨过为妻。在河南少室山山道之上,却另有一个少女,正在低低念诵此词。"
                      }
                    }
                  ]
                }
              }import requests
import json
url = "https://api.minimax.chat/v1/threads/run_steps/list?GroupId=${GroupId}"
payload = json.dumps({
  "thread_id": "$Thread_Id",
  "run_id": "$Run_Id"
})
headers = {
  'Authorization': 'Bearer ${API_KEY}',
  'Content-Type': 'application/json'
}
response = requests.request("GET", url, headers=headers, data=payload)
print(response.json())
//
{
    "object": "list",
    "data": [
        {
            "id": "step_abc123",
            "object": "thread.run.step",
            "created_at": 1703322284,
            "run_id": "run_abc123",
            "assistant_id": "asst_abc123",
            "thread_id": "thread_abc123",
            "type": "tool_calls",
            "status": "completed",
            "step_details": {
                "type": "tool_calls",
                "tool_calls": [
                    {
                        "id": "call_123",
                        "type": "web_search",
                        "web_search": {
                            "name": "get_web_search_result",
                            "arguments": "{\"search_query\": \"2022年11月23日上海 天气\"}",
                            "output": "[{\"no\":1,\"content\":\"全球天气网(www.tianqi.com)提供上海11月份天气数据....]"
                        }
                    }
                ]
    ...
}import requests
import json
url = "https://api.minimax.chat/v1/assistants/create?GroupId=$GroupId"
payload = json.dumps({
  "model": "abab5.5",
  "name": "assistant名称",
  "description": "assistant设定描述",
  "instructions": "Follow the instructions carefully",
  "metadata": {
    "key1": "value1",
    "key2": "value2"
  },
  "tools": [
    {
      "type": "function",
      "function": {
        "name": "get_weather",
        "description": "get weather",
        "parameters": {
          "type": "object",
          "required": [
            "city"
          ],
          "properties": {
            "city": {
              "type": "string"
            }
          }
        }
      }
    }
  ]
})
headers = {
  'Authorization': 'Bearer $API_KEY',
  'bedrock_lane': 'lane_xh'
}
response = requests.request("POST", url, headers=headers, data=payload)
print(response.text)
curl --location 'https://api.minimax.chat/v1/assistants/create?GroupId=$GroupId' \
--header 'Authorization: Bearer $API_KEY' \
--header 'Content-Type: application/json' \
--header 'bedrock_lane: lane_xh' \
--data '{
    "model": "abab5.5",
    "name": "assistant名称",
    "description": "assistant设定描述",
    "instructions": "Follow the instructions carefully",
    "metadata": {
    "key1": "value1",
    "key2": "value2"
    },
        "tools": [
            {
                "type": "function",
                "function":{
                    "name":"get_weather",
                    "description":"get weather",
                    "parameters":{
                        "type":"object",
                        "required":["city"],
                        "properties":{"city":{"type":"string"}}
                    }
                }
            }
        ]
    }
'{
    "assistant_id": "asst_abc123",
    "id": "run_abc123",
    "object": "thread.run",
    "required_action": {
        "submit_tool_outputs": {
            "tool_calls": [
                {
                    "function": {
                        "arguments": '{"city": ' '"上海"}',
                        "name": "get_weather",
                    },
                    "id": "call_abc123",
                    "type": "function",
                }
            ]
        },
        "type": "submit_tool_outputs",
    },
    ...
}import requests
import json
url = "https://api.minimax.chat/v1/threads/run/submit_tool_outputs?GroupId= ${Groupid}"
payload = json.dumps({
    "thread_id": "thread_abc123",
    "run_id": "run_abc123",
    "tool_outputs": [
        {
            "tool_call_id": "call_abc123",
            "output": "内容"
        }
    ]
})
headers = {
    'Authorization': 'Bearer ${API KEY}',
    'Content-Type': 'application/json'
}
response = requests.request("POST", url, headers=headers, data=payload)
print(response.text)
curl --location 'https://api.minimax.chat/v1/threads/run/submit_tool_outputs?GroupId= ${Groupid}' \
--header 'Authorization: Bearer ${API KEY}' \
--header 'Content-Type: application/json' \
--data '{
    "thread_id": "thread_abc123",
    "run_id": "run_abc123",
    "tool_outputs": [
        {
            "tool_call_id": "call_abc123",
            "output": "内容"
        }
    ]
}'| 文件格式 | MIME类型 | Code Interpreter是否支持 | Retrieval是否支持 | 
|---|---|---|---|
| .c | text/x-c | ✅ | ✅ | 
| .cpp | text/x-c++ | ✅ | ✅ | 
| .csv | application/csv | ✅ | |
| .docx | application/vnd.openxmlformats-officedocument.wordprocessingml.document | ✅ | ✅ | 
| .html | text/html | ✅ | ✅ | 
| .java | text/x-java | ✅ | ✅ | 
| .json | application/json | ✅ | ✅ | 
| .md | text/markdown | ✅ | ✅ | 
| application/pdf | ✅ | ✅ | |
| .php | text/x-php | ✅ | ✅ | 
| .pptx | application/vnd.openxmlformats-officedocument.presentationml.presentation | ✅ | ✅ | 
| .py | text/x-python | ✅ | ✅ | 
| .py | text/x-script.python | ✅ | ✅ | 
| .rb | text/x-ruby | ✅ | ✅ | 
| .tex | text/x-tex | ✅ | ✅ | 
| .txt | text/plain | ✅ | ✅ | 
| .css | text/css | ✅ | |
| .jpeg | image/jpeg | ✅ | |
| .jpg | image/jpeg | ✅ | |
| .js | text/javascript | ✅ | |
| .gif | image/gif | ✅ | |
| .png | image/png | ✅ | |
| .tar | application/x-tar | ✅ | |
| .ts | application/typescript | ✅ | |
| .xlsx | application/vnd.openxmlformats-officedocument.spreadsheetml.sheet | ✅ | |
| .xml | application/xml or "text/xml" | ✅ | |
| .zip | application/zip | ✅ |