Victor

Results 16 issues of Victor

Hello, with the current implementation, interface `PartHeader` is [implemented](https://github.com/emersion/go-message/blob/87d83aac2f695c202fbb6acc422e3f04b27a9f96/mail/reader.go#L104) as either `InlineHeader` or `AttachmentHeader` that both embed `message.Header`. ~~And although it's not documented by the package, the [wiki example](https://github.com/emersion/go-imap/wiki/Fetching-messages) implies...

Current documentation for `DbMap.Select` states: > Values are returned in one of two ways: 1. If i is a struct or a pointer to a struct, returns a slice of...

The following tests fail on Windows, and seem to be related to different handling of EOL and slash/backslash in pathnames between Windows and *nix: ``` $ go test -tags purego...

Hello, it's me again :). Today I would like to discuss the documentation and implementation of `LLMChain.run_message_processors`. TL;DR: 1. The documentation is a bit inconsistent, with a doc string in...

Looks like Google supports structured JSON output by supplying a schema [through model configuration](https://ai.google.dev/gemini-api/docs/structured-output?lang=rest): ``` curl "https://generativelanguage.googleapis.com/v1beta/models/gemini-1.5-flash:generateContent?key=$GOOGLE_API_KEY" \ -H 'Content-Type: application/json' \ -d '{ "contents": [{ "parts":[ {"text": "List 5...

Here is a quick way to add telemetry to `Instructor.chat_completion`. It provides the following benefits: - A standard Elixir way to do telemetry - Captures all relevant information, including raw...

This will allow to selectively use a different parser without setting a global configuration variable, which should help with tests.

I would like to reorganize tests a-la R[eadability.js test suite](https://github.com/mozilla/readability/tree/main/test/test-pages/001): - every fixture lives in it's own folder - folder contains source.html and expected.html, possibly along with expected.txt - folder...