MetaGPT icon indicating copy to clipboard operation
MetaGPT copied to clipboard

Support for Cohere API

Open AliArmani3397 opened this issue 1 year ago • 1 comments

Please add support for Cohere API with all the built in RAG and tool use functionalities. Essentially, RAG and tool use in Cohere are just chat parameters definable by users. More information can be found at https://docs.cohere.com/reference/chat .

AliArmani3397 avatar Apr 15 '24 19:04 AliArmani3397

Please add support for Cohere API with all the built in RAG and tool use functionalities. Essentially, RAG and tool use in Cohere are just chat parameters definable by users. More information can be found at https://docs.cohere.com/reference/chat .

Cohere API have been added. Specific code to be merged, the use of the method can be referred to as follows https://github.com/geekan/MetaGPT/pull/1193

SimpleEngine.from_docs(
                input_files=[DOC_PATH],
                retriever_configs=[FAISSRetrieverConfig()],
                ranker_configs=[CohereRerankConfig()],
            )

YangQianli92 avatar Apr 16 '24 02:04 YangQianli92