API: Well Labs Manuals Bot


📖 To learn more, take a look at our complete API

📤 Example Request

  1. Generate an api key below👇

  2. Install node-fetch & add the GOOEY_API_KEY to your environment variables.
    Never store the api key in your code and don't use direcly in the browser.

$ npm install node-fetch
$ export GOOEY_API_KEY=sk-xxxx
  1. Use this sample code to call the API.
    If you encounter any issues, write to us at [email protected] and make sure to include the full code snippet and the error message.
import fetch from 'node-fetch';

const payload = {
  "input_prompt": "How to store neemastra?",
  "elevenlabs_voice_name": "Rachel",
  "elevenlabs_model": "eleven_multilingual_v2",
  "elevenlabs_stability": 0.5,
  "elevenlabs_similarity_boost": 0.75,
  "translation_model": "google",
  "lipsync_model": "Wav2Lip"
};

async function gooeyAPI() {
  const response = await fetch("https://api.gooey.ai/v2/video-bots/?example_id=3c5yeel0", {
    method: "POST",
    headers: {
      "Authorization": "Bearer " + process.env["GOOEY_API_KEY"],
      "Content-Type": "application/json",
    },
    body: JSON.stringify(payload),
  });

  if (!response.ok) {
    throw new Error(response.status);
  }

  const result = await response.json();
  console.log(response.status, result);
}

gooeyAPI();
  1. Generate an api key below👇

  2. Install requests & add the GOOEY_API_KEY to your environment variables.
    Never store the api key in your code.

$ python3 -m pip install requests
$ export GOOEY_API_KEY=sk-xxxx
  1. Use this sample code to call the API.
    If you encounter any issues, write to us at [email protected] and make sure to include the full code snippet and the error message.
import os
import requests

payload = {
    "input_prompt": "How to store neemastra?",
    "elevenlabs_voice_name": "Rachel",
    "elevenlabs_model": "eleven_multilingual_v2",
    "elevenlabs_stability": 0.5,
    "elevenlabs_similarity_boost": 0.75,
    "translation_model": "google",
    "lipsync_model": "Wav2Lip",
}

response = requests.post(
    "https://api.gooey.ai/v2/video-bots/?example_id=3c5yeel0",
    headers={
        "Authorization": "Bearer " + os.environ["GOOEY_API_KEY"],
    },
    json=payload,
)
assert response.ok, response.content

result = response.json()
print(response.status_code, result)
  1. Generate an api key below👇

  2. Install curl & add the GOOEY_API_KEY to your environment variables.
    Never store the api key in your code.

export GOOEY_API_KEY=sk-xxxx
  1. Run the following curl command in your terminal.
    If you encounter any issues, write to us at [email protected] and make sure to include the full curl command and the error message.
curl 'https://api.gooey.ai/v2/video-bots/?example_id=3c5yeel0' \
  -H "Authorization: Bearer $GOOEY_API_KEY" \
  -H 'Content-Type: application/json' \
  -d '{
  "input_prompt": "How to store neemastra?",
  "elevenlabs_voice_name": "Rachel",
  "elevenlabs_model": "eleven_multilingual_v2",
  "elevenlabs_stability": 0.5,
  "elevenlabs_similarity_boost": 0.75,
  "translation_model": "google",
  "lipsync_model": "Wav2Lip"
}'

🎁 Example Response

{4 Items
"id"
:
string
"mvdmjrj1tunb"
"url"
:
string
"https://gooey.ai/copilot/"
"created_at"
:
string
"2023-07-13T04:12:12.784936+00:00"
"output"
:
{13 Items
"final_prompt"
:
string
"<|im_start|>system You are Well Labs Manuals Bot- "
"output_text"
:
[1 Items
0
:
string
"Neemastra can be stored in plastic drums. It has a"
]
"output_audio"
:
[1 Items
0
:
string
"https://storage.googleapis.com/dara-c1b52.appspot."
]
"output_video"
:
[
]0 Items
"raw_input_text"
:
string
"How to store neemastra?"
"raw_tts_text"
:
NULL
"raw_output_text"
:
[1 Items
0
:
string
"Neemastra can be stored in plastic drums. It has a"
]
"references"
:
[5 Items
0
:
{
}4 Items
1
:
{
}4 Items
2
:
{
}4 Items
3
:
{
}4 Items
4
:
{
}4 Items
]
"final_search_query"
:
string
"store, neemastra"
"final_keyword_query"
:
NULL
"output_documents"
:
NULL
"reply_buttons"
:
NULL
"finish_reason"
:
NULL
}
}

Please Login to generate the $GOOEY_API_KEY