Skip to content

Commit

Permalink
fix: rename octopus to octogen
Browse files Browse the repository at this point in the history
  • Loading branch information
imotai committed Sep 27, 2023
1 parent 569809d commit 3fc987a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions up/src/og_up/up.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
from rich.live import Live
from rich.spinner import Spinner
from rich.console import Group
from octopus_sdk.utils import process_char_stream
from og_sdk.utils import process_char_stream

OCTOGEN_TITLE = "🐙[bold red]Octogen Up"
USE_SHELL = sys.platform.startswith("win")
Expand Down Expand Up @@ -102,7 +102,7 @@ def run_with_realtime_print(
def refresh(
live,
segments,
title=OCTOPUS_TITLE,
title=OCTOGEN_TITLE,
):
table = Table.grid(padding=(0, 1, 0, 0), pad_edge=True)
table.add_column("Index", no_wrap=True, justify="center")
Expand Down Expand Up @@ -176,7 +176,7 @@ def load_docker_image(version, image_name, repo_name, live, segments, chunk_size
"""
full_name = f"{image_name}:{version}"
spinner = Spinner("dots", style="status.spinner", speed=1.0, text="")
step = "Pull Octopus Image"
step = "Pull Octogen Image"
segments.append((spinner, step, ""))
refresh(live, segments)
return_code = 0
Expand Down Expand Up @@ -224,7 +224,7 @@ def generate_agent_common(fd, rpc_key):
fd.write(f"admin_key={rpc_key}\n")
fd.write("max_file_size=202400000\n")
fd.write("max_iterations=8\n")
fd.write("db_path=/app/agent/octopus.db\n")
fd.write("db_path=/app/agent/octogen.db\n")


def generate_agent_azure_openai(
Expand Down

0 comments on commit 3fc987a

Please sign in to comment.