Hello ,
I tried to Upadate a file name with the module google drive update a file, but it doesn’t work.
Before a find a name through Http module using open ia. Then a mapp the result “Data.output > COntent > text
Hello ,
I tried to Upadate a file name with the module google drive update a file, but it doesn’t work.
Before a find a name through Http module using open ia. Then a mapp the result “Data.output > COntent > text
Hi @Alx_plf
Looking at your screenshots, I can see that 13.Data.output[] is an array and it has at least 2 visible entries. You are trying to map the value from entry 2, from what I understood.
Here you have two options: you either add an Iterator over the output[] array, or you hardcode the index number, if you are sure that the correct item will always be 13.Data.output[2].
Then, the resulting Collection from 13.Data.output[2] also contains a content[] array, where the text is nested. Once again, you have the same choice of iterating or specifying the index.
If you know the structure that your LLM returns and you are sure that the text you are looking for is always at this exact position, specify {{13.Data.output[2].content[1].text}} as the New Updated File Name, otherwise iterate, filter and find the correct option each time.