Winston Chang

Results 285 comments of Winston Chang

@iainmwallace I have a had some difficultly getting error messages to show up immediately. I think it has something to do with it receiving the data on a separate `Task`,...

Here is a simple script I used to test communication with Azure: ```py import openai openai.api_type = "azure" openai.api_base = "https://winstontest.openai.azure.com/" #

I have this working with Azure, using a deployment I created named `my-gpt-35-turbo`. Example app: ```py import openai from shiny import App, Inputs, Outputs, Session, ui import chatstream openai.api_type =...

A couple questions: What version of `openai` are you using? ``` >>> import openai >>> openai.__version__ '0.27.8' ``` What happens if you call `acreate()` without `model`? My understanding is that...

I don't think you're running into this problem, but for future reference, I just realized that I need to mention one **very** important thing about the `acreate()` code I provided...

I think it would be helpful if there was some indication that clicking on the name of the function would open it in the Help panel. If the text is...

What you do here will really depend on specifics of how the page loads the content. The Chrome Devtools Protocol documentation might have some relevant events to listen for: https://chromedevtools.github.io/devtools-protocol/

Good to hear that you're planning on continuing work on this package. Some thoughts: - I think that the package would need `Imports: QuickJSR` instead of `LinkingTo`. - I think...

That's great to hear! I guess renaming it to `quickjsr` might not be worth the trouble, and could cause problems for users with case-insensitive filesystems (Mac and Windows), if they...

Maybe the tool should do something like this: - Get a list of all files - If there are more than N files, send to the LLM up to M...