This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
title: Anthropic Manifold Pipe v2 | |
description: An enhanced implementation of the Anthropic API integration for Open WebUI, | |
featuring improved streaming performance, robust error handling, and optimized | |
response processing for both streaming and non-streaming requests. | |
version: 0.1.6 | |
license: MIT | |
fork of: https://openwebui.com/f/justinrahb/anthropic/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Function to disable GUI and power management | |
disable_gui_power() { | |
echo "Disabling GUI and power management..." | |
# Disable sleep and hibernate | |
systemctl mask sleep.target suspend.target hibernate.target hybrid-sleep.target | |
# Disable GNOME power management |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters