When you have an async function, but your usecase doesn't need to wait for the promise to finish, instead of using await, you can use void to effectively ignores the promise.
void suggestTagsSampling(agent, createdEntry.id)
When you have an async function, but your usecase doesn't need to wait for the promise to finish, instead of using await, you can use void to effectively ignores the promise.
void suggestTagsSampling(agent, createdEntry.id)