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
On the example :
client = Client()
response = client.chat.completions.create(
model="llama-3.1-405b",
messages=[{"role": "user", "content": QUERY}],
)
return(response.choices[0].message.content)
It sounds as a regression :
1/ if QUERY is a text message, there is no answser. there is an infinity wait , without answer.
2/ if QUERY is empty , you have a shell , you do a question, you do Ctrl+D , you have the answer.
Could you re allow the mode 1/ without the interactive shell ? or update / explain in your wiki.
The text was updated successfully, but these errors were encountered:
On the example :
client = Client()
response = client.chat.completions.create(
model="llama-3.1-405b",
messages=[{"role": "user", "content": QUERY}],
)
return(response.choices[0].message.content)
It sounds as a regression :
1/ if QUERY is a text message, there is no answser. there is an infinity wait , without answer.
2/ if QUERY is empty , you have a shell , you do a question, you do Ctrl+D , you have the answer.
Could you re allow the mode 1/ without the interactive shell ? or update / explain in your wiki.
The text was updated successfully, but these errors were encountered: