Build brilliant workflow
experiences rapidly
Platform_Zinc is the complete dev toolkit for automated, no-code applications.
Deliver an exceptional workflow experience and expand your audience reach.
src/nodes/chatbot.ts
import { config, Chatbot } from "@pz-open/lib/react";
const { useSuggestedQuestions, useChatbot } =
config("sb_prod_0000", {
suggestedQuestions: {
enabled: true,
limit: 5,
},
chatbot: true
}
);
const CustomerChatbot = () => {
const questions = useSuggestedQuestions();
const chatbot = useChatbot();
return (
<div>
<p>How can I help you today?</p>
<Chatbot
chatbot={chatbot}
suggestedQuestions={questions}
Message={<Message />}
/>
</div>
);
}
Suggested Questionsformat_list_bulleted_add
databaseBikes for Sale
subjectPrompt
Chatbotblur_on
databaseBikes for Sale
polylinePrevious Purchases
subjectSales Assistant Prompt
functionsUser Input
Interactive workflow applications made easy
Platform_Zinc handles the hard parts of building no-code applications, so you can focus on your product.
Server-driven, full-stack framework
Define once on the server, reflect instantly on the client. Maintain consistency, type-safety, and reliability.
prompt: z.string()
maxTokens: z.number().optional()
temperature: z.number().optional()
maxTokens: z.number().optional()
temperature: z.number().optional()
lance@zinc ~ % pzcli upload
│ Reading config...
│ Creating functions...
◇ Uploaded successfully
Promptblur_on
text_fieldsPrompt
123Max Tokens
thermostatTemperature
return generate({ prompt, maxTokenes, temperature })
Fully-managed infrastructure
Deploy globally on either serverless or dedicated compute
Version Control
Every version is deployed and up always. Upgrade users gradually or automatically
Flexible UI SDK
Build the unique experience your users want, in-sync with your codebase.
const Card = () => {
return (
<div className="p-4 bg-white rounded-lg shadow-md">
<h2 className="text-xl font-semibold">Card title</h2>
<p className="text-sm text-gray-500">Card description</p>
</div>
);
}
Out of the box features
Real-time collaboration, authentication, user management, and more.
lance@slashbase.co