Radosław Kintzi
Radosław Kintzi
I have a validator: ``` def age_validator(node, value): if value
I got even more verbose error message: `ERROR: The last statement must be ended by a semicolon or '-- +migrate StatementEnd' marker.` I have dozen of migrations and don't know...
@rubenv It seems that the problem is caused by empty reverse migrations. If there is no reverse migration (no `-- +migrate Down` marker) no error is reported. If there is...
@drdgvhbh This is just a proposal. No code for now. We are waiting for community feedback. What do you thing? Is this right direction?
Duplicates #539 Awaiting PR: #580
Is anyone already working on this? Any ideas on how to implement this feature? The OpenAI API has been updated to allow the message content to be either a string...
Let me briefly discuss the suggested solution as there is one issue with it. Let's consider the following snippet: ```go m := ChatCompletionMessage{ Role: "user", Parts: Parts{{Type: ContentTypeText, Text: "some...
Alternatively, we could introduce `ChatMultipartCompletionMessage` and add `MultipartMessages []ChatMultipartCompletionMessage` to the `ChatCompletionRequest`. We could then request that users only use either the `Messages` or `MultipartMessages` field in the request, but...
I have made some slight modifications to my example solution (just to give you another option). The most important changes are listed below. You can find the full solution in...
@zquestz, if you have a working solution, please consider submitting a pull request (PR). I anticipate starting work on this next week, possibly on Monday or Tuesday. However, I would...