From 5011c964ca689904b1c4992ac34a71e37b172260 Mon Sep 17 00:00:00 2001 From: Jeremiah Lowin <153965+jlowin@users.noreply.github.com> Date: Sat, 13 Jan 2024 21:17:46 -0500 Subject: [PATCH] Update assistants.md --- docs/ai/interactive/assistants.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ai/interactive/assistants.md b/docs/ai/interactive/assistants.md index 7dfefe95a..7349f4c64 100644 --- a/docs/ai/interactive/assistants.md +++ b/docs/ai/interactive/assistants.md @@ -1,6 +1,6 @@ # Working with assistants -Many of Marvin's features are standalone functions intended to be invoked a single time. However, interactive conversation is one of the most powerful ways to work with LLMs, allowing collaboration, context discovery, and feedback. OpenAI's assistants API makes this possible while handling stateful complexities like system messages, history, and separate threads. Marvin's assistants API is a Pythonic way to take advantage of those features/ +Many of Marvin's features are standalone functions, without memory. However, interactive conversation is one of the most powerful ways to work with LLMs, allowing collaboration, context discovery, and feedback. OpenAI's assistants API makes this possible while handling stateful complexities like system messages, history, and separate threads. Marvin's assistants API is a Pythonic way to take advantage of those features/

What it does