Train chatbot on your own data
Train chatbot on your own data
Train chatbot on your own data
Get a running start - have all your conversations begin with the AI already knowing the full context!
Get a running start - have all your conversations begin with the AI already knowing the full context!
Get a running start - have all your conversations begin with the AI already knowing the full context!


Powerful Isolated Contexts
Powerful Isolated Contexts
Create isolated contexts, train the AI on your data and access it easily through the API resolver…
Create isolated contexts, train the AI on your data and access it easily through the API resolver…
ChatGPT AI
ChatGPT AI
We use the well-tested and highly rated ChatGPT 3.5 AI to handle all the conversations
We use the well-tested and highly rated ChatGPT 3.5 AI to handle all the conversations
Context starters
Context starters
Isolated contexts let you save input data which the chatbot will then remember when starting a conversation with that context selected.
Isolated contexts let you save input data which the chatbot will then remember when starting a conversation with that context selected.
Save various roles
Save various roles
You can also use saved cotexts as role definers and have any number of saved chatbot roles which provide different functions from a javascript helper to a American to Chinese translator.
You can also use saved cotexts as role definers and have any number of saved chatbot roles which provide different functions from a javascript helper to a American to Chinese translator.
Combine into networks
Combine into networks
Use a number of contexts and combine them into an entire network where each connected chatbot instance will provide an answer based on its data and knowledge.
Use a number of contexts and combine them into an entire network where each connected chatbot instance will provide an answer based on its data and knowledge.
Train an army of
AI Assistants
Train an army of
AI Assistants
Train an army of
AI Assistants
It's as simple as providing a Key and Team for your request and inserting values from your dashboard. You can also use GraphQL Zeus for your API Client.
It's as simple as providing a Key and Team for your request and inserting values from your dashboard. You can also use GraphQL Zeus for your API Client.
It's as simple as providing a Key and Team for your request and inserting values from your dashboard. You can also use GraphQL Zeus for your API Client.
npm install graphql-zeus
1
2
3
4
5
6
7
8
9
10
11
1
2
3
4
5
6
7
8
9
10
11
fetch('https://api.graphqlai.com/graphql', {
headers: {
Key: 'YOUR_API_KEY',
Team: 'YOUR_TEAM_ID',
['Content-Type']: 'application/json',
},
method: 'POST',
body: JSON.stringify({
query: `{ ** YOUR QUERY **}`,
}),
});