Eden AI
Eden AI user interface (UI) is designed for handling the AI projects. With
Eden AI Portal
, you can perform no-code AI using the best engines for the market.
Installation and Setupβ
Accessing the Eden AI API requires an API key, which you can get by creating an account and heading here.
LLMsβ
See a usage example.
from langchain_community.llms import EdenAI
API Reference:
Chat modelsβ
See a usage example.
from langchain_community.chat_models.edenai import ChatEdenAI
API Reference:
Embedding modelsβ
See a usage example.
from langchain_community.embeddings.edenai import EdenAiEmbeddings
API Reference:
Toolsβ
Eden AI provides a list of tools that grants your Agent the ability to do multiple tasks, such as:
- speech to text
- text to speech
- text explicit content detection
- image explicit content detection
- object detection
- OCR invoice parsing
- OCR ID parsing
See a usage example.
from langchain_community.tools.edenai import (
EdenAiExplicitImageTool,
EdenAiObjectDetectionTool,
EdenAiParsingIDTool,
EdenAiParsingInvoiceTool,
EdenAiSpeechToTextTool,
EdenAiTextModerationTool,
EdenAiTextToSpeechTool,
)