tlgklxz

joined 5 months ago
[–] tlgklxz@lemmy.world 1 points 2 hours ago (1 children)

Well, I am no developer but mere user but what error you get? I just got usage limit error a day before but other than that this thing respond fast. Has reasoning and everything... Check F12 console and get what the error is about like ai-agent.perchance.org 404 512 503? what kind of error?

The old one yeah, I still chat with it, I built a model probe for that, mimics the perchance behaviour. Though that model must be kimi 2.5 or similar, not as smart as this one but more strict. Though I am pretty sure has a huge context limit, it passed my 320K context limit test but I couldn't fit any more words so that was it. And again, the old one were insufferably slower isn't it? I remember sending same message 5 times just to get eror.

 

Hi everyone... Hopefully I would get some answers! Not because I am mad because I am kind of worried.

Luckily, our dev, updated the ai helper tool, which was already 'kind of' great but now it's even more amazing and I think I know why...

It's opencode.ai. My guy literally got a monthly subscription for users or himself/herself to have better coding tool. And I am not joking that thing has either Claude Sonnet 4.5 or Gpt 5.2 similar performing (might be Kimi K3 too, I am not sure) engine running. And possibly burning tokens with my stupid questions.

Dude I am not happy nor sad, I am just worried. Opencode GO costs like 10$ with "generous" limits which I have seen AI Helper filled the 'usage limit' for the day (last night or before that).

But of course I have run some benchmarks and I am kind of sure it's not GO but ZEN probably and hopefully not 'pay as you go' stuff. Because that sh* will be expensive as hell. Soon.

[–] tlgklxz@lemmy.world 1 points 3 weeks ago* (last edited 3 weeks ago) (1 children)

That's just a guess. The model is hallunicating heavily as always and this time it thinks it's a Gemma model. Likely gemma 2 not even 4. Due to it says it's local time is 21-22 may 2024 around 10:40 Am all the time.

For Gemma 2 it's right. But the knowledge cut off is around 2023. Not 2024. So it's not even gemma but makes it more likely Mistral / Llama. But it does use lot's of bolding, which is not Mistral nor Llama like.

So there is only one option left... Deepseek as usual, the great identity thief. So no, no model change but there is a problem with system prompts leaking into context window. So most likely what we are having is the dev tweaking the model config and made a small mistake that caused bunch of bigger mistakes. Now we are suffering due to it. So calm your horses.

Edit: WE don't even know if it's deepseek btw. Our own research results in Deepseek or heavily distilled model not even a base deepseek model. But we don't know it. It uses deepseek tokenizer because it's easy and free to use, which confuses some other models too.

[–] tlgklxz@lemmy.world 2 points 3 weeks ago (3 children)

Who told you the model is changed from Deepseek to X?

[–] tlgklxz@lemmy.world 2 points 3 weeks ago (3 children)

I am pretty sure it's still deepseek model cause still 'stealing' from other LLm's.

Right now it acts as Gemma 2. Not even gemma 4. Literally Gemma 2 OR Llama 3.1 or rarely Gpt 4.0.

It can think, it can use start_of_turn or eot_id and im_start at the same time! Either because of the DeepSeek Tokenizer all the inputs I have sent are getting mixed up by the LLm or it's deepseek and pretending damn hard.

However, dev definitely tried to 'scrape' some instructions from the model. Here is my long why: https://www.reddit.com/r/perchance/comments/1uff0pq/ai_text_plugin_potential_issues_and_why/

[–] tlgklxz@lemmy.world 1 points 1 month ago* (last edited 1 month ago)

Oh wait.~~ I think I understood what you meant or I just solved it I don't know, I didn't tried it yet.~~

So what are you saying is: Duplicate the space. It will give me a new generator with edit key. Change the url of the old one, since all the 'data' is tied to URL, it wouldn't be gone. Take the new space and change it's URL to the old one, so all of my data would be there... And use the new edit key.

Oh hmm... While logged in, generating new generators won't give you edit keys... So I guess it's not fully implemented or not cared enough?

[–] tlgklxz@lemmy.world 1 points 1 month ago

I can access still. I have my account. I just forgot and lost my edit password. So I don't need to abandon it- Yet.

[–] tlgklxz@lemmy.world 1 points 4 months ago* (last edited 4 months ago)
<script>
(function() {
  function startBgRemovalWatcher() {
    var outputArea = document.getElementById('outputAreaEl');
    if (!outputArea) {
      setTimeout(startBgRemovalWatcher, 800);
      return;
    }

    var observer = new MutationObserver(function(mutations) {
      if (window.input?.removeBackground !== "true") return;

      mutations.forEach(function(mutation) {
        mutation.addedNodes.forEach(function(node) {
          if (node.nodeType !== 1) return;

          var iframes = [];
          if (node.tagName === 'IFRAME') {
            iframes.push(node);
          } else {
            iframes = Array.from(node.querySelectorAll('iframe'));
          }

          iframes.forEach(function(iframe) {
            if (iframe._bgHandled) return;
            iframe._bgHandled = true;

            var ctn = iframe.closest('.t2i-image-ctn') || iframe.parentElement;
            ctn.style.position = 'relative';

            var attempts = 0;
            var maxAttempts = 240;
            var poll = setInterval(function() {
              attempts++;

              var out = iframe.textToImagePluginOutput;
              if (out && out.dataUrl) {
                clearInterval(poll);

                var img = document.createElement('img');
                img.src = out.dataUrl;
                var iframeRect = iframe.getBoundingClientRect();
                img.style.cssText = 'display:block; border-radius:3px; width:' + iframeRect.width + 'px; height:' + iframeRect.height + 'px; object-fit:contain;';

                if (out.dataUrl.startsWith('data:image/png')) {
                  img.style.background =
                    'repeating-conic-gradient(#888 0% 25%, #fff 0% 50%) 0 0 / 20px 20px';
                }

                iframe.style.display = 'none';
                iframe.parentElement.insertBefore(img, iframe);

                console.log('[BG Removal] Done! Displaying PNG.');
              }

              if (attempts >= maxAttempts) {
                clearInterval(poll);
                console.warn('[BG Removal] Timed out.');
              }
            }, 1000);

          });
        });
      });
    });

    observer.observe(outputArea, { childList: true, subtree: true });
    console.log('[BG Removal Watcher] Active and watching outputAreaEl.');
  }

  startBgRemovalWatcher();
})();
</script>

Forgot to post the HTML part I used. If anyone have any idea how I can add an overlay to that, I would be so happy. It's hard to make it work with an overlay! It always removes one and keeps for rest of the images.

Or if anyone needs to check: https://perchance.org/tlgklz-image Just fork it out.

 

So, dev/devs thank you very much for this implementation!

It took me some time to make it work on generator but glad to make it happen.

Though I wonder, when will be the 'official' implementation for it. Cause I am not that good at coding so with some help, I manage to push the update on my own generator with some framework editing!

I guess I don't need to edit framework and plugin itself but I did it anyway.

Any updates would be amazing, thank you very much for this!

[–] tlgklxz@lemmy.world 4 points 4 months ago (3 children)

It's not. But what would you expect in 'un' moderated generators? You can block the user with a single click.