You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
from swarms.models.mpt import MPT
|
|
|
|
mpt_instance = MPT(
|
|
"mosaicml/mpt-7b-storywriter", "EleutherAI/gpt-neox-20b", max_tokens=150
|
|
)
|
|
|
|
mpt_instance.generate("Once upon a time in a land far, far away...")
|