Skip to content
This repository has been archived by the owner on Jun 26, 2024. It is now read-only.

Chatbot support & bug fixes

Compare
Choose a tag to compare
@aniketmaurya aniketmaurya released this 17 Apr 10:36
· 32 commits to main since this release

What's Changed

How to use Chatbot

from chatbot import LLaMAChatBot

checkpoint_path = f"state_dict.pth"
tokenizer_path = f"tokenizer.model"

bot = LLaMAChatBot(
    checkpoint_path=checkpoint_path, tokenizer_path=tokenizer_path
)

print(bot.send("hi, what is the capital of France?"))

Full Changelog: v0.0.2...v0.0.3