Update llm/utils/chat.py
Browse files- llm/utils/chat.py +1 -1
llm/utils/chat.py
CHANGED
@@ -91,7 +91,7 @@ class Conversation:
|
|
91 |
except Exception as e:
|
92 |
print(f"Error during conversation chain in get_conversation function: {e}")
|
93 |
|
94 |
-
def chatting(self, prompt: str
|
95 |
"""
|
96 |
Carries out the conversation with the user, handling errors and delays.
|
97 |
|
|
|
91 |
except Exception as e:
|
92 |
print(f"Error during conversation chain in get_conversation function: {e}")
|
93 |
|
94 |
+
def chatting(self, prompt: str) -> str:
|
95 |
"""
|
96 |
Carries out the conversation with the user, handling errors and delays.
|
97 |
|