James Braza

Results 264 issues of James Braza

### What's the problem this feature will solve? I have something like this: ```toml # pyproject.toml [build-system] build-backend = "setuptools.build_meta" requires = ["setuptools >= 62.6"] [project] dynamic = ["optional-dependencies"] [tool.setuptools.dynamic.optional-dependencies.dev]...

enhancement
help wanted

As I am sure the `setuptools_scm` maintainers are aware: - Type hints were added in [PEP 484](https://www.python.org/dev/peps/pep-0484/) in Python 3.5 - Python3

I use the `write_to` option in my `pyproject.toml` config file to write to a Python `__version__.py` file. It creates a file that looks like this: ```python # coding: utf-8 #...

I have a `setuptools.build_meta` backend monorepo with a `pyproject.toml` package named `packagename` in a subfolder. I specify its dependency in a `requirements.txt` at the repo root: `package-name @ file://${PROJECT_ROOT}/packagename` In...

needs-decision

```python from abc import ABC, abstractmethod class Foo(ABC): @abstractmethod def bar(self, arg: int = 1) -> None: """ Do something. Args: arg: Some argument. """ raise NotImplementedError class DFoo(Foo): def...

I am trying to suppress the password prompt for `gcloud auth application-default print-access-token`. When piping `echo ""` into that command, I expect: - The password prompt to be suppressed -...

**Description** Currently with `guardrails-ai==0.2.9`, I am using Pydantic models to make my `Guard` like so: ```python guard = Guard.from_pydantic(output_class=SomePydanticModel, ...) ... raw_output = model(...) dict_output = guard.parse(raw_output) # Request is...

enhancement

The built-in prompts in [`constants.xml`](https://github.com/guardrails-ai/guardrails/blob/v0.2.9/guardrails/constants.xml) all currently end with `\n`. This leads to the effect that all prompts after `prompt.format()` have trailing whitespace. This has a few negative effects: -...

enhancement

https://github.com/guardrails-ai/guardrails/blob/6bfce78483cb0d927263d9bf5183676e73373b45/CONTRIBUTING.md#setting-up-your-environment set up says to run `make dev` so one can then run `make test`. However, doing that I get a ton of test errors: ``` FAILED tests/integration_tests/test_validators.py::test_similar_to_list - ValueError:...

bug

#### The problem I came from a company that uses SQLAlchemy + `factory_boy`, and I loved it. Now, I have joined a company that uses [Tortoise ORM](https://github.com/tortoise/tortoise-orm). It would be...

Doc