brunocruz

Results 10 issues of brunocruz

when running "python -m ice" after installation, i get: Traceback (most recent call last): File "E:\SteamLibrary\emulator\Ice\ice\__main__.py", line 7, in from cli import CommandLineRunner File "ice\cli\__init__.py", line 2, in from runner...

**Describe the bug:** When attempting to run the provided test for optional fields: https://github.com/LukasMasuch/streamlit-pydantic/blob/390a45aba7bf8caccc297c335715cc141db490af/examples/optional_fields.py The library is not able to render anything with strings it seems like. This is also...

type:bug

**Is your feature request related to a problem? Please describe.** The current repository states that the library is following semver: >Be aware that this package is still under heavy preliminary...

Not sure if there is a different intended use... To reproduce: ```python from aind_data_schema_models.platforms import Platform from pydantic import BaseModel class Foo(BaseModel): platform: dict[Platform.ONE_OF, str] foo = Foo(platform={Platform.BEHAVIOR: "foo"}) print(foo)...

bug

**Is your feature request related to a problem? Please describe.** This is something that we have informally discussed before but I keep bumping into it, so might as well have...

enhancement

**Is your feature request related to a problem? Please describe.** It would be very helpful to keep compatibility between the two packages in form of a range table. **Describe the...

A common pattern in the current schema is to use a `List` of generic objects to keep track of such objects. For instance, cameras can be expressed as follows: https://github.com/AllenNeuralDynamics/aind-data-schema/blob/c8aca0341d86efc82aa32ba0255b1f66287a4a3c/src/aind_data_schema/rig.py#L64C1...

**Is your feature request related to a problem? Please describe.** Type hinting for sets of valid inputs that are made up of classes (e.g. Organization) lack a proper typing hinting....

enhancement

https://github.com/AllenNeuralDynamics/aind-data-schema/blob/773ee35126cb91689a0254d9d561b55f04093233/src/aind_data_schema/device.py#L588C1-L589C1 The refresh rate of the monitor is specified in the schema, however, the refresh rate of the render (aka UpdateFrame frequency) is currently not contemplated. Additionally, how should one...

https://github.com/AllenNeuralDynamics/aind-data-schema/blob/773ee35126cb91689a0254d9d561b55f04093233/src/aind_data_schema/device.py#L575 On top of the treadmill settings, it would be helpful to also specify information regarding the encoder being used. For instance: ```json "pulsesPerRevolution": { "default": 2880, "type": "number" },...