-
Any plans to use AI just like "Inline Chat" in Github Copilot?
I usually write comments in LINQPad first, then trigger AI completion to get code suggestions. However, if I want to modify a part of the code, there isn't a very convenient way to do it. I wonder if… (View Post) -
Re: Gemini is now accessible from the OpenAI Library
This OpenAI compatibility page refer to a correct settings. So problem solved. * Provider: Custom * Endpoint: https://generativelanguage.googleapis.com/v1beta/openai/chat/completions * Auth Header: A… (View Post) -
Re: Request: Add async `Util.Cache()` method
The LINQPad 8.1 already have a Util.CacheAsync method now. (View Post) -
AI Assistant support for Google AI Gemini API
Google just released Gemini Pro API for free for all users with a 60 QPM limitation. The 60 queries per minute is really enough for personal development requirements. Does LINQPad has a plan to suppo… (View Post) -
How to let try-catch works in LINQPad
I'm trying to try-catch the folowing code in LINQPad. But LINQPad always stopped on Line 3. Can I just leave try-catch works as expected? try { headers.GetValues("User-Agent"); } catch (Ind… (View Post)