herc.ai
Hercai
مكتبة قوية للتفاعل مع Herc.ai API.
نحن نقدم لك مجانا. Herc.ai يجيب على سؤالك حسب اللغة ويدعم جميع اللغات.
ماذا عن الاشتراك لمرة واحدة للاستفادة من ميزات Hercai بشكل غير محدود؟ استخدم Hercai Unlimited مع مفتاح API!
؟ التثبيت لـ CLI
npm i hercai -g
تثبيت
npm i hercai
yarn add hercai
pnpm add hercai
bun add hercai
واجهة برمجة التطبيقات الخاصة بالسؤال؛ https://hercai.onrender.com/v3/hercai?question=
سؤال نموذجي لـ CommonJS؛
/* Importing The Package */
const { Hercai } = require ( 'hercai' ) ;
const herc = new Hercai ( ) ; //new Hercai("your api key"); => Optional
/* Available Models */
/* "v3" , "v3-32k" , "turbo" , "turbo-16k" , "gemini" , "llama3-70b" , "llama3-8b" , "mixtral-8x7b" , "gemma-7b" , "gemma2-9b" */
/* Default Model; "v3" */
/* Premium Parameter; personality => Optional */
herc . question ( { model : "v3" , content : "hi, how are you?" } ) . then ( response => {
console . log ( response . reply ) ;
/* The module will reply based on the message! */
} ) ;
واجهة برمجة تطبيقات تحويل النص إلى صورة؛ https://hercai.onrender.com/v3/text2image?prompt=
مثال لرسم صورة لـ CommonJS؛
/* Importing The Package */
const { Hercai } = require ( 'hercai' ) ;
const herc = new Hercai ( ) ; //new Hercai("your api key"); => Optional
/* Available Models */
/* "v1" , "v2" , "v2-beta" , "v3" (DALL-E) , "lexica" , "prodia", "simurg", "animefy", "raava", "shonin" */
/* Default Model; "v3" */
herc . drawImage ( { model : "v3" , prompt : "anime girl" , negative_prompt : "" } ) . then ( response => {
console . log ( response . url ) ;
/* The module will reply based on the prompt! */
} ) ;
مثال للواجهة والاستخدام لـ TypeScript؛
import { Hercai , QuestionData , DrawImageData } from "hercai" ;
const herc = new Hercai ( ) ; //new Hercai("your api key"); => Optional
/* Question Example For TypeScript */
herc . question ( { model : "v3" , content : "hi, how are you?" } )
. then ( ( response : QuestionData ) => {
console . log ( response . reply ) ;
} ) ;
/* DrawImage Example For TypeScript */
herc . drawImage ( { model : "v3" , prompt : "anime girl" , negative_prompt : "" } )
. then ( ( response : DrawImageData ) => {
console . log ( response . url ) ;
} ) ;
مثال لاستخدام أمر CLI؛
hercai < Your Question >
يدعم Herc.ai أيضًا TypeScript وEsModule؟!
مثال على استخدام نموذج بيتا؛
import { Hercai } from "hercai" ;
const herc = new Hercai ( ) ; //new Hercai("your api key"); => Optional
herc . betaQuestion ( { content : "hi, how are you?" , user : 'chat-id' } )
. then ( ( response ) => {
console . log ( response . reply ) ;
} ) ;
/* DrawImage Example */
herc . betaDrawImage ( {
prompt : "anime girl" ,
negative_prompt : "" ,
sampler : "DPM-Solver" , /* Default => DPM-Solver */
image_style : "Null" , /* Default => Null */
width : 1024 , /* Default => 1024 */
height : 1024 , /* Default => 1024 */
steps : 20 , /* Default => 20 */
scale : 5 /* Default => 5 */
} ) . then ( ( response ) => {
console . log ( response . url ) ;
} ) ;
صُنع بواسطة FiveSoBes وLuppux Development