RagieAI is a fully managed RAG-as-a-Service platform that helps developers build production-ready AI applications with retrieval augmented generation.

Changelog

2 versions
v1.1.0 Latest
  • add MakeApiCall component with key-value array inputs for headers and parameters per standard #1459
  • Added output examples to component schemas.
v1.0.2
  • Initial release with document management components.

Authentication

TypeDetails
API Key
API Key (text)
Log into your RagieAI account and find your API key at https://ragie.ai/dashboard

Actions

11
Create Document From Url icon

Create Document From Url

Creates a new document in RagieAI from a URL.
Create Document Raw icon

Create Document Raw

Ingest a document as raw text. The document goes through processing steps (pending → partitioning → partitioned → refined → chunked → indexed → summary_indexed → keyword_indexed → ready → failed). The document is available for retrieval once it reaches the ready state. The summary index step can take a few seconds. You can optionally use the document for retrieval once it is in indexed state, but the summary will only be available once the state has changed to summary_indexed or ready.
Delete Document icon

Delete Document

Deletes a document from RagieAI by ID.
Find Documents icon

Find Documents

Lists and searches documents in RagieAI. Returns a maximum of 100 documents per page.
Get Document icon

Get Document

Retrieves a document from RagieAI by ID.
Get Document Content icon

Get Document Content

Get the content of a document. The mediaType parameter can be used to request the content in a different format. When requesting as application/json, additional metadata about the document will be included. If the original document contained content such as images or other non-textual media, this response will include a text description of that media instead of the original file data. Using mime types such as audio/mpeg or video/mp4 will stream the file in a format that can be provided to an audio/video player.
Patch Document Metadata icon

Patch Document Metadata

Update metadata on a document. Performs a partial update of the document's metadata. Keys must be strings. Values may be strings, numbers, booleans, or lists of strings. Keys set to null are deleted. Maximum 1000 total values allowed, inclusive of existing metadata.
Update Document From Url icon

Update Document From Url

Updates a document from a publicly accessible URL. The document goes through processing steps (pending, partitioning, partitioned, refined, chunked, indexed, summary_indexed, keyword_indexed, ready, failed) before it is ready for retrieval. PDF files over 2000 pages are not supported in hi_res mode.
Update Document Raw icon

Update Document Raw

Update a document with raw data in text or JSON format.
Make Api Call icon

Make Api Call

Performs an arbitrary authorized API call to the Ragie AI API.
Get Document Summary icon

Get Document Summary

Get a LLM generated summary of the document. The summary is created when the document is first created or updated. Documents of types ['xls', 'xlsx', 'csv', 'json'] are not supported for summarization. Documents greater than 1M in token length are not supported. This feature is in beta and may change in the future.