earonesty
earonesty
all of the scopes, except the default deprecated one break my tests. there are cross-test loop issues with the pytest-playwright package that seems to "just work" in the current mode....
fork is perfect. what would even be cooler is if you could "compile" the tests. - run tests locally (hits openai) - cache tests locally (openai cache is saved into...
is there any workaround? application = Starlette( routes=[ Mount("/", app=mcp.sse_app()), # HERE !!! ] ) can't get the routes either? what's the standard way of linking a fastapi/starlette app with...
better to use a string_view or span as the native cast for bytes. zero copy, view only seems like the best fit, imo.
this is a common one... blocking for 600ms ``` "1": " at TLSWrap.emitInitNative (node:internal/async_hooks:200:43)", "2": " at TLSSocket._wrapHandle (node:_tls_wrap:696:24)", "3": " at new TLSSocket (node:_tls_wrap:577:18)", "4": " at Object.connect (node:_tls_wrap:1752:19)",...
i can show the full traces. the TLS establishment one happens a lot. i have a 10 minute log with a single instance running on google cloud. it happens 5000...
1. this is using the blocked_at library. it shows js stacks that are "blocking" the loop (not yielding) 2. generally between 30 and 50 clients 3. this is async code,...
90% of my loop-blocked are now about 800-1000ms, and are these ``` 6: " at Http2SubchannelConnector.connect (/app/node_modules/@grpc/grpc-js/build/src/transport.js:643:92)" 7: " at Subchannel.startConnectingInternal (/app/node_modules/@grpc/grpc-js/build/src/subchannel.js:154:14)" 8: " at Subchannel.transitionToState (/app/node_modules/@grpc/grpc-js/build/src/subchannel.js:204:22)" 9: " at...
This is useful - making the sampe adaptive to different situations. However why not just use -s? I would think that this should be an "all or nothing" flag, not...
you might want to check out https://celebrityescrow.org/ for an example of using nostr for escrow. code is here: https://github.com/ArcadeLabsInc/celebrity-escrow. also, it works.