Darlin Alberto
Darlin Alberto
[Scheduled Scaling](https://docs.aws.amazon.com/autoscaling/latest/userguide/schedule_time.html) might be a straightforward way to approach this. It supports cron expressions, so it should be possible to express non-trivial recurrence rules. I intend to explore this option...
@ruscoder Thanks! Another solution I thought about is recursively using the `_meta` API to find the parent model's PK. This approach would be consistent with the current approach, albeit significantly...
@beautifulDrifter thank you for following up. I think your mixin does the trick, although my use-case is quite a bit simpler so I'm not sure if its the optimal solution,...
I also ran into this issue and as a workaround just filtered texts that are too big after chunking: ```py texts = list(filter(lambda x: len(x)
What's missing from this PR? I've tried to adapt it in my own project, and the only notable issue I've encountered is that `outputParser` is being passed to `PromptTemplate` and...