CineAI commited on
Commit
594263a
1 Parent(s): d4f3eaa

Update llm/utils/chat.py

Browse files
Files changed (1) hide show
  1. 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, is_own_model: bool) -> 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