Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: removed extra spaces to make the code look clean #28

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 2 additions & 4 deletions maestro-groq.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,7 @@
from rich.panel import Panel
from datetime import datetime
import json

# Set up the Groq API client
from groq import Groq
from groq import Groq # Set up the Groq API client
import os

client = Groq(api_key="YOUR API KEY")
Expand Down Expand Up @@ -232,4 +230,4 @@ def read_file(file_path):

with open(filename, 'w') as file:
file.write(exchange_log)
print(f"\nFull exchange log saved to {filename}")
print(f"\nFull exchange log saved to {filename}")