Skip to content

Commit

Permalink
updated with code reference
Browse files Browse the repository at this point in the history
  • Loading branch information
sugarforever committed Aug 14, 2023
1 parent aed8bc0 commit c78a087
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions 03_Data_Connections/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,13 @@ LLM应用往往需要用户特定的数据,而这些数据并不属于模型
```python
from langchain.document_loaders import TextLoader

loader = TextLoader("./01_Hello_Langchain/README.md")
loader = TextLoader("./README.md")
docs = loader.load()
```

在上述代码中,我们使用 `TextLoader` 加载了本地文件系统中的 `./01_Hello_Langchain/README.md` 文件。`TextLoader``load` 方法返回一个 `Document` 对象数组(`Document``Langchain` 提供的文档类,包含原始内容和元数据)。我们可以通过 `Document` 对象的 `content` 属性来访问文档的原始内容。
在上述代码中,我们使用 `TextLoader` 加载了本地文件系统中的 `./README.md` 文件。`TextLoader``load` 方法返回一个 `Document` 对象数组(`Document``Langchain` 提供的文档类,包含原始内容和元数据)。我们可以通过 `Document` 对象的 `content` 属性来访问文档的原始内容。

完整代码请参考[本节课程的示例代码](./03_Data_Connections.ipynb)

### 拆分文档

Expand Down

0 comments on commit c78a087

Please sign in to comment.