From 7883e3c08a68ca13b4a472b635ff600fcbaaef32 Mon Sep 17 00:00:00 2001 From: Yiannis Charalambous Date: Fri, 19 Jan 2024 11:24:25 +0000 Subject: [PATCH] ChatResponse: Added module comment. --- esbmc_ai_lib/chat_response.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/esbmc_ai_lib/chat_response.py b/esbmc_ai_lib/chat_response.py index 55690c9..216216d 100644 --- a/esbmc_ai_lib/chat_response.py +++ b/esbmc_ai_lib/chat_response.py @@ -11,6 +11,9 @@ ) +"""Contains classes and functions that relate to sending/receiving messages from LLMs.""" + + class FinishReason(Enum): # API response still in progress or incomplete null = 0