Skip to content

Commit

Permalink
change base_model
Browse files Browse the repository at this point in the history
  • Loading branch information
failandimprove1 committed Apr 18, 2024
1 parent e2f1cc3 commit e172c1a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion apps/api/src/crew.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def __init__(
session: Session,
crew_model: CrewProcessed,
on_message: Any | None = None,
base_model: str = "gpt-4-turbo-preview",
base_model: str = "gpt-4-turbo",
seed: int = 41,
):
self.seed = seed
Expand Down
1 change: 1 addition & 0 deletions apps/api/src/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
key: str | None = os.environ.get("SUPABASE_ANON_KEY")
if url is None or key is None:
raise ValueError("SUPABASE_URL and SUPABASE_ANON_KEY must be set")

supabase: Client = create_client(url, key)


Expand Down

0 comments on commit e172c1a

Please sign in to comment.