Hello Sébastien Flory
We have our prototype working 😄 🥳
However, I notice that I never give to the system the ID of the assistant, only the workspace ID.
But If I understand well, many assistant are contained in a given workspace.
I have this in my code base:
const DUST_AGENT = { // AgentType
sId: "dust",
name: "Dust",
description: "An assistant with context on your company data.",
}
That I don't fully understand. I'm using it this way:
const r = await api.createConversation({
title: null,
visibility: "unlisted",
message: {
content: question,
mentions: [
{
configurationId: DUST_AGENT.sId,
},
],
context: CONVERSATION_CONTEXT,
},
})