Carl Peaslee

Results 2 issues of Carl Peaslee

I get the following error after upgrading from 4.7.0 to 4.7.1. The actual occurs when a test imports code that defines FQL that includes variables which reference other FQL. In...

Original post from Slack: https://replicatehq.slack.com/archives/C04AXJ6BR34/p1687821981253489 This was resolved temporarily with this workaround: ``` from replicate.prediction import Prediction as OriginalPrediction from pydantic import Field ``` ``` class Prediction(OriginalPrediction): version: str =...