赞
踩
进入ollama的仓库下载 「 qwen 7b 」
libraryGet up and running with large language models.https://ollama.com/library查找阿里的 「 qwen 」
根据自己的电脑配置情况,选择合适的模型
总体来说,模型是越大,效果越好,但是对电脑的配置要求也越高
特别注意:你如果要用于商业用途,需要申请授权,否则只能用于个人学习
千问许可说明:
申请商用授权: 灵积模型服务https://dashscope.console.aliyun.com/openModelApply/qianwen
复制qwen 7b下载命令
ollama pull qwen:7b
7b的模型有4.5GB,我们只需等待安装
安装完成,随便问他几个问题
Mac/Linux下执行
- curl 'http://localhost:11434/api/chat' \
- --data '{
- "model": "qwen:7b",
- "messages": [
- {
- "role": "user",
- "content": "你是谁"
- }
- ],
- "temperature": 0.1,
- "stream": false
- }'
Windows下执行:
- curl "http://localhost:11434/api/chat" ^
- --data "{""model"": ""qwen:7b"", ""messages"": [{""role"": ""user"", ""content"": ""你是谁""}], ""temperature"": 0.1, ""stream"": false}"
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。