Zack Saadioui
4/25/2025
1
curl -fsSL https://ollama.com/install.sh | sh1
ollama run llama31
API_URL1
MODEL1
Mistral 7B1
Gemma1
Phi 41
credentials.json1 2 3 4 5 6 7 8 9# Load token if exists, else go through auth flow if os.path.exists('token.json'): creds = Credentials.from_authorized_user_file('token.json') if not creds or not creds.valid: flow = InstalledAppFlow.from_client_secrets_file('credentials.json', ['https://www.googleapis.com/auth/gmail.readonly']) creds = flow.run_local_server() with open('token.json', 'w') as token: token.write(creds.to_json()) return build('gmail', 'v1', credentials=creds)
1
automate_commands.sh1
2
bash
gchmod +x automate_commands.shCopyright © Arsturn 2025