kreneskyp / ix

Autonomous GPT-4 agent platform
MIT License
1.01k stars 121 forks source link

Examples Not Working #445

Open jakebonk opened 8 months ago

jakebonk commented 8 months ago

When running the examples most of them seem to throw an error. It seems like the Chat Input is not being parsed correctly. Looking at the example Ingest Url chain it looks to have an issue passing the Chat Input to the Web Loader. I was able to fix it by using a JSON Transform but in the example videos that it seems to work without them. I built with the latest code on the master branch. image image

With the JSON Transform it works image

Is there something else that needs to be set so that the web loader properly reads the chat input?

kreneskyp commented 8 months ago

I think the fix you made is the right one.

The chat input always sends user_input. The expected values for the chain can be edited but the chat doesn't map to it automatically. Manually mapping the input within the chain is required for now.

A good improvement would be to make the transform automatic, configured from the Chat Input node's input config.

image