Hercai 1.0.0
dotnet tool install --global Hercai --version 1.0.0
This package contains a .NET tool you can call from the shell/command line.
dotnet new tool-manifest # if you are setting up this repo dotnet tool install --local Hercai --version 1.0.0
This package contains a .NET tool you can call from the shell/command line.
#tool dotnet:?package=Hercai&version=1.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
nuke :add-package Hercai --version 1.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Herc.ai
A powerful .NET Nuget Package for interacting with the Herc.ai API.
We Offer It To You For Free. Herc.ai Answers Your Question According To The Language, And It Supports All Languages.
✨ How about a one-time subscription to benefit from Hercai's features unlimitedly? ✨ Use Hercai Unlimited with API Key!
❔ Support
📝 Github
📂 Installation
Install-Package Hercai
dotnet add package Hercai
Quick Example
Exampe Construction;
string apiKey = ""; /* If you have a Hercai API Key, please define it in this section. */
Hercai hercaiInstance = new Hercai(apiKey);
Question API; https://hercai.onrender.com/v3/hercai?question=
Example Question For .NET Core;
/* Available Models */
/* "v3" , "v3-32k" , "turbo" , "turbo-16k" , "gemini" */
/* Default Model; "v3" */
string questionModel = "v3";
string questionContent = "What is the meaning of life?";
string questionResponse = await Hercai.Question("v3", "hi, how are you?");
Console.WriteLine("Question Response: " + questionResponse);
Text To Image API; https://hercai.onrender.com/v3/text2image?prompt=
Example Draw Image For .NET Core;
/* Available Models */
/* "v1" , "v2" , "v2-beta" , "v3" (DALL-E) , "lexica" , "prodia", "simurg", "animefy", "raava", "shonin" */
/* Default Model; "v3" */
string imageModel = "simurg";
string prompt = "A beautiful landscape";
string negativePrompt = "Dark and gloomy"; /* Optional Prompt, If None, Leave Blank. */
string imageResponse = await Hercai.DrawImage(imageModel, prompt, negativePrompt);
Console.WriteLine("Image Response: " + imageResponse);
Credits
NPM Package For JavaScript & TypeScript
Made by FiveSoBes And Luppux Development
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
This package has no dependencies.
Version | Downloads | Last updated |
---|---|---|
1.0.0 | 245 | 1/7/2024 |