DAMO-NLP-SG / CoI-Agent

Official code for paper: Chain of Ideas: Revolutionizing Research Via Novel Idea Development with LLM Agents
Apache License 2.0
94 stars 3 forks source link

what's difference between CoI Agent and gpt-researcher #1

Open CoderYiFei opened 1 day ago

CoderYiFei commented 1 day ago

gpt-researcher: https://github.com/assafelovic/gpt-researcher

jianghuyihei commented 1 day ago

CoderYiFei

Essentially, we've introduced the "chain-of-ideas" structure to help LLMs think more effectively. This is akin to telling an LLM 1, 2, 3, and then asking what the next number is. On the other hand, GPTResearcher resembles traditional RAG methods, where the LLM is given 1, 4, 12, 11 and asked to predict the next number. While there might be some patterns, they are not as straightforward as 1, 2, 3. I hope this explanation makes sense to you. For more details, you can refer to our paper: https://arxiv.org/pdf/2410.13185. In our evaluation process, we also used GPTResearcher as our baseline.