Pablo Speciale

Results 84 comments of Pablo Speciale

Maybe relevant. The following project generates Pydantic models from protobuf: https://github.com/danielgtaylor/python-betterproto?tab=readme-ov-file#generating-pydantic-models I think the support has to be added there instead?

It might be similar to the following PR? https://github.com/567-labs/instructor/pull/1633/files

Thanks! I tested the last release this way (from [azure.md](https://github.com/567-labs/instructor/pull/1703/files#diff-ae2c2afa248532f736e74823a96f8f8459b53f35a64fde7e561736127e51d6f3) in the commit) ```python from azure.identity import DefaultAzureCredential, get_bearer_token_provider from openai import AzureOpenAI import instructor import os token_provider = get_bearer_token_provider(...

Are all the `target_compile_options` failing? ``` target_compile_options(pyposelib PRIVATE -march=native -Wall -Werror -fPIC -Wno-ignored-optimization-argument) ```

> ```shell > --color=bg+:#363a4f,bg:#24273a,spinner:#f4dbd6,hl:#ed8796 > ``` Could you try adding `'` (single quote) like this: `--color='bg+:#363a4f,bg:#24273a,spinner:#f4dbd6,hl:#ed8796'`

I am not sure this is a `delta` problem. What happens if you put `cat` in between? For both commands: ``` git show e3e92221 --word-diff=none | cat | delta git...

Btw, I haven't observed the unpredictable behavior you mentioned, I tested with your command: `while true; do git show e3e92221 --word-diff=none | delta --paging=never; sleep 0.2; done` And I get...

@vlarsson The PR uses Google style, almost the same `.clang-format` as Colmap. Including @ahojnnes for reference, since poselib is being used in Colmap.

@vlarsson What is your opinion with change the style. Specially the 120 chars limit is particularly annoying for code review, for example: ![image](https://github.com/user-attachments/assets/e148ed7d-166e-436e-b48a-92c6b6ebeba0) You need to expand the windows until...