Adam Pohorecki
Adam Pohorecki
For example: ``` ruby class Foo def call(env) end end class Bar def call(_) end end fake(:xxx) { [Foo, Bar]}.respond_to?(:call) == false ```
In Ruby, in addition to `raise/rescue` there's also `throw/catch`. Not many people use it, since it's a thinly-veiled `goto`, but it should be possible to record those interactions as well.
Up to and including version 3.8.4, the following code worked: ```ruby class ApplicationSchema < GraphQL::Schema include ApolloFederation::Schema query QueryType orphan_types [FooType] end ``` Because of the change in https://github.com/Gusto/apollo-federation-ruby/pull/270 this...
### Bug Description We are using llama-index to power a chatbot. We have observed that sometimes GPT-4o (and GPT-4 and GPT-4-turbo) responds with both a tool call and a response,...