mirror of
https://github.com/vxcontrol/langchaingo.git
synced 2026-07-21 00:45:22 -04:00
7 lines
159 B
Go
7 lines
159 B
Go
package textsplitter
|
|
|
|
// TextSplitter is the standard interface for splitting texts.
|
|
type TextSplitter interface {
|
|
SplitText(text string) ([]string, error)
|
|
}
|