SDKs
Client Libraries
Official SDKs to integrate Ragily into your application in minutes.
TypeScript / Node.js
$ npm install @ragily/sdk
import { Ragily } from "@ragily/sdk";
const ragily = new Ragily("rgl_your_key");
const results = await ragily.search("AI research");Python
$ pip install ragily
from ragily import Ragily
client = Ragily("rgl_your_key")
results = client.search("AI research")Go
Coming Soon$ go get github.com/ragily/ragily-go
import "github.com/ragily/ragily-go"
client := ragily.New("rgl_your_key")
results, _ := client.Search("AI research")