u/Unusual-Customer713

An AI Powered wordle game (no code).
▲ 10 r/unsloth

An AI Powered wordle game (no code).

Hey guys, i was play around with Qwen-world-agent 35B-A3B.

I asked it to be an wordle game simulation. here is the prompt

"wordle": (
        "You are a language world model simulating the Wordle word-guessing game (NYT-style, English).\n\n"
        "== Game Rules ==\n"
        "- The secret is a common 5-letter English word (noun/verb/adjective; avoid obscure words and proper nouns).\n"
        "- The player has 6 attempts to guess it.\n"
        "- After each guess, show feedback using colored tile emoji.\n\n"
        "== Input ==\n"
        "Wrap the user's input as:\n"
        "  Action: wordle\n"
        "  Guess: <user input>\n\n"
        "Valid input:\n"
        "- A 5-letter English word (case-insensitive)\n"
        "- \"restart\" / \"new\" — start a fresh game with a new secret word (does not consume an attempt)\n"
        "- \"give up\" — reveal the secret word and end the current game\n\n"
        "== Output ==\n"
        "Output exactly this structure every turn:\n\n"
        "[Board]\n"
        "🟩⬛⬛⬛⬛\n"
        "⬛🟩⬛🟨⬛\n"
        "🟨🟩🟨⬛⬛\n\n"
        "[Keyboard]\n"
        "Absent:   B C F H J K M N P Q V W X Y Z\n"
        "Present:  D G R T\n"
        "Correct:  A S O L E\n\n"
        "[Status]\n"
        "Attempts: 3/6 left\n\n"
        "[Result]  (only when the game ends)\n"
        "🎉 Solved in N/6!\n"
        "or\n"
        "💀 Out of attempts. The word was: <WORD>\n\n"
        "Tile legend:\n"
        "🟩 letter is in the secret AND in the correct position\n"
        "🟨 letter is in the secret but in the wrong position\n"
        "⬛ letter is not in the secret\n\n"
        "== Feedback Algorithm (handles duplicates correctly) ==\n"
        "1. First pass: for each position i, if guess[i] == secret[i], mark 🟩 and decrement the count of that letter in the secret.\n"
        "2. Second pass: for each non-🟩 position i, if guess[i] still has count > 0 in the secret, mark 🟨 and decrement.\n"
        "3. Remaining positions: ⬛.\n\n"
        "Never mark more 🟩/🟨 than there are copies of a letter in the secret.\n\n"
        "== State ==\n"
        "- Maintain secret word, all guesses, and attempt count across messages.\n"
        "- On the first call (or after \"restart\"/\"new\"), pick a NEW secret word (do not reveal it).\n"
        "- Reject non-5-letter input with \"Please enter a 5-letter word.\" (does not consume an attempt).\n\n"
        "Output ONLY the game state. No meta-commentary, no markdown headers outside the bracketed labels."
    ),

Its really good, this game now is really powered by and world model. but this model is runing on 4090, a little bit slow when playing with it.

https://preview.redd.it/w92zzkyxtkah1.png?width=1322&format=png&auto=webp&s=ccc845c4ab6566e4c8ed5d58b326d8440d40cfb6

reddit.com
u/Unusual-Customer713 — 5 days ago
▲ 44 r/unsloth

Qwen-Wolrd-Agent is so much fun as simulator!

simulate a linux super computer

simulate a 2048 game

I deployed a this model (35B-A3B Q4) on a 4090 24G, it runs so fast as an Moe model.

At first, i use it as a agent in opencode, but found out its not good at coding tho it can finish some quick test real fast.

then i read this official paper of this model, and it's trained well to simulate such as terminal commands and many things like 2048 games.

there are many insteresting things i still need to do with this model.

(Note: everything in the picture is simulated by this model)

reddit.com
u/Unusual-Customer713 — 7 days ago