fix example call param

This commit is contained in:
timothycarambat 2024-05-23 08:29:25 -07:00
parent 96c658b9ab
commit 961630f7d5

View File

@ -20,11 +20,11 @@ const webScraping = {
examples: [ examples: [
{ {
prompt: "What is useanything.com about?", prompt: "What is useanything.com about?",
call: JSON.stringify({ uri: "https://useanything.com" }), call: JSON.stringify({ url: "https://useanything.com" }),
}, },
{ {
prompt: "Scrape https://example.com", prompt: "Scrape https://example.com",
call: JSON.stringify({ uri: "https://example.com" }), call: JSON.stringify({ url: "https://example.com" }),
}, },
], ],
parameters: { parameters: {