Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md - Imports #824

Merged
merged 1 commit into from
Feb 18, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ Use the below Python snippet (in a script) to initialize LightRAG and perform qu

```python
import os
from lightrag import LightRAG, QueryParam
from lightrag.lightrag import LightRAG, QueryParam
from lightrag.llm.openai import gpt_4o_mini_complete, gpt_4o_complete, openai_embed

#########
Expand Down Expand Up @@ -134,7 +134,7 @@ print(rag.query("What are the top themes in this story?", param=QueryParam(
LightRAG now supports multi-turn dialogue through the conversation history feature. Here's how to use it:

```python
from lightrag import LightRAG, QueryParam
from lightrag.lightrag import LightRAG, QueryParam

# Initialize LightRAG
rag = LightRAG(working_dir=WORKING_DIR)
Expand Down Expand Up @@ -164,7 +164,7 @@ response = rag.query(
LightRAG now supports custom prompts for fine-tuned control over the system's behavior. Here's how to use it:

```python
from lightrag import LightRAG, QueryParam
from lightrag.lightrag import LightRAG, QueryParam

# Initialize LightRAG
rag = LightRAG(working_dir=WORKING_DIR)
Expand Down