Skip to content
Snippets Groups Projects
Commit 6b90e4c1 authored by Yi Ding's avatar Yi Ding
Browse files

updated docs

parent 108634b9
No related branches found
No related tags found
No related merge requests found
...@@ -62,7 +62,7 @@ export function getNodesFromDocument( ...@@ -62,7 +62,7 @@ export function getNodesFromDocument(
} }
/** /**
* Interface for classes that can generate nodes from documents. * A node parser generates TextNodes from Documents
*/ */
export interface NodeParser { export interface NodeParser {
/** /**
...@@ -74,7 +74,7 @@ export interface NodeParser { ...@@ -74,7 +74,7 @@ export interface NodeParser {
} }
/** /**
* A simple implementation of the NodeParser interface. * SimpleNodeParser is the default NodeParser. It splits documents into TextNodes using a splitter, by default SentenceSplitter
*/ */
export class SimpleNodeParser implements NodeParser { export class SimpleNodeParser implements NodeParser {
/** /**
......
...@@ -6,7 +6,7 @@ import { Stream } from "openai/streaming"; ...@@ -6,7 +6,7 @@ import { Stream } from "openai/streaming";
import { MessageType } from "../../llm/LLM"; import { MessageType } from "../../llm/LLM";
/** /**
* Handles the OpenAI stream. * Handles the OpenAI streaming interface and pipes it to the callback function
* @param response - The response from the OpenAI API. * @param response - The response from the OpenAI API.
* @param onLLMStream - A callback function to handle the LLM stream. * @param onLLMStream - A callback function to handle the LLM stream.
* @param parentEvent - An optional parent event. * @param parentEvent - An optional parent event.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment