Dunce Mini
Fast basics
Quick answers, short explanations, and lightweight school-project demos.
- Short context memory
- Best for simple questions
- Low-cost API option
Products and Business
Compare chatbot versions, business plans, and API access for teams that want a useful assistant with clear limits and simple pricing.
Versions
Dunce Mini
Quick answers, short explanations, and lightweight school-project demos.
Dunce Standard
Better reasoning, clearer answers, and enough context for everyday chatbot use.
Dunce Business
Shared business assistants, admin controls, usage limits, and brand-safe responses.
Pricing
Starter
For trying the public demo and showing the basic concept.
Student
For students who want more messages, better answers, and saved chats.
Business
For small teams that need a shared AI assistant and basic admin controls.
Business AI
Business Features
Business AI plans are designed for small teams that want a branded assistant for common questions, internal notes, and customer-facing drafts.
Knowledge
Upload approved notes, FAQs, and policy content so the assistant answers from your own material.
Controls
Set usage limits, team roles, and answer boundaries to keep the model honest about what it knows.
Reporting
View message usage, common topics, and where the assistant needed human help.
API
Developer Access
The API plan is for developers who want to send prompts to Dunce AI from their own site or app. Pricing can be based on credits, requests, or tokens.
fetch("https://api.dunce.ai/v1/chat", {
method: "POST",
headers: {
"Authorization": "Bearer YOUR_API_KEY",
"Content-Type": "application/json"
},
body: JSON.stringify({
model: "dunce-standard",
message: "Explain this in simple words."
})
});