spcl / graph-of-thoughts

Official Implementation of "Graph of Thoughts: Solving Elaborate Problems with Large Language Models"
https://arxiv.org/pdf/2308.09687.pdf
Other
2.19k stars 159 forks source link

是否支持llama系列? #5

Closed xxm1668 closed 1 year ago

nblach commented 1 year ago

We have only tested the llama 2 model series provided thought HF, but I see no reason why the implementation couldn't be generalised to support any HF model (including the firs llama series). Additionally, you can extend the AbstractLanguageModel class to introduce support for any custom model deployments that you might have. Hope that helps!

xxm1668 commented 1 year ago

thanks