How do I maintain evals for multiple projects in s...
# support
r
Is there a way to setup evals for different projects that use common evals?
@Vapi Support Bot Any help?
v
To maintain evals for multiple projects, use descriptive names and detailed descriptions when creating evals via the
/eval
API. This lets you organize and identify evals by project or purpose. For example:
Copy code
json
POST /eval
{
  "name": "ProjectA - User Flow Validation",
  "description": "Validates user flow for ProjectA. Shared with ProjectB.",
  "messages": [ ... ]
}
This approach allows you to reuse common evals across projects by referencing them in your workflows. See more in the [Vapi evaluation management docs](https://docs.vapi.ai/changelog/2025/9/5). Source: - [Changelog September 5, 2025 – Evaluation Management](https://docs.vapi.ai/changelog/2025/9/5)
v
Message marked as helpful by @Rahul! 🎉
c
Best way to copy over similar configurations for evals is through API GET then POST