Build interactive AI-powered web apps with Blazor and .NET

Поделиться
HTML-код
  • Опубликовано: 26 дек 2024

Комментарии • 15

  • @sridharsathya8719
    @sridharsathya8719 3 месяца назад +3

    Dan, as usual, you have done a great job. This is the only tutorial I need is to integrate the semantic kernel with my Blazor application. Thanks!

  • @SharifYazdian
    @SharifYazdian 25 дней назад

    Does anyone know where can i get the code of Dan's demo? I didn't find it in repo

  • @bobbastian760
    @bobbastian760 2 месяца назад +1

    how do you "get github copilot up"?

  • @sum1namedjon
    @sum1namedjon 4 месяца назад

    very cool adjusting themes!

  • @jmmoyadev
    @jmmoyadev 3 месяца назад

    I downloaded the sample code and the chat works, but colors doesn't change, Did I miss something?

    • @SharifYazdian
      @SharifYazdian 25 дней назад

      where did you download the code from?

    • @SharifYazdian
      @SharifYazdian 17 дней назад

      Where did you get the code?

  • @shahnawazk
    @shahnawazk 4 месяца назад

    Nice and precise!

  • @dagobertoSanchez
    @dagobertoSanchez 4 месяца назад

    Great application, thanks you

  • @kourosh234
    @kourosh234 2 месяца назад

    do it using azure cognitive services for human speech. something like apple siri or alexis

  • @bobbastian760
    @bobbastian760 2 месяца назад

    It doesn't know what ChatHistory is...

  • @marklnz
    @marklnz 4 месяца назад +3

    0:37 Ah! The penny drops! NOW I understand why you're sidelining WASM rendering in Blazor in favor of the inferior Server-based experience. You feel the need (pressure from the corporate overlords perhaps?) to force us to go down the AI route even if it means pushing us to use a mediocre product.

    • @danroth2h7
      @danroth2h7 4 месяца назад +3

      You can also of course also access AI services from the client running on WebAssembly - it's just more work. Whatever credential you're using to access the AI service will typically need to be handled securely on the server, so it's super convenient that Blazor allows you to also handle interactivity from the server as well. If you go with WebAssembly instead, then you need some sort of API endpoint that exposes the AI functionality to the client and you need to work out some sort of security model for that endpoint.

    • @picklenickil
      @picklenickil 2 месяца назад

      @marklnz Interesting point.
      What would you prefer. I wanna know your opinion on what to do?