Update llm/utils/chat.py
Browse files- llm/utils/chat.py +1 -1
llm/utils/chat.py
CHANGED
@@ -118,7 +118,7 @@ class Conversation:
|
|
118 |
raise Exception(f"Prompt must be string not None or empty string: {prompt}")
|
119 |
|
120 |
if is_own_model:
|
121 |
-
result = _libertarian_conversation(prompt)
|
122 |
|
123 |
return result
|
124 |
|
|
|
118 |
raise Exception(f"Prompt must be string not None or empty string: {prompt}")
|
119 |
|
120 |
if is_own_model:
|
121 |
+
result = self._libertarian_conversation(prompt)
|
122 |
|
123 |
return result
|
124 |
|