poetry by

Results 10 comments of poetry by

For context, the specific roles that I am trying to use are "complementary" and "region".

With the Semantic Conventions for Generative AI, the reverse of this is a problem where there is insufficient depth in the logging to see the input and output messages when...

> * There are other `console.dir()` flags besides `depth`. If this were to be added, it would feel incomplete to only support `depth`. I agree, and I also don't think...

@pichlermarc thank you for providing that context. What do you think about a solution that relies on console.dir with null depth where available, and that falls back to JSON.stringify and...

@pichlermarc, I have updated logging to use, in order of preference: 1. `console.dir` with `{ depth : null }` 2. `console.log` with `JSON.stringify(..., null, 2)` 3. `console.log` with `String(...)` This...

@pichlermarc thank you for reviewing. You're right that I'm trying to solve two different problems. Solving #5800 should also solve the issue with Semantic Conventions for Generative AI, so would...

@pichlermarc, by default `JSON.stringify()` will drop undefined keys, but the tests currently expect all keys to be present. I can: 1. update the test to ensure no value is undefined,...

@pichlermarc thanks for all your help with this. I have updated the PR, and I believe that the commit should now resolve #5800. Please let me know if you have...