Created
April 29, 2024 14:05
-
-
Save brudnak/3f30865be17661cd417b8ef1a35a895a to your computer and use it in GitHub Desktop.
THE DONNIS!
This file contains hidden or 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
import weaviate | |
client = weaviate.Client( | |
url=(""), # Replace with your WCS URL | |
auth_client_secret=weaviate.AuthApiKey(api_key=""), # Replace with your WCS key | |
additional_headers={'X-OpenAI-Api-Key':""} # Replace os.getenv("OPENAI_APIKEY") with your actual OpenAI API key | |
) | |
print(client.is_ready()) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment