Alex Chaplinsky

Results 49 comments of Alex Chaplinsky

@jzanecook Yes, I am on AIEF Discord. Sounds good, I'll work on it and will let you know when it's ready!

@mattlindsey Isn't RSpec enough for testing library code? Why do we need `cucumber` it doesn't seem to bring additional value to what we can already do with rspec testing an...

@mattlindsey I think integration tests for concept like Agent is a good idea. But we need to mock requests to external APIs. I don't think that anyone would want to...

Ok, got it. So this is a type of test that actually runs against real APIs and makes sure that code works with real integrations. Thus we skip running them...

@ProGM What is the point of using `Langchain::Loader` when you've already got raw_content which you can just convert to text and use directly?

@ProGM So currently Loader detects correct processor for content by either file extension or content-type header. If you pass an IO object directly into loader you'd probably need to specify...

I'm not saying it is impossible to detect mime type for instance. However, it is not trivial task and I don't think it is worth the effort. See my points...

There's this npm package https://github.com/emilbayes/macos-touchid which kinda gives an ability to use TouchId. @dukejones you can refer to this code in objective-c https://github.com/emilbayes/macos-touchid/blob/master/index.m

Got rid of this error by updating Node version. Running it on 21.1.x solved it for me.