OpenBioLink / ThoughtSource

A central, open resource for data and tools related to chain-of-thought reasoning in large language models. Developed @ Samwald research group: https://samwald.info/
MIT License
863 stars 69 forks source link

loading collections and generated_cots accept single strings, not only lists #107

Closed KonstantinHebenstreit closed 1 year ago

KonstantinHebenstreit commented 1 year ago

right way: collection = Collection(["worldtree"])

this should also work, or at least throw an error collection = Collection("worldtree")

the same goes for loading pregenerated cots, e.g.: collection = Collection(..., load_pregenerated_cots="lievin")

KonstantinHebenstreit commented 1 year ago

Done