AI Dont Work?

Good afternoon,
I have an application that uses AI to receive information. It was working normally but suddenly it stopped sending the typed information to the table field.
Does anyone know what’s going on?

Yes, some of my AI components are like what you mentioned.

I’ve been trying to make it save data to the database, but it never works. It’s been like this for 2 days now.

I also had an issue with saving default value from AI component. I had to use a number component mapped to the same column to set a default value correctly.

@Carl_Johnson I think this is the same problem you’re facing.

Yep I’m having the same issue here, ai component is showing up fine but whenever I or my users enter information it doesn’t change or add the values to that row

Having issues as well.

One of my components stopped loading existing data stored in JSON. The component functions, but I risk overwriting all previous data stored in the JSON object, because it thinks it’s empty when it’s not. Had to disable the custom component for now to prevent accidental data loss. I load various variables in the custom component code a quarter second after init to make sure the JSON object is completely loaded before parsing it.

Another component of mine seems to fail if the column value it writes to is null. Once the column is filled and and even cleared, everything is back to normal. Similar to above, I have a JSON object which is used to fill variables in the code, and I use the quarter second timeout trick to ensure the JSON is loaded before parsing it. Still though, something is causing the component to fail. The component seems responsive, but fails to write any data to the bound table column. My only guess is that there is an issue when the bound column is null instead of blank. Unfortunately the problem only presents itself on mobile devices. It works as expected in the builder on my laptop, so I am unable to isolate the problem with no way to debug the code.

The two main issues I’m noticing at this point:

  • There is definitely some sort of issue related to null column values (column cells that have never been previously filled with a value).

  • The other issue that I’ve encountered prior to the most recent issues is that the custom component does not properly wait for incoming values to be loaded before executing any code. Which means I have to introduce my own delays and error handling. However, even with the delays, I’m still having trouble getting JSON to parse on init.

That’s right.:face_holding_back_tears::face_holding_back_tears::face_holding_back_tears:

yep when I set columns values in the builder to something (so it isn’t null) then try use the custom component it works!

also this problem for me is in the builder, and on all devices