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
1.97k stars 141 forks source link

是否支持llama系列? #5

Closed xxm1668 closed 9 months ago

nblach commented 9 months 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 9 months ago

thanks