fix: typos and apply black formatting

This commit is contained in:
risin42 2024-10-15 20:50:07 +09:00
parent dffd5a5444
commit 2efa0e54a1
2 changed files with 2 additions and 2 deletions

View File

@ -320,7 +320,7 @@ So you are close to reaching the limit. You have to choose your own value, there
"--interval",
type=float,
default=0.01,
help="Request interval in seconds (e.g., 0.1 for 100ms). Currently only supported for Gemini models. Deafult: 0.01",
help="Request interval in seconds (e.g., 0.1 for 100ms). Currently only supported for Gemini models. Default: 0.01",
)
options = parser.parse_args()

View File

@ -89,7 +89,7 @@ class Gemini(Base):
system_instruction=self.prompt_sys_msg,
)
self.convo = model.start_chat()
# print(model) # Uncomment to debug and inspect the model details.
# print(model) # Uncomment to debug and inspect the model details.
def rotate_model(self):
self.model = next(self.model_list)