rodion-m / ChatGPT_API_dotnet

OpenAI, Azure OpenAI and OpenRouter Chat Completions (ChatGPT) .NET integration with DI, persistence and streaming support
MIT License
77 stars 14 forks source link

How do I use in a razor page? Always seems to be blocking #3

Closed jay23606 closed 1 year ago

jay23606 commented 1 year ago

image

jay23606 commented 1 year ago

I got it working like this in case anyone is curious: image

(sb is a StringBuilder and I just do @sb.ToString() on markup)

jay23606 commented 1 year ago

Added a fix with one of the methods so token size hopefully doesn't overflow: image

rodion-m commented 1 year ago

@jay23606 thanks for contributing! Feel free to ask your questions after I update the library.

jay23606 commented 1 year ago

@jay23606 thanks for contributing! Feel free to ask your questions after I update the library.

No problem. I still don't think I was able to get streaming working like it works with JavaScript. Not sure how to get a response.body.getReader or a TextDecoder without js interop.