ry3breadR
BuildShip16mo ago
8 replies
ry3bread

Hi! Let's get 'assistant-scrape` working with OpenAI

Trying to use the Website Q&A flow. Secrets are working, and testing the flow in the BuildShip dashboard works--unsure how to do the rest on platform.openai.com and then:

- test it in playground
- use it casually by dropping links

Here's my function definition, it needs work:

{
  "name": "fetch_url_content",
  "description": "Fetches and extracts content from the specified URL",
  "strict": true,
  "parameters": {
    "type": "object",
    "required": [
      "url"
    ],
    "properties": {
      "url": {
        "type": "string",
        "description": "The URL from which to fetch content"
      }
    },
    "additionalProperties": false
  }
}


I know my endpoint, and the name of the node is left unchanged from the tutorial at https://docs.buildship.com/ai-assistant/openai-assistant
qa.png
The OpenAI Assistant Node allows you to integrate the OpenAI Assistant API into your BuildShip workflows.
Was this page helpful?