Skip to content

huto1/edenai-csharp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 

Repository files navigation

Eden AI C#

Screenshot

This is the official Eden AI C# Github for interacting with our powerful APIs. Eden AI is a SaaS providing APIs connected to big (AWS, GCP, etc.) and small AI providers for vision, text, audio, OCR, prediction and translation AI engines. Our solution allows users to compare the performance of these providers APIs according to their data and use them directly via our API thus offering great flexibility and making it very easy to change supplier. In particular, we offer better performance with the "Genius" feature that cleverly combines results from multiple providers.

Eden AI simplifies the use and integration of AI technologies by providing a unique API connected to the best AI engines and combined with a powerful management platform. The platform covers a wide range of AI technologies:

For all the proposed technologies, we provide a single endpoint: the service provider is only a parameter that can be changed very easily. All the engines available on Eden AI are listed here: www.edenai.co/catalog

Getting started

To start using Eden AI APIs, you first need to get your API Token. You can get your token on your IAM here. Enter your access token:

request.AddHeader("Authorization", "Bearer your_api_key");

Usage

Initialization

Select your API endpoint:

var client = new RestClient("https://api.edenai.run/v1/pretrained/+endpoint");
var request = new RestRequest(Method.POST);

Select parameters

Set parameters corresponding to the API, and providers APIs you want to run : Example:

request.AddParameter("providers", "[\'google\', \'microsoft\', \'aws\', \'ibm\']");
request.AddFile("files", "/Downloads/example.png");

Get results

IRestResponse response = client.Execute(request);
Console.WriteLine(response.Content);

Support & Community

If you have any problems, please contact us at this email address: [email protected]. We will be happy to help you in the use of Eden AI.

Community: You can interact personally with other people actively using and working with Eden AI and join our Slack community. We are always updating our docs, so a good way to always stay up to date is to watch our documentation repo on Github: github.com/edenai

Blog: We also regularly publish various articles with Eden AI news and technical articles on the different AI engines that exist. You can find these articles here: edenai.co/blog

Documentation

To have more information about platform and API use, you can check ou our documentation

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages