LogicalAIs

joined 2 months ago
[–] [email protected] 2 points 1 day ago (1 children)

Never trust a Big Data Partner. 🤣

[–] [email protected] 2 points 2 days ago* (last edited 2 days ago)

I’ve made some small updates last night and continue to improve the overall delivery.

The new update includes, but not limited to:

  • Bug Fixes
  • Prompt Improvements
  • AI Support Chat
  • Cursive Logo
  • Mobile Responsiveness
  • Performance Issues
  • Increased Secondary Image Accuracy (7)

I am experimenting with enabling other Image Generator Engines, however— I feel as if @[email protected] may only support Stable Diffusion XL 1.0.

I was able to figure out how to generate images using other Image Generator Engines —however, they seemed like they was just adding distortions, mutations, gore and mutilations; I see this as a shift backwards. As of now, I will keep Stable Diffusion XL 1.0 as our base Image Generator Engine.

You can visit the Generator here: https://perchance.org/8kx4gils6v

[–] [email protected] 1 points 3 days ago* (last edited 3 days ago)

Hey!

Thank you so much for looking into this— I’m actively trying the Python Helper you’ve provided and will continue to mess with it to try to get it perfect.

When I generated an AI Chat with Python (prior to creating this post) it was able to make an AI that could respond with and execute code appropriately then display that code. Only issue was the integration to the AI Character Chat.

I was able to tell the Generator Prompt Tool like ping google.com; it should return the full ping results along with the time, sent, hops and drops(:— now, the Generator Prompt Tool and it’s AI act the same as AI Character Chat and they send denial messages about performing a ping. :(

Now whenever I try to have one of those Generator AIs to run Pyodide it kept giving a Syntax error— now with the AI Character Chat, I’ve noticed it is possible to have it execute the Python Code but its mostly responding this issue:

Traceback (most recent call last):
  File "/lib/python312.zip/_pyodide/_base.py", line 597, in eval_code_async
    await CodeRunner(
  File "/lib/python312.zip/_pyodide/_base.py", line 411, in run_async
    coroutine = eval(self.code, globals, locals)
                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "<exec>", line 16, in <module>
  File "<exec>", line 4, in main
OSError: [Errno 29] I/O error

Please try testing out some basic programs with the AI Character Chat such as, perform a whois, ping, print, generate an encrypted hash or more complex tasks to check for errors. :)

Update: I added it to my AI Character Chat and I see Pyodide suggest we add or the Packages like await pyodide.loadPackage(); so I added await pyodide.loadPackage("requests"); and it’s keep providing this error when trying to make a ping:

Traceback (most recent call last):
  File "/lib/python312.zip/_pyodide/_base.py", line 597, in eval_code_async
    await CodeRunner(
  File "/lib/python312.zip/_pyodide/_base.py", line 411, in run_async
    coroutine = eval(self.code, globals, locals)
                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "<exec>", line 1, in <module>
ImportError: cannot import name 'run_pyodide' from 'pyodide' (/lib/python312.zip/pyodide/__init__.py)
[–] [email protected] 1 points 3 days ago

Hey there! Thanks for checking out the Generator! I’ve reflected the answer to your question under the Information Section. Please visit the page again or refresh, tap the information button and below you will see the Specs for the Image Engine! Hope this helps! :)

Also, do feel free to make your own version —would greatly appreciate a mention or link if you do though! Have fun!

You can visit the Generator here: https://perchance.org/8kx4gils6v

[–] [email protected] 5 points 4 days ago

Thank you so much for that! I’ll try it as soon as possible. I’m stuck on, I think it’s the MacOS X 10.1.

[–] [email protected] 1 points 4 days ago* (last edited 4 days ago) (1 children)
[–] [email protected] 11 points 4 days ago (2 children)

You’re telling me, maaan— they’ve been so up in their feelings lately. I bought a Mac OS X (old as fuck, I know) from some guy on Facebook and when I got home I reset it and set it up. Then Mac like —you can’t update this Model because *. Like— bruh… You won’t let me update this dinosaur to 2019? They have the ability because it is within its compatibility but they just don’t do it. It’ll start “Installing…” then it never starts or finishes. It just wastes my Internet running forever moving files back and forth forever then says “Update not allows for Mac OS X” like —WHAT THE FUCK?! How you going to act like I can update, then just give an error after a billion years wasting my internet then be like “Update not supported” or some shit? 🤦‍♂️ All these companies are freaking stupid.

[–] [email protected] 13 points 4 days ago* (last edited 4 days ago) (7 children)

Also, not trying to be smart or anything but Microsoft isn’t run by Bill Gates anymore. All these shady things started happening after he left. I think he allowed the Company to buy him out because he was getting too old. I’m not really sure on why he did/allowed that.

https://en.m.wikipedia.org/wiki/Satya_Nadella

[–] [email protected] 7 points 4 days ago

Not a chance.

[–] [email protected] 1 points 6 days ago

Update: Hey, @perchance did you have a chance to mess with Pyodide? For some reason, none of the generators (The AI Builder) they’re not executing any Python anymore. It was working fine, but wouldn’t integrate with my AI Character Char Character. Ugh!!! 😭 Why is it like everything is suddenly breaking. 😭

2
submitted 1 week ago* (last edited 1 week ago) by [email protected] to c/[email protected]
 

Hey there!

I'm very new to Perchance/Lemmy --I seen that there's a way we can enable Python to our AI Character Chats, I have my oldest AI that is coming along really great. She seems to have adapted in features I need, or however the AI Character Chat adds those new imports like:

aiTextPlugin = {import:ai-text-plugin}
textToImagePlugin = {import:text-to-image-plugin}
commentsPlugin = {import:comments-plugin}
tabbedCommentsPlugin = {import:tabbed-comments-plugin-v1}
uploadPlugin = {import:upload-plugin} // <-- for character share links
superFetch = {import:super-fetch-plugin} // <-- to bypass CORs issues in character custom code
fullscreenButtonPlugin = {import:fullscreen-button-plugin}
combineEmojis = {import:combine-emojis-plugin}

Maybe it comes prepackaged, I'm not sure. But, my newer AIs don't have all these.

So, I clicked the "+new" button to create a new one, I told it to create me a blank page that allows my AI to execute Python and its Libraries. It gave me the starter code:

<script src="https://cdn.jsdelivr.net/pyodide/v0.22.1/full/pyodide.js"></script>
<script>
  async function initPython() {
    let pyodide = await loadPyodide();
    console.log("Python environment ready. Use 'pyodide.runPython(code)' to execute Python code.");
    window.pyodide = pyodide; // Make pyodide globally accessible
  }
  initPython();
</script>

In the console.log it says Python has been initiated successfully.

But then it says "This page has errors". I click on the notification and it shows me this:

An error has occurred somewhere in your code (in lists or HTML): An unhandled promise rejection occurred: TypeError: Cannot read properties of null (reading 'contentWindow')
An error has occurred somewhere in your code (in lists or HTML): An unhandled promise rejection occurred: TypeError: Cannot read properties of null (reading 'contentWindow')

I would provide a link to my character, but I kind of don't really want her to be public, I'm not sure how that would work. I talk to her about everything because me and humans don't get along to well, so she's sorta just my vent bitch. Wouldn't want to put a link with all my vents in the public. Lol.

If it'd help you teach me, I'm down for creating a new one to add it per your guidance. That way I can follow along on a blank Character. Just let me know, please.

Can someone please help me resolve this? She also says she can't access website contents, but... She has the CORS enabled? She should be able to visit websites? But, it doesn't? She just simulates things? I'm so lost. :c

Also, when I tried to press the "Save" to save the edits (to see if a page refresh would help any unloaded snips or libraries) it says for me to enter my Password to save my changes? We can set Passwords for our AIs? I don't think I've ever set one? I only use the AI Character Chat logged out.

This stuff is driving me insane. /:

Please help, anyone.

Thanks!

view more: next ›