convbot / README.md
freemt
Update async aconvbot
c471598

convbot

testspythonCode style: blackLicense: MITPyPI version

A conversational bot based on huggingface transformers

Install it

pip install convbot
# or poetry add convbot
# pip install git+htts://github.com/ffreemt/convbot
# poetry add git+htts://github.com/ffreemt/convbot

# To upgrade
pip install convbot -U
# or poetry add convbot@latest

Use it

from convbot import convbot

prin(convertbot("How are you?"))
# I am good  # or along that line

The async version aconvbot, potentialy for fastapi or Nonebot plugins and such, is rather artificial since it's based on ThreadPoolExecutor. Hence it's not intended for production. You probably should not spawn too many instances.

from convbot import aconvbot

async def afunc(text):
    resp = await aconvbot(text)
    ...

Interactive

python -m convbot

Not tested in Windows 10 and Mac

The module uses pytorch that is installed differently in Windows than in Linux. To run convbot in Windows or Mac, you may give it a spin by cloning the repo (git clone https://github.com/ffreemt/convbot) and installing pytorch manually.