mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-06-29 23:41:12 +08:00
feat: Add SDK and cURL examples for chunk management, chat assistant, and retrieval (#4310) (#14208)
Closes #4310 ### What problem does this PR solve? Issue #4310 requests practical examples for the RAGFlow SDK and HTTP API to help developers get started faster. The existing `example/sdk/` folder only contains `dataset_example.py`. This PR fills the remaining gaps by adding examples for three key API areas not yet covered in `main` or by other open PRs (#13904, #13284): - **Chunk management** — add, list, update, delete, and retrieve chunks within a dataset - **Chat assistant** — create a chat assistant, open a session, send messages (streaming and non-streaming), and clean up - **Retrieval** — perform semantic retrieval across one or multiple datasets ### Type of change - [x] Documentation Update - [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
93
example/sdk/chat_assistant_example.py
Normal file
93
example/sdk/chat_assistant_example.py
Normal file
@@ -0,0 +1,93 @@
|
||||
#
|
||||
# Copyright 2025 The InfiniFlow Authors. All Rights Reserved.
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
#
|
||||
|
||||
"""
|
||||
The example demonstrates how to create a chat assistant, manage sessions,
|
||||
and perform both standard and streaming chat.
|
||||
"""
|
||||
|
||||
from ragflow_sdk import RAGFlow
|
||||
import sys
|
||||
import os
|
||||
|
||||
HOST_ADDRESS = os.environ.get("RAGFLOW_HOST_ADDRESS", "http://127.0.0.1")
|
||||
API_KEY = os.environ.get("RAGFLOW_API_KEY", "ragflow-IzZmY1MGVhYTBhMjExZWZiYTdjMDI0Mm")
|
||||
|
||||
try:
|
||||
rag = RAGFlow(api_key=API_KEY, base_url=HOST_ADDRESS)
|
||||
|
||||
# 1. Create a dataset to be used by the assistant
|
||||
print("Creating dataset...")
|
||||
dataset = rag.create_dataset(name="assistant_example_dataset")
|
||||
|
||||
# 2. Create a chat assistant
|
||||
print("Creating chat assistant...")
|
||||
assistant = rag.create_chat(
|
||||
name="Test Assistant",
|
||||
dataset_ids=[dataset.id],
|
||||
llm_id="deepseek-chat", # Example LLM ID, replace with your actual model ID
|
||||
prompt_config={"system": "You are a helpful assistant."}
|
||||
)
|
||||
print(f"Assistant created: {assistant.name} (ID: {assistant.id})")
|
||||
|
||||
# 3. Create a session
|
||||
print("Creating a new session...")
|
||||
session = assistant.create_session(name="Example Session")
|
||||
print(f"Session created: {session.name} (ID: {session.id})")
|
||||
|
||||
# 4. Standard chat (non-streaming)
|
||||
print("\n--- Standard Chat ---")
|
||||
question = "What is RAGFlow?"
|
||||
print(f"User: {question}")
|
||||
|
||||
# ask returns a generator of Message objects
|
||||
# for stream=False, it yields once with the full answer
|
||||
for message in session.ask(question=question, stream=False):
|
||||
print(f"Assistant: {message.content}")
|
||||
if hasattr(message, 'reference') and message.reference:
|
||||
print(f"References used: {len(message.reference)} chunks")
|
||||
|
||||
# 5. Streaming chat
|
||||
print("\n--- Streaming Chat ---")
|
||||
question = "Tell me more about its features."
|
||||
print(f"User: {question}")
|
||||
print("Assistant: ", end="", flush=True)
|
||||
|
||||
for message in session.ask(question=question, stream=True):
|
||||
# In streaming mode, each message.content usually contains the incremental part
|
||||
# or the full content so far depending on the SDK implementation.
|
||||
# Based on RAGFlow SDK, it typically yields incremental parts.
|
||||
print(message.content, end="", flush=True)
|
||||
print("\n")
|
||||
|
||||
# 6. List sessions
|
||||
print("Listing sessions for this assistant...")
|
||||
sessions = assistant.list_sessions(page=1, page_size=10)
|
||||
for s in sessions:
|
||||
print(f"- {s.name} (ID: {s.id})")
|
||||
|
||||
# Cleanup
|
||||
print("\nCleaning up...")
|
||||
assistant.delete_sessions(ids=[session.id])
|
||||
rag.delete_chats(ids=[assistant.id])
|
||||
rag.delete_datasets(ids=[dataset.id])
|
||||
|
||||
print("Chat assistant example done.")
|
||||
sys.exit(0)
|
||||
|
||||
except Exception as e:
|
||||
print(f"An error occurred: {e}")
|
||||
sys.exit(-1)
|
||||
92
example/sdk/chunk_example.py
Normal file
92
example/sdk/chunk_example.py
Normal file
@@ -0,0 +1,92 @@
|
||||
#
|
||||
# Copyright 2025 The InfiniFlow Authors. All Rights Reserved.
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
#
|
||||
|
||||
"""
|
||||
The example demonstrates chunk management (Add, List, Update, Delete, Retrieve)
|
||||
within a RAGFlow dataset using the Python SDK.
|
||||
"""
|
||||
|
||||
from ragflow_sdk import RAGFlow
|
||||
import sys
|
||||
import time
|
||||
import os
|
||||
|
||||
HOST_ADDRESS = os.environ.get("RAGFLOW_HOST_ADDRESS", "http://127.0.0.1")
|
||||
API_KEY = os.environ.get("RAGFLOW_API_KEY", "ragflow-IzZmY1MGVhYTBhMjExZWZiYTdjMDI0Mm")
|
||||
|
||||
try:
|
||||
rag = RAGFlow(api_key=API_KEY, base_url=HOST_ADDRESS)
|
||||
|
||||
# 1. Create a dataset
|
||||
print("Creating dataset...")
|
||||
dataset = rag.create_dataset(name="chunk_example_dataset")
|
||||
|
||||
# 2. Upload a document
|
||||
print("Uploading document...")
|
||||
# Using a simple text content for example
|
||||
content = "RAGFlow is an open-source RAG (Retrieval-Augmented Generation) engine based on deep document understanding."
|
||||
docs = dataset.upload_documents([{"display_name": "sample.txt", "blob": content.encode('utf-8')}])
|
||||
doc = docs[0]
|
||||
|
||||
# 3. Parse the document (required before manual chunk operations if you want it to be processed)
|
||||
print("Parsing document...")
|
||||
dataset.async_parse_documents([doc.id])
|
||||
|
||||
# Wait for parsing to complete with timeout
|
||||
MAX_WAIT = 120 # seconds
|
||||
elapsed = 0
|
||||
while elapsed < MAX_WAIT:
|
||||
doc_status = dataset.list_documents(id=doc.id)[0]
|
||||
if doc_status.run == "1" and doc_status.progress >= 1.0:
|
||||
print("Parsing completed.")
|
||||
break
|
||||
print(f"Parsing progress: {doc_status.progress:.2f}")
|
||||
time.sleep(2)
|
||||
elapsed += 2
|
||||
else:
|
||||
print("Parsing timed out.")
|
||||
sys.exit(-1)
|
||||
|
||||
# 4. Add a manual chunk
|
||||
print("Adding a manual chunk...")
|
||||
chunk = doc.add_chunk(content="RAGFlow features a streamlined RAG workflow.")
|
||||
print(f"Added chunk ID: {chunk.id}")
|
||||
|
||||
# 5. List chunks
|
||||
print("Listing chunks...")
|
||||
chunks = doc.list_chunks(page=1, page_size=10)
|
||||
print(f"Total chunks found: {len(chunks)}")
|
||||
for i, c in enumerate(chunks):
|
||||
print(f"Chunk {i}: {c.content[:50]}...")
|
||||
|
||||
# 6. Update a chunk
|
||||
print("Updating chunk...")
|
||||
chunk.update({"content": "RAGFlow features a streamlined and powerful RAG workflow."})
|
||||
|
||||
# 7. Delete the chunk
|
||||
print("Deleting chunk...")
|
||||
doc.delete_chunks([chunk.id])
|
||||
|
||||
# Cleanup
|
||||
print("Cleaning up dataset...")
|
||||
rag.delete_datasets(ids=[dataset.id])
|
||||
|
||||
print("Chunk example done.")
|
||||
sys.exit(0)
|
||||
|
||||
except Exception as e:
|
||||
print(f"An error occurred: {e}")
|
||||
sys.exit(-1)
|
||||
100
example/sdk/retrieval_example.py
Normal file
100
example/sdk/retrieval_example.py
Normal file
@@ -0,0 +1,100 @@
|
||||
#
|
||||
# Copyright 2025 The InfiniFlow Authors. All Rights Reserved.
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
#
|
||||
|
||||
"""
|
||||
The example demonstrates the RAG retrieval flow using the Python SDK.
|
||||
It shows how to perform semantic search across one or more datasets.
|
||||
"""
|
||||
|
||||
from ragflow_sdk import RAGFlow
|
||||
import sys
|
||||
import time
|
||||
import os
|
||||
|
||||
HOST_ADDRESS = os.environ.get("RAGFLOW_HOST_ADDRESS", "http://127.0.0.1")
|
||||
API_KEY = os.environ.get("RAGFLOW_API_KEY", "ragflow-IzZmY1MGVhYTBhMjExZWZiYTdjMDI0Mm")
|
||||
|
||||
try:
|
||||
rag = RAGFlow(api_key=API_KEY, base_url=HOST_ADDRESS)
|
||||
|
||||
# 1. Create a dataset
|
||||
print("Creating dataset...")
|
||||
dataset = rag.create_dataset(name="retrieval_example_dataset")
|
||||
|
||||
# 2. Upload and parse a document to have content for retrieval
|
||||
print("Uploading and parsing document...")
|
||||
content = "RAGFlow is an open-source RAG engine based on deep document understanding. It features a streamlined RAG workflow for businesses of any size."
|
||||
docs = dataset.upload_documents([{"display_name": "ragflow_info.txt", "blob": content.encode('utf-8')}])
|
||||
doc = docs[0]
|
||||
|
||||
# Wait for parsing to complete with timeout
|
||||
print("Parsing document...")
|
||||
dataset.async_parse_documents([doc.id])
|
||||
MAX_WAIT = 120 # seconds
|
||||
elapsed = 0
|
||||
while elapsed < MAX_WAIT:
|
||||
doc_status = dataset.list_documents(id=doc.id)[0]
|
||||
if doc_status.run == "1" and doc_status.progress >= 1.0:
|
||||
break
|
||||
print(f"Parsing progress: {doc_status.progress:.2f}")
|
||||
time.sleep(2)
|
||||
elapsed += 2
|
||||
else:
|
||||
print("Parsing timed out.")
|
||||
sys.exit(-1)
|
||||
print("Document parsed and ready for retrieval.")
|
||||
|
||||
# 3. Perform retrieval (Semantic Search)
|
||||
print("\n--- Performing Retrieval ---")
|
||||
question = "What is RAGFlow?"
|
||||
print(f"Question: {question}")
|
||||
|
||||
# Retrieve relevant chunks from one or more datasets
|
||||
chunks = rag.retrieve(
|
||||
dataset_ids=[dataset.id],
|
||||
question=question,
|
||||
top_k=5,
|
||||
similarity_threshold=0.1
|
||||
)
|
||||
|
||||
print(f"Found {len(chunks)} relevant chunks:")
|
||||
for i, chunk in enumerate(chunks):
|
||||
print(f"\nChunk {i+1}:")
|
||||
print(f"Content: {chunk.content[:200]}...")
|
||||
print(f"Similarity Score: {chunk.similarity:.4f}")
|
||||
print(f"Source Document: {chunk.document_name}")
|
||||
|
||||
# 4. Perform retrieval with additional parameters
|
||||
print("\n--- Performing Retrieval with Keyword Search ---")
|
||||
chunks = rag.retrieve(
|
||||
dataset_ids=[dataset.id],
|
||||
question="workflow for businesses",
|
||||
top_k=3,
|
||||
keyword=True # Enable keyword search in addition to semantic search
|
||||
)
|
||||
for i, chunk in enumerate(chunks):
|
||||
print(f"Chunk {i+1}: {chunk.content[:100]}... (Score: {chunk.similarity:.4f})")
|
||||
|
||||
# Cleanup
|
||||
print("\nCleaning up...")
|
||||
rag.delete_datasets(ids=[dataset.id])
|
||||
|
||||
print("Retrieval example done.")
|
||||
sys.exit(0)
|
||||
|
||||
except Exception as e:
|
||||
print(f"An error occurred: {e}")
|
||||
sys.exit(-1)
|
||||
Reference in New Issue
Block a user