Steven Loria
Steven Loria
also note that `make docs-serve` is only used for local development, so having clean `docs/_build` isn't as critical. i left the `make docs` command alone, since it does get used...
> Am I correct in understanding that the subcast is applied to the default value? If so, does this make sense, since a default value is supposed to be predictable...
Ah, good point--I hadn't considered duplicate `data_key`. Might have to rethink the recipe a bit. In the specific case you posted, it might be better to use a `post_load` method:...
Thanks for that analysis @davidlouis . I think allowing for `data_key` to be a list of strings could be a nice solution. Feel free to send a PR (even a...
thanks for the suggestion! I'm a soft +1 on this. indeed that would make it consistent with the underlying `dj-database-url` package but i think the explicitness is probably good in...
Thanks for reporting! I agree the current behavior is unexpected. PRs welcome!
`env.read_env` calls `doteenv.load_dotenv()`, which mutates `os.environ`: https://github.com/theskumar/python-dotenv/blob/8411987b9301f716245074872afa30646e9b9eb7/src/dotenv/main.py#L89-L102
django-environ appears to also mutate `os.environ` in the same way: https://github.com/joke2k/django-environ/blob/176e812d8624f6937ba3dd276a0032929d87eb69/environ/environ.py#L1021-L1033
The `[pause=..]` syntax doesn't seem to work for me either. The pause tags get read by the model. Code used ```python from pathlib import Path from openai import OpenAI HERE...
It sounds like the client you're using is handling the pause tags. My use case requires programmatic access to kokoro, so the pause handling would have to happen on the...