Luis
Luis
BRBuildShip + Rowy
Created by Matthew on 9/10/2024 in #💬・general
Matthew - Hey i have a large json data set comi...
@Matthew, Sharing a workflow here that can guide you how to achieve what you're trying to do. Notice in the object input how you can access the specific fields you want to insert in your supabase row. https://buildship.app/remix/6582d840-ddac-479e-a646-45111f1d96d7
7 replies
BRBuildShip + Rowy
Created by sirhc on 9/10/2024 in #❓・buildship-help
sendgrid attachments
Sure thing 👌
8 replies
BRBuildShip + Rowy
Created by Uribef884 on 8/27/2024 in #💬・general
Uribef884 - Hey, does anybody know how to conne...
Hi @Uribef884, file path is the location in the s3 bucket where you want to upload the file, and then content is what you want to write to the file. But you can tweak the node to upload a file directly from flutterflow as well. Here's an example: https://buildship.app/remix/d4396fe5-7c00-45eb-bab3-4d274a3ceaec
7 replies
BRBuildShip + Rowy
Created by Dino Vidili -Ssumar Group on 8/23/2024 in #💬・general
Dino Vidili -Ssumar Group - Hello @Harini and t...
Hi. That's correct. And once you do we can help you figure out why your workflow is not working.
6 replies
BRBuildShip + Rowy
Created by z3thon on 8/17/2024 in #❓・buildship-help
Scrape all YouTube URLs of a specific channel.
Oh Understood. I’ll get back to you with an update.
14 replies
BRBuildShip + Rowy
Created by r0ks0n on 8/19/2024 in #💬・general
r0ks0n - is here anyone available to build me p...
Not sure if this aligns with your requirements, if not, please feel free to share more details: https://buildship.app/remix/190103ab-ff5a-46e8-9e64-48a0ab141c2f
5 replies
BRBuildShip + Rowy
Created by z3thon on 8/17/2024 in #❓・buildship-help
Scrape all YouTube URLs of a specific channel.
Hey @z3thon, have you tried using the "Fetch YouTube Videos" node? Given a list of video ideas, it will extract and return such metadata from each video.
14 replies
BRBuildShip + Rowy
Created by mia on 8/17/2024 in #❓・buildship-help
400 invalid value storybook
Hi @mia, I've went ahead an updated the template to use the latest version of the JSON Generator node. The only piece of information that you need to send is the prompt. Here's how you can do that.
5 replies
BRBuildShip + Rowy
Created by r0ks0n on 8/19/2024 in #💬・general
r0ks0n - is here anyone available to build me p...
Sure thing, I'm not sure what you mean by UUID but I'll work on a basic workflow to help you get started with this.
5 replies
BRBuildShip + Rowy
Created by Yantso on 8/12/2024 in #❓・buildship-help
supabase
Hi @Yantso, to access the activities field from your JSON object you can use dot notation in the expression editor. I'm not sure about the specifics of your workflow but this can give you an idea: https://buildship.app/remix/891dfc6a-e489-4ae5-a044-4c81b1c65943 In the Supabase "Create Row" node you can see how this is done.
4 replies
BRBuildShip + Rowy
Created by Your Majesty on 5/30/2024 in #❓・buildship-help
how to save Current timestamp in firebase create document node
Hi @robot007, if you're looking to store a compatible firebase.firestore.Timestamp then you can have a utility node generate the timestamp for you then reference that in your Create Document node. Here's an example: https://buildship.app/remix/d0a8145b-fe9b-4794-8ba6-618f968b4376
11 replies
BRBuildShip + Rowy
Created by SauloAssis on 8/7/2024 in #❓・buildship-help
ChatGPT Response Streaming with WeWeb and Supabase
@SauloAssis, not sure about supabase but hopefully this helps with the WeWeb part.
7 replies
BRBuildShip + Rowy
Created by Meechie on 8/8/2024 in #❓・buildship-help
Getting data from an API File Upload Trigger.
No description
9 replies
BRBuildShip + Rowy
Created by Meechie on 8/8/2024 in #❓・buildship-help
Getting data from an API File Upload Trigger.
Can you submit your workflow via in app support so I can check it out?
9 replies
BRBuildShip + Rowy
Created by Ledouble on 8/3/2024 in #💬・general
Ledouble - Hello, do you know how I can get the...
No description
3 replies
BRBuildShip + Rowy
Created by coop2432 on 8/1/2024 in #❓・buildship-help
Buildship Bot for NextJs
Hey @coop2432, here's one way you can do this: First, install the NPM package in your project: https://www.npmjs.com/package/@buildshipapp/chat-widget Second, you can initialize the widget in any page or component you want using useEffect. Lets say you want to do this in page.tsx :
"use client";

import "@buildshipapp/chat-widget";
import { useEffect } from "react";

export default function Home() {
useEffect(() => {
if (typeof window !== "undefined") {
window.buildShipChatWidget.config.widgetTitle = "Chatbot";
window.buildShipChatWidget.config.greetingMessage =
"Hello! How may I help you today?";
window.buildShipChatWidget.config.url =
"https://<project_id>.buildship.run/chat/....";
}
}, []);
return (
<main className="flex min-h-screen flex-col items-center justify-between p-24">
<h1 className="text-xl">Hello World from BuildShip</h1>
<button
data-buildship-chat-widget-button
className="bg-slate-500 p-2 rounded-sm"
>
Chat with BuildShip
</button>
</main>
);
}
"use client";

import "@buildshipapp/chat-widget";
import { useEffect } from "react";

export default function Home() {
useEffect(() => {
if (typeof window !== "undefined") {
window.buildShipChatWidget.config.widgetTitle = "Chatbot";
window.buildShipChatWidget.config.greetingMessage =
"Hello! How may I help you today?";
window.buildShipChatWidget.config.url =
"https://<project_id>.buildship.run/chat/....";
}
}, []);
return (
<main className="flex min-h-screen flex-col items-center justify-between p-24">
<h1 className="text-xl">Hello World from BuildShip</h1>
<button
data-buildship-chat-widget-button
className="bg-slate-500 p-2 rounded-sm"
>
Chat with BuildShip
</button>
</main>
);
}
Finally, follow these steps to connect the widget with your BuildShip workflow: https://github.com/rowyio/buildship-chat-widget?tab=readme-ov-file#step-2-connecting-the-chat-widget-to-your-buildship-workflow
4 replies
BRBuildShip + Rowy
Created by Meechie on 7/28/2024 in #❓・buildship-help
Google Cloud File into Node.js readFile
Ok that’s perfect
13 replies
BRBuildShip + Rowy
Created by Meechie on 7/28/2024 in #❓・buildship-help
Google Cloud File into Node.js readFile
Hi sorry I missed your message we can do anytime tomorrow.
13 replies
BRBuildShip + Rowy
Created by Michael on 7/30/2024 in #💬・general
Michael - Hello! Not sure how to do this. I hav...
Hey, in the body of the loop you can save the json in a temporary file and append the new image url field. For this you can use the "Append Array to JSON File" node. Here's a sample workflow thats looping over an array of countries, getting a city for each one using GPT, then using the aforementioned node to append the new field. It then reads the json and returns it. Hopefully this helps: https://buildship.app/remix/a2bd6f42-d22f-4eb9-a54d-062d71d1f7ed
3 replies
BRBuildShip + Rowy
Created by Meechie on 7/28/2024 in #❓・buildship-help
Google Cloud File into Node.js readFile
Hey, for the Get File Buffer node the only input is the path of the file to download from your BuildShip storage. Would you mind submitting an app-support so we can further investigate the issues you are facing in your workflow? We can also schedule meeting https://cal.com/rodge-buildship/30min
13 replies