Hey everyone, I've been testing out Relevance AI for a simple workflow that fetches some data from an S3 bucket, processes it, and then posts a summary to a Slack channel. I'm using their visual builder.
I keep hitting a weird issue where the agent just... stops. No error, nothing in the logs except "completed" status, but the workflow is only half done. It's like it decides it's finished early 😅.
Here's a basic outline of my workflow steps:
```
1. Trigger (S3 new object)
2. Read CSV file from S3
3. Transform data (simple formatting)
4. Send message to Slack
```
It consistently fails between steps 2 and 3. The S3 read completes, but the transform never starts. The logs show step 2 as success, then the whole run is marked complete.
Is this a common problem? Am I missing something obvious, like a timeout setting or a specific output format needed between steps? I'm still learning this stuff, so any pointers would be awesome. Thanks!