|
|
|
@ -135,9 +135,9 @@ def parse_done_token(response: str) -> bool:
|
|
|
|
|
|
|
|
|
|
class Flow:
|
|
|
|
|
"""
|
|
|
|
|
Flow is a chain like structure from langchain that provides the autonomy to language models
|
|
|
|
|
to generate sequential responses.
|
|
|
|
|
|
|
|
|
|
Flow is the structure that provides autonomy to any llm in a reliable and effective fashion.
|
|
|
|
|
The flow structure is designed to be used with any llm and provides the following features:
|
|
|
|
|
|
|
|
|
|
Features:
|
|
|
|
|
* Interactive, AI generates, then user input
|
|
|
|
|
* Message history and performance history fed -> into context -> truncate if too long
|
|
|
|
|