当前位置:   article > 正文

fastchat启动大模型,并使用api访问_fastchat api

fastchat api

简介

本文介绍使用fastchat启动大模型,并通过远程访问获取内容。

模型:Baichuan2-7B

步骤

1、启动命令,我直接写到了脚本里面

python3 -m fastchat.serve.controller > fastchat.log 2>&1 &

python3 -m fastchat.serve.model_worker --model-path ./baichuan-inc/Baichuan2-7B-Chat --num-gpus 2  > fastchat.log 2>&1 &

python -m fastchat.serve.openai_api_server --host 0.0.0.0 --port 9000  > fastchat.log 2>&1 &
  • 1
  • 2
  • 3
  • 4
  • 5

这里9000就是启动端口


2、api访问
POST请求http://ip:9000/v1/chat/completions
body为json

{
    "model": "Baichuan2-7B-Chat",
    "messages": [
        {
            "role": "user",
            "content": "翻译成中文: How are you"
        }
    ]
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/代码探险家/article/detail/787381
推荐阅读
相关标签
  

闽ICP备14008679号