Browse Source

Fix format in utils.py

pull/424/head^2
Henry 10 months ago
parent
commit
d81ee84b32
  1. 3
      installer/client/cli/utils.py

3
installer/client/cli/utils.py

@ -71,8 +71,7 @@ class Standalone:
top_p=self.args.top_p))
else:
response = await AsyncClient().chat(model=self.model, messages=messages,
options=Options(temperature=self.args.temp,
top_p=self.args.top_p))
options=Options(temperature=self.args.temp, top_p=self.args.top_p))
print(response['message']['content'])
copy = self.args.copy
if copy:

Loading…
Cancel
Save