UNPKG

@langchain/community

Version:
8 lines (7 loc) 240 B
import { test } from "@jest/globals"; import { Cohere } from "../cohere.js"; test("Test Cohere", async () => { const model = new Cohere({ maxTokens: 20 }); const res = await model.invoke("1 + 1 ="); console.log(res); }, 50000);