Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions flash/ai.py
Original file line number Diff line number Diff line change
Expand Up @@ -485,8 +485,9 @@ def _chat_with_status(
is_image: bool = False,
) -> tuple[Union[object, None], Union[str, None]]: # noqa: UP007, RUF100
with console.status(
f"[bold {ACCENT}]Thinking{ELLIPSIS}", spinner="dots",
spinner_style=ACCENT
f"[bold {ACCENT}]Thinking{ELLIPSIS}", spinner="point",
spinner_style=ACCENT,
speed=2.5
) as status:
return _try_chat(
client, messages, status, tools_arg, is_image=is_image
Expand Down Expand Up @@ -619,7 +620,7 @@ def _run_update(*, force: bool = False) -> bool:

with console.status(
f"[bold {ACCENT}]Checking for updates{ELLIPSIS}",
spinner="dots", spinner_style=ACCENT
spinner="bouncingBall", spinner_style=ACCENT
):
latest = fetch_latest_version()

Expand Down Expand Up @@ -652,7 +653,7 @@ def _run_update(*, force: bool = False) -> bool:

with console.status(
f"[bold {ACCENT}]Updating{ELLIPSIS}",
spinner="dots", spinner_style=ACCENT
spinner="arrow3", spinner_style=ACCENT
):
ok, message = perform_update()

Expand Down Expand Up @@ -853,7 +854,7 @@ def main() -> None:
console.print(Text(f"Flash CLI v{__version__}", style=DIM))
with console.status(
f"[bold {ACCENT}]Checking for updates{ELLIPSIS}",
spinner="dots", spinner_style=ACCENT
spinner="bouncingBall", spinner_style=ACCENT
):
latest = fetch_latest_version()
if latest is None:
Expand Down
2 changes: 1 addition & 1 deletion flash/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.3.0"
__version__ = "0.3.1"

REPO = "Natuworkguy/Flash"
REPO_URL = f"https://github.com/{REPO}"
Expand Down
Loading
Loading