Excerpts:

The Verbal Verdict demo drops me into an interrogation room with basic facts about the case to my left, and on the other side of a glass window are three suspects I can call one at a time for questioning. There are no prompts or briefings—I just have to start asking questions, either by typing them or speaking them into a microphone

The responses are mostly natural, and at times add just a bit more information for me to follow up on.

Mostly. Sometimes, the AI goes entirely off the rails and starts typing gibberish

There are, of course, still many limitations to this implementation of an LLM in a game. Kristelijn said that they are using a pretty “censored” model, and also adding their own restrictions, to make sure the LLM doesn’t say anything harmful. It also makes what should be a very small game much larger (the demo is more than 7GB), because it runs the model locally on your machine. Kristelijn said that running the model locally helps Savanna Developments with privacy concerns. If the LLM runs locally it doesn’t have to see or handle what players are typing. And it also is better for game preservation because if the game doesn’t need to connect to an online server it can keep running even if Savanna Developments shuts down.

it’s pretty hard to “write” different voices for them. They all kind of speak similarly. One character in the full version of the game, for example, speaks in short sentences to convey a certain attitude, but that doesn’t come close to the characterization you’d see in a game like L.A. Noire, where character dialogue is meticulously written to convey personality.

  • Big P
    link
    fedilink
    English
    arrow-up
    1
    ·
    4 months ago

    Why do you need to open a port if its listening locally?

    • memfree@beehaw.orgOP
      link
      fedilink
      English
      arrow-up
      2
      ·
      4 months ago

      It is probably easier. I used to run a program that ran its own mini server-like process to send input to other open programs. It used local ports. It didn’t need internet, but it did need ports. My first guess is that programmers already know a bunch of dev libraries that deal with ports so it is easier to use that than write something else from scratch.

    • ReversalHatchery@beehaw.org
      link
      fedilink
      arrow-up
      2
      ·
      4 months ago

      Actually it’s not rare that a part of interprocess communication between a software’s processes is done through localhost networking

      • Big P
        link
        fedilink
        English
        arrow-up
        1
        ·
        4 months ago

        But what firewall blocks that by default?

          • Big P
            link
            fedilink
            English
            arrow-up
            1
            ·
            4 months ago

            OP said that the port wasn’t open, unless they meant the port was already in use rather than the port was closed?

            • memfree@beehaw.orgOP
              link
              fedilink
              English
              arrow-up
              1
              ·
              4 months ago

              The warning message said the port was not open, but my guess is that the message was inexact. I doubt the port was ever restricted at all. In fact – and with no evidence one way or the other – it wouldn’t surprise me if the only issue was my old video card and the ‘port’ error was simply the first error message the game found on initial launch. For my theory to make sense, though, some initial setup piece must have completed on 1st launch such that the 2nd launch had a newly made config file or something and that extra piece let me proceed to a more accurate error.

    • Midnitte@beehaw.org
      link
      fedilink
      English
      arrow-up
      2
      ·
      4 months ago

      If it runs the model as a service locally, it’s probably communicating to the game via a network port.

      Similar to how some single player campaigns are still technically running a “server” for the game, despite being single player.