1 Star 0 Fork 1

cutecuteyu/ida-ollama

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
reqtest.py 673 Bytes
一键复制 编辑 原始数据 按行查看 历史
cutecuteyu 提交于 2024-09-09 07:25 . add
import requests
import json
host="127.0.0.1"
port="11434"
url = f"http://{host}:{port}/api/chat"
model = "qwen:4b"
headers = {"Content-Type": "application/json"}
data = {
"model": model, #模型选择
"options": {
"temperature": 0. #为0表示不让模型自由发挥,输出结果相对较固定,>0的话,输出的结果会比较放飞自我
},
"stream": False, #流式输出
"messages": [{
"role": "system",
"content":"你是谁?"
}] #对话列表
}
response=requests.post(url,json=data,headers=headers,timeout=60)
res=response.json()
print(type(res['message']['content']))
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/cutecuteyu/ida-ollama.git
git@gitee.com:cutecuteyu/ida-ollama.git
cutecuteyu
ida-ollama
ida-ollama
master

搜索帮助