You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
messages= [{"role": "system", "content": "You are a helpful assistant. You must continue the user text directly without *any* additional interjections."}, {"role": "user", "content": prompt}]
122
-
123
-
body= {
124
-
"model": self.model,
125
-
"messages": messages,
126
-
"temperature": temperature,
127
-
"max_tokens": 150
128
-
}
121
+
max_tokens=kwargs.get("max_tokens", 150)
122
+
123
+
ifuse_chat_api:
124
+
messages= [
125
+
{"role": "system", "content": "You are a helpful assistant. You must continue the user text directly without *any* additional interjections."},
0 commit comments