Tim Harper

Results 107 comments of Tim Harper

@chjhaijiang I think the error message and docs should improve. Thank you for reporting ! At the very least people might search for and find this ticket :)

Yes, if we parse the connection string and connect twice, I think? The driver is a bit weird Sent from my iPhone > On Nov 16, 2016, at 01:41, Tobi...

How would it conflict with another root node? A node in zookeeper can be a prefix and contain a value

I've built a rust gtk app and I'm proficient in typescript, so I could contribute this, wanted to open a discussion before touching the code.

I had added descriptions to workout `convertActionsToDynamicStructuredTools` failing without them, but noticed that copilotkit 1.10.4 no longer threw when they were present, so I removed them again, being unnecessary.

there were several other omissions in the docs that I've run across. This is really an important thing to document correctly because it leads to frustrating surprise when `convertActionsToDynamicStructuredTools` is...

Unfortunately, there was never an implementation to unset a value for PUT/PATCH. You'll need to get the whole JSON document, edit it, and then re-POST it. Have a look at...

``` git clone https://github.com/timcharper/nockback-axios-recording cd nockback-axios-recording git checkout -b tim/wrong-types-demo yarn yarn test ``` Sample of output of yarn test, which outputs the property "headers" and "rawHeaders" of `nock.Definition` (needs...

As a workaround, I've defined the following shape: ``` type DefinitionWithRawHeaders = nock.Definition & { rawHeaders?: Record; }; ``` Then, I just ignore headers field (it's always undefined). e.g. ```...

So.. I also ran in to this issue, but then I went and made a repro project and the issue doesn't happen there! Neither with Axios 1.9.0 nor Axios latest....