Filter stored sessions to import test data into your evaluation.
You don't have any stored sessions in this project. Keep them by setting the store: true parameter on your API requests.
import Pochard from "@pochard/sdk"; const pochard = new Pochard(); const response = await pochard.sessions.create({ model: "pochard-m2", messages: [ { role: "system", content: "You are an internal helpdesk assistant for a mid-size firm." }, { role: "user", content: "How do I move the sidebar to the right on my laptop?" } ], store: true, metadata: { role: "manager", department: "accounting", source: "homepage" } }); console.log(response.output[0]);
Import a file with variables or test cases to preview them here.