数学建模智能体:
扣子平台:
https://www.coze.cn/store/agent/7492096354563588108?bid=6fuehej7k901m&from=store_search_suggestion
阿里百炼平台:
app_id:ca1029b6ba064fbb9690883c0e1cc291
API-Key:sk-1909c7cfcf4a4899986934f7d1c450ea
#单次问答 大概需要等待两分半。
from http import HTTPStatus
from dashscope import Application
response = Application.call(
api_key='sk-1909c7cfcf4a4899986934f7d1c450ea',
app_id='ca1029b6ba064fbb9690883c0e1cc291',# 替换为实际的应用 ID
prompt='研究一下苏联在二战中的表现')
if response.status_code != HTTPStatus.OK:
print(f'request_id={response.request_id}')
print(f'code={response.status_code}')
print(f'message={response.message}')
print(f'请参考文档:https://help.aliyun.com/zh/model-studio/developer-reference/error-code')
else:
print(response.output.text)
尝试输入:分析苏联和美国在冷战中的表现。
多次回答只需要把上下文一起输入进去就行了。欢迎大家调用模型,或者建站使用API。