Simon Paredes
Simon Paredes
This PR implements support for the "default" property. The implementation details are as follow: - Object: the provided value is used as JSON and will be unmarshaled to an Object...
The current implementation ignores default values. I would like to suggest the following changes: - Add const for value types for their default value, example for a named integer: ```Go...
We are generating Markdown, but we would also see the plain text version to corroborate the spaces and detailed format is correct.
Preview does not refresh when sample is pointing to another file and a change is made in that file. Example: ```yaml ... sample: ${file:sample_1.json} --- user: Some prompt with a...
I have been using Prompty to write the prompts for our C# Unity game. A template that does work in VS does not work in c#. After some research, I...
### Checklist - [x] I have searched the [existing issues](https://github.com/streamlit/streamlit/issues) for similar issues. - [x] I added a very descriptive title to this issue. - [x] I have provided sufficient...
In jinja2, you can apply the length filter directly on strings like: `{{ my_string | length }}`, this will produce an empty value in jinja2Cpp. The fix seems to be...
As of now, it is only adding: - CompletionTokens - PromptTokens - TotalTokens
The following does not work because Order is not replacing the Placeholder. ``` query := db.NewSelect(). Model(&someSlice). Relation("Rel1"). Relation("Rel2"). Where("?TableAlias.field_name = ?", fieldValue). Order("?TableAlias.sort_field DESC") ``` Error: `SQL logic error:...
I have a schema that is using "generated column" in Postgres. I want to have those columns scanned so I'm defining them with "scanonly" tag. AutoMigrator does not see them,...