import { interactAgent } from"../src/interactAgent";import assert from"assert";describe("Agent Interaction Tests", () => {it("should interact with an agent successfully",async () => {constagentName="TestAgent";constquery="What is the market cap of TST?";constresponse=awaitinteractAgent(agentName, query);assert.ok(response);assert.strictEqual(typeof response,"string"); });});