rpgoldman

Results 213 comments of rpgoldman

These solutions aren't great because 1. None explains what makes a directory sync-able. Importantly, is this a limitation of `gdrive`, or or the Google REST API? If it's the REST...

OK, it looks like there's an `appProperty` of `"syncRoot"` stored in the directories, and if that is not present, then we get this error. Here's the code: https://github.com/prasmussen/gdrive/blob/c3cbcceedd6beb1fcff30f06ea7be7c29558d181/drive/sync_upload.go#L126-L137 Line 126...

Thanks for that. I will push it onto my todo list, and hope to get to it pretty soon...

Not sure this is correct, but it *might* be related to the merge of #18811, in which case it's not the update to `langchain-core`, but to `langchain` 0.1.16

Interestingly, the following code snippet does _not_ cause mypy to report a type error: ``` def make_parser() -> PydanticOutputParser: return PydanticOutputParser(pydantic_object=InputSourceResponse) ``` However, the following, which should be semantically identical,...

I believe I have found the problem: ``` print(isinstance(InputSourceResponse, langchain_core.output_parsers.pydantic.PydanticBaseModel)) ``` prints `False`. Digging further, this is because `PYDANTIC_MAJOR_VERSION == 2` *despite the fact that I am using the `pydantic_v1`...

Still some typing errors: ``` dspy/evaluate/evaluate.py:17: error: Cannot find implementation or library stub for module named "IPython.display" [import-not-found] dspy/evaluate/evaluate.py:147: error: Overloaded function signatures 1 and 2 overlap with incompatible return...

With help from the mypy folks, the type errors are now fixed, and mypy likes the file.

I could definitely use help here. I got started just fixing issue #962 , but tried to add more type hints, and have been having issues because mypy does not...

This pull request needs a bit of screening. In particular, 1. there are comments inline in `6-optimizers.md` which indicate places where I was not sure that I was explaining correctly....