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 }}
{ "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 }}