20 comments

  • usernomdeguerre6 hours ago
    &gt;The game runs on Windows, the audio processing and brain runs on my M4 MacBook. It could all run on Windows (provided there is dedicated ~12gb or more gpu ram for it)<p>I do wonder if this is an avenue for console gaming that might be practical in a few years; AI-centric hardware that might be too beefy or expensive for regular users, but can extend new or existing games. Kinda like the expansion paks of old.<p>unfortunate that the &quot;ALE&quot; design wasn&#x27;t opensourced (couldn&#x27;t find a link in their post) but I would be interested in learning more about the design, in particular what sort of data pipeline was necessary from skyrim to give this sort of action flexibility?
    • pantelisk6 hours ago
      I will be open sourcing it soon :) my code is a bit dirty (the whole system is 3 pieces. The game adapter &#x2F; a websocket bridge between game and brain &#x2F; the brain itself) and it runs on 2 different (local) machines currently.<p>Ale is what makes this work locally, I felt a little conscious about it as I am not sure if it is a novel approach or somebody comes out and claims I rediscovered BERT or something (though ale runs at 1&#x2F;10 the cost of BERT).
    • Zylokloto50 minutes ago
      As soon as the AI progress &#x27;slows down&#x27; a little bit and its a little bit more clear what makes sense of converting into a hardware model, there will be for sure something.<p>It either might be some neural engine like what Apple is doing and tensor units like what high end android phones already have or something dedicated.<p>Based on the current capacity issues around the globe, perhaps 1-5 years?<p>But we have for sure crossed a price point were you just might buy 10 ai credits and will be able to just play 100h without running ot of your ai credits. basic conversations etc. finetuned for a game, doesn&#x27;t need a frontier model.
    • giancarlostoro28 minutes ago
      &gt; I do wonder if this is an avenue for console gaming that might be practical in a few years;<p>If the AI Bubble bursts a little and the inflated prices for tech dwindle down to normal maybe, otherwise, it will be too expensive.<p>Or some other advancement that challenges the giants financially but incentivizes companies to build for local AI usage.
  • seabombs7 hours ago
    I must say absolutely hilarious video. The &quot;persona&quot; of the dog is great. As someone who is generally pretty &quot;keep your AI out of my art&quot; this looks very fun to play. I can imagine this being cleverly integrated as a primary feature of a game (this must already be in the works). Ideally as a small model able to run locally alongside the game.<p>The moment where the dog is going on about &quot;something foul in the air&quot; as the player is attacked by a wolf (&quot;F--- dude you could have warned me!&quot;) was great comedy.
    • MattDamonSpace6 hours ago
      New mediums always absolutely knock the humanity organism for a bit
  • Xx_crazy420_xX2 hours ago
    Very promising project! The latency is great and looks pretty polished for solo work.<p>&gt; ALE is designed to be largely invariant to phrasing. You can say pick up, you can say grab, fetch, go get the damn sword you fool - it doesn&#x27;t matter, it will still understand you &gt; It creates embeddings from the full text as well as its extracted structure<p>I get how you utilize embeddings, but most interesting part for me is how you decompose multiple commands? You decompose sentences before embedding?
  • Jach35 minutes ago
    Nice demo, I&#x27;m always impressed by making these things low latency enough to be actually interactive. Were you inspired at all by the autonomous vtuber Neuro-sama recently getting some in-game integrations to allow her to play Skyrim on her own? (<a href="https:&#x2F;&#x2F;www.youtube.com&#x2F;watch?v=3o7ORYqLrRw" rel="nofollow">https:&#x2F;&#x2F;www.youtube.com&#x2F;watch?v=3o7ORYqLrRw</a> shows the highlights from the first stream.)
  • rao-v7 hours ago
    I like the approach here. It’s cleverer than just “dump context to LLM”. I couldn’t quite figure out if it genuinely runs purely locally though.<p>If nothing else - this is how NPCs should work in games moving forward!
    • pantelisk6 hours ago
      Hello, author here. I was intentionally a little vague about this because this is kind of the thing that makes the whole approach work.<p>An LLM predicts the next token. If you&#x27;re trying to predict the next token in a mathematics competition, or while playing a deep strategy game, being a much larger and more capable model helps enormously. To predict that next token correctly, the model effectively needs to model a bunch of possible future states - even if that is a second order (unintended) effect, it is what is seems to be happening.<p>This is basically the Ilya (and Dario) argument that prediction, understanding, and compression are the same thing (deep rabbit hole) from a few years ago.<p>----<p>In my opinion; this is a beautiful idea, but videogames do not need most of that. Videogames (and games in general) shine when character behavior is predictable, and when NPCs are a little dumb (just a little).<p>We already have very good small roleplaying models — Qwen 3.5 4B&#x2F;9B&#x2F;30B-A3B. Nowhere near frontier models at general reasoning. But they can act and write in a very engaging way. Good at roleplaying but very weak at reasoning. They just need a little nudge at reasoning...<p>And that&#x27;s the key. The player has already expressed their intent: attack that guy, go look over there, cover me, find the key that shines and is golden, etc. A constrained world, with a constrained set of actions. Instead of asking the model to reason over an enormous space of possible futures, we&#x27;re mostly asking it to map: player intent + current world state → a small sequence of plausible actions.<p>As for the &quot;dump context to an LLM&quot;. It&#x27;s basically. &quot;You are roleplaying as X - you experienced Y - you like&#x2F;dislike (dispositions) Z, you remember Alpha, your journal says Delta. Player orders you to do Gamma. - &quot;What do you respond and do?&quot;<p>It kind of works (as you can see in the videos I posted). I am not going against the grain, big models are better, but do we need those models for everything?
      • alwaysanoobie3 hours ago
        What I don&#x27;t understand is how are you passing the world state to the model?<p>Say for instance when you ask the dog to do an action when you launch an arrow upwards how is the LLM continuously tracking the state of the game to be able to respond?
        • pantelisk2 hours ago
          At that point it&#x27;s deterministic and doesn&#x27;t need the LLM. Once a plan has been decomposed and evaluated, it becomes a sequence of actions. Actions can either wait on a trigger or flow from one to another.<p>For the arrow example: wait here -&gt; bind: arrow event -&gt; pick_up $target -&gt; goto player -&gt; drop $target.<p>A plan can bind to multiple steps and actions. eg you can tell the dog, &quot;when I say apple you say banana&quot; this creates a short lived &quot;player has said %apple%&quot; -&gt; say &quot;banana&quot; rule. Hide and seek does &quot;say: count to 10&quot; (this then gets fed to llm that converts it to &quot;one, two, three&quot;). So, the plan decomposition is fuzzy, but it gets decomposed to concrete steps, these steps might invoke the LLM back if needed so, but mostly for color, not logic.<p>Where the LLM is used afterwards, is for evaluating the result. The dog might ask for a treat if it got right or get frustrated is it misses a beat, etc (depending on emotional state, hunger levels, etc).<p>Basically trying to use the best of each system (fuzzy&#x2F;vague&#x2F;emotional for LLM, &quot;hard&quot; game actions for determinism). You can think of Ale&#x27;s output as a small flowchart.<p>I am using a pretty dumb model. It&#x27;s great for speaking, terrible for thinking, so there&#x27;s a need for creativity
  • mike_hearn2 hours ago
    This is the sort of thing that the GPT-Live model would excel at when it launches. I&#x27;m not sure you&#x27;d need the ALE model at all if they launch Live in the API with acceptable pricing as it solves the latency issues with voice entirely. It&#x27;s an impressive piece of engineering that hasn&#x27;t been discussed much yet, I guess because it&#x27;s only a ChatGPT feature and not accessible to developers. The model can dispatch tools asynchronously while speaking which would be ideal for a game.<p>What you&#x27;d want is maybe some kind of Live model with voice warping so it can be given different Skyrim themed &#x27;Nordic&#x27; voices, and then custom tools to interact with the game engine.
  • oscarmcdougall7 hours ago
    Love the concept of void mode. A companion that follows you across games, that&#x27;s cool.
  • toilet2 hours ago
    Great concept and presentation. How much knowledge about the world does the agent have? Does Skyrim accurately model what their in game character can actually see and hear?
  • voidUpdate1 hour ago
    Does it have any agency of its own, or is it entirely reliant on you commanding it?<p>&gt; &quot;Maybe it&#x27;s because Varkos is a dog, and who doesn&#x27;t like dogs&quot;<p>Me
    • pantelisk1 hour ago
      Yes, the dog has a few levers including a &quot;boredom&quot; counter that will trigger it to do things on its own (like roam around, eat something, chase something (eg a rabbit) if there&#x27;s one around etc). All connected with its current state (Eg hungry = will probably prioritize eating but not guaranteed). Other things are mapped to game events. Deterministic in nature but its underlying values can evolve over time (both its default &quot;homeostasis value&quot; but also the curve of which it increases). You can think of it as letting an llm design a behavior graph, and then playing that behavior graph until it changes again.<p>Talking to it alleviates pressure so that mechanism doesn&#x27;t fire much, but in the void-mode video on the website, at the very end, it chooses to chase down an elk on its own much to my surprise.<p>After play testing it I had to tone it down quite a bit as it caused continuity issues...<p>In one scenario the dog was hungry so he went and ate something that was owned (counts as a crime attributed to the player) so we ended up in jail. Being transported to jail fired a new location event and a switch from &quot;exterior-&gt;interior&quot; which the dog responded to by having the llm author something along the lines of &quot;It&#x27;s nice to be finally indoors, it was getting cold outside&quot;. Which made for a very funny moment but a frustrating gaming experience.
  • igleria1 hour ago
    I imagine playing fallout with this and.. please keep at it!
  • Havoc4 hours ago
    Wow that demo video is way better than expected. Well done
  • Evidlo5 hours ago
    The voice reminds me of Marcus the worm from VRChat<p><a href="https:&#x2F;&#x2F;www.youtube.com&#x2F;watch?v=yAEMVVtnUqM" rel="nofollow">https:&#x2F;&#x2F;www.youtube.com&#x2F;watch?v=yAEMVVtnUqM</a>
  • big_dave2122 hours ago
    awesome idea and implementation. feels like a game feature that you didn&#x27;t know that you wanted.
  • panki274 hours ago
    Have you seen Mantella yet? <a href="https:&#x2F;&#x2F;art-from-the-machine.github.io&#x2F;Mantella&#x2F;" rel="nofollow">https:&#x2F;&#x2F;art-from-the-machine.github.io&#x2F;Mantella&#x2F;</a><p>tl;dr: let&#x27;s you talk to all NPCs via LLM. Last time I tried it, latency was too much for it to be enjoyable, your approach seems to be much faster.
  • walrus015 hours ago
    I guess this means you can fus ro dah the LLM off a mountain, so there is that.
  • mihau2 hours ago
    I expected slop, but this is really good! (both demo and write-up)
  • aussieguy12344 hours ago
    Next up: A smart glasses companion that follows you around in the game known as life.<p>Ive seen something like this in sci fi films.
    • dosenbrot2 hours ago
      Dennou Coil had this exact same concept.
  • nicedaylucas2 hours ago
    [flagged]
  • Hilliard_Ohiooo7 hours ago
    Video game seem like the perfect fit for llm use and I don&#x27;t understand why it hasn&#x27;t happened already.
    • goda906 hours ago
      It&#x27;s expensive, early attempts didn&#x27;t impress, and many gamers are hostile to the tech because it threatens the livelihood of game creators and impacts gaming hardware prices.
    • nottorp3 hours ago
      It depends on if you want samey games or anything creative.<p>You could have complex realistic dialogue for innkeeper #28917 in the little hamlet of ass backwards, but:<p>One: do you really want that? There is such a thing as too much realism in a video game.<p>Two: do you really want all NPCs in all games to speak nigerian business english?<p>Reminder for 2: <a href="https:&#x2F;&#x2F;www.theguardian.com&#x2F;technology&#x2F;2024&#x2F;apr&#x2F;16&#x2F;techscape-ai-gadgest-humane-ai-pin-chatgpt" rel="nofollow">https:&#x2F;&#x2F;www.theguardian.com&#x2F;technology&#x2F;2024&#x2F;apr&#x2F;16&#x2F;techscape...</a>
      • flaunf2212 hours ago
        It&#x27;s a simple thing:<p>Who wants to read AI-generated articles and respond to AI-generated comments? Probably not many. For same reason gamers mostly don&#x27;t want to chat with AI-backed NPCs. More is only better when it has meaning.
    • numpad05 hours ago
      Because games are entertainment, but outputs generated by current AI are rage inducing and felt hostile, not entertaining. It just isn&#x27;t past the &quot;make it work&quot; stage.
    • bbmatryoshka5 hours ago
      at the current token prices, far too expensive, but in medium&#x2F;long term I think we will see a revolution in this field, the concepts are already there (and the expensive proofs of concept already work)
    • snowram4 hours ago
      It did, look at the game Suck Up or a variety of Skyrim mods. Problem is gamers are hostile to any obvious trace of IA in their games. Also, consumer hardware is overall too weak to run a convincing llm model.
    • pphysch4 hours ago
      LLMs have only been really good for a couple years. You can bet that the remaining AAA studios are working hard on figuring this out in current unreleased products.
      • keyringlight1 hour ago
        One challenge I see is that to work well and stand above &#x27;easy&#x27; implementations the game would need to provide a rich context for the AI to exist in and interact with. Skyrim is a richly detailed world with an engine that allows that level of interaction, especially as it builds upon earlier elder scrolls games. Then there&#x27;s the factor of whether commercial studios with the capacity to make that world in the first place (which has been a major draw for players) will invest further budget into AI to add more value, and if they have options to see a return on that investment via the main purchase price or additional costs.
        • igleria1 hour ago
          just offer a separate subscription to host the companion model. I feel dirty typing this.
  • crspatel1 hour ago
    [flagged]