How to Access R2R Documentation When Main Site Is Down? #2272
Replies: 2 comments
-
|
A few options when docs are down: 1. GitHub docs folder 2. Wayback Machine 3. Read the code
Quick setup guide: # Install
pip install r2r
# Start server
r2r serve --docker
# Or without Docker
r2r serve --host 0.0.0.0 --port 7272Basic usage: from r2r import R2RClient
client = R2RClient("http://localhost:7272")
# Ingest
client.ingest_files(["document.pdf"])
# Search
results = client.search("your query")
# RAG
response = client.rag("your question")Integration tips:
We use R2R in production at Revolution AI — feel free to ask specific setup questions here! |
Beta Was this translation helpful? Give feedback.
-
|
When docs go down, the repo itself usually becomes the best fallback, especially examples and docker configs, because they reflect what actually works right now rather than what the docs site said last month. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi everyone,
I’m trying to access the R2R documentation, but the main site seems to be down. Are there any alternative links, mirrors, or resources where I can find the documentation or get help?
Also, can anyone share their experience with setting up R2R or integrating it with other frameworks?
Thanks in advance!
Beta Was this translation helpful? Give feedback.
All reactions