AI for your content
A suite of tools to scale your developer experience
Handle more support volume by giving your product experience AI superpowers instead of increasing headcount. DevDocs.ai fits in at all touch points in the developer and customer journey.
New ticket
Describe your issueHello Joyce!
The cancellation policy for a booked class may vary depending on the studio you are booking with. Generally, we allow you to cancel a class reservation without any penalty up to a certain time before the class starts. However, if you cancel within 24 hours of the class start time, you may be subject to a late cancellation fee. This fee is typically deducted from your credits or charged to your payment method on file.
Did this not solve your issue?
Ticket deflection
Reduce ticket volume by 50% overnight by answering customer questions automatically.
Chatbots with automations
Build chatbots that trigger automations, such as reimbursements, cancelations, or customer information lookup.
Processed message: We are experiencing 404 errors on the cron endpoint since this morning. Upon reviewing the logs, it appears that this error is not properly detected.
Original message: Help! Cron is alwys retunning 404s now its happening all the time since this morning!!! Ntohing to see in the logs!
Triage
Categorize, summarize, translate, preprocess tickets so you can take action with the full picture.
Sep 30, 4:47 PM
Hi Tyler!
Yes, the cancellation policy for a booked class may vary depending on the studio you are booking with. Generally, we allow you to cancel a class reservation without any penalty up to 12 hours before the class starts. However, if you cancel later than that, you will be subject to a late cancellation fee. This fee is deducted from your credits.
Best,
Joshua
AI Draft Composer
Generate responses in a click, adhering to your company's brand and tone, based on expert knowledge.
Pull in expert knowledge from anywhere
Generate answers based on all knowledge available, internal and external. With auto-sync, it is always up to date.
GitHub Repo
GitLab
Notion
Salesforce Knowledge
Jira
Website
GitHub Discussions
Zendesk
Salesforce Case
HubSpot
GitBook
Front
GitHub Issues
Confluence
DevDocs.ai supports encryption at rest, and is actively pursuing SOC 2 Type II compliance.
1-click integrations to get started
Add integrations to your workflows and platforms in minutes, no engineering resources needed.
Build with no-code tools
Configure the instructions, behavior and design of your chatbots and agent apps, and experiment with them in a playground environment before deploying.
Deploy on all platforms
Deploy bots via Sunshine Conversations, on Slack or Discord, and use native agent apps on Zendesk and Salesforce.
Learn from insights and improve
Learn how your customers and agents interact with your AI apps to spot deficiencies in your knowledge and address them.
Go deep with APIs
Bring customer support to the next level by deeply integrating it into your product and across touch points. With our REST APIs, JavaScript libraries and headless React components, you can build customer support as an integral part of the user experience.
curl https://api.devdocs.ai/v1/train -X POST \-H "Authorization: Bearer <TOKEN>" \-F 'file=@./post.md'
curl https://api.devdocs.ai/v1/chat -X POST \-H "Authorization: Bearer <TOKEN>" \-d '{"messages": [{ "role": "user", "content": "How do I claim my credits?" }],"model": "gpt-4-32k"}'
curl -X GET "https://api.devdocs.ai/v1/insights/queries" \-H "Authorization: Bearer <TOKEN>" \-d '{ "from": "2023-09-01T22:00:00" }'
1import { DevDocsAI } from '@devdocsai/react';2import { submitChat } from '@devdocsai/core';34export default function CaseSubmissionForm(): ReactElement {5 return <DevDocsAI6 projectKey={process.env.NEXT_PUBLIC_PROJECT_KEY}7 chat={{8 systemPrompt:9 'You are a very enthusiastic company representative who loves to help people!',10 }}11 />12}