📖 To learn more, take a look at our complete API
📤 Example Request
Generate an api key below👇
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
- 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 = {
"query_instructions": "<Chat History> \n{{ messages }} \n\n<Last Message> \n{{ input_prompt }} \n\n<Instructions> \nGiven the conversation, only rephrase the last message to be a standalone statement in 2nd person's perspective. Make sure you include only the relevant parts of the conversation required to answer the follow-up question, and not the answer to the question. If the conversation is irrelevant to the current question being asked, discard it. Don't use quotes in your response. \n\n<Query Sentence>",
"dense_weight": 1.0,
"citation_style": "number",
"use_url_shortener": false,
"translation_model": "google",
"lipsync_model": "Wav2Lip",
"elevenlabs_model": "eleven_multilingual_v2",
"elevenlabs_stability": 0.5,
"elevenlabs_similarity_boost": 0.75,
"elevenlabs_style": 0,
"elevenlabs_api_key": null
};
async function gooeyAPI() {
const response = await fetch("https://api.gooey.ai/v2/video-bots?example_id=lcqh21d4", {
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();
Generate an api key below👇
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
- 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 = {
"query_instructions": "<Chat History> \n{{ messages }} \n\n<Last Message> \n{{ input_prompt }} \n\n<Instructions> \nGiven the conversation, only rephrase the last message to be a standalone statement in 2nd person's perspective. Make sure you include only the relevant parts of the conversation required to answer the follow-up question, and not the answer to the question. If the conversation is irrelevant to the current question being asked, discard it. Don't use quotes in your response. \n\n<Query Sentence>",
"dense_weight": 1.0,
"citation_style": "number",
"use_url_shortener": False,
"translation_model": "google",
"lipsync_model": "Wav2Lip",
"elevenlabs_model": "eleven_multilingual_v2",
"elevenlabs_stability": 0.5,
"elevenlabs_similarity_boost": 0.75,
"elevenlabs_style": 0,
"elevenlabs_api_key": None,
}
response = requests.post(
"https://api.gooey.ai/v2/video-bots?example_id=lcqh21d4",
headers={
"Authorization": "bearer " + os.environ["GOOEY_API_KEY"],
},
json=payload,
)
assert response.ok, response.content
result = response.json()
print(response.status_code, result)
Generate an api key below👇
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
- 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=lcqh21d4' \
-H "Authorization: bearer $GOOEY_API_KEY" \
-H 'Content-Type: application/json' \
-d '{
"query_instructions": "<Chat History> \n{{ messages }} \n\n<Last Message> \n{{ input_prompt }} \n\n<Instructions> \nGiven the conversation, only rephrase the last message to be a standalone statement in 2nd person'"'"'s perspective. Make sure you include only the relevant parts of the conversation required to answer the follow-up question, and not the answer to the question. If the conversation is irrelevant to the current question being asked, discard it. Don'"'"'t use quotes in your response. \n\n<Query Sentence>",
"dense_weight": 1.0,
"citation_style": "number",
"use_url_shortener": false,
"translation_model": "google",
"lipsync_model": "Wav2Lip",
"elevenlabs_model": "eleven_multilingual_v2",
"elevenlabs_stability": 0.5,
"elevenlabs_similarity_boost": 0.75,
"elevenlabs_style": 0,
"elevenlabs_api_key": null
}'
🎁 Example Response
{4 Items"url":
string
"https://gooey.ai/copilot/"
"created_at":
string
"2023-07-20T12:20:42.722581+00:00"
"output":
{13 Items"final_prompt":
string
"<|im_start|>system
The following is a conversation…"
"output_text":
[1 Items0:
string
"I believe in the power of collective action and em…"
] "output_audio":
[1 Items0:
string
"https://storage.googleapis.com/dara-c1b52.appspot.…"
] "output_video":
[1 Items0:
string
"https://storage.googleapis.com/dara-c1b52.appspot.…"
] "raw_input_text":
string
"What do you believe in?"
"raw_output_text":
[1 Items0:
string
"I believe in the power of collective action and em…"
] } } Please Login to generate the $GOOEY_API_KEY