diff --git a/README.md b/README.md index 0d0cc760..bd7df95e 100644 --- a/README.md +++ b/README.md @@ -22,12 +22,12 @@ pip install aisuite This installs aisuite along with anthropic's library. ```shell -pip install aisuite[anthropic] +pip install 'aisuite[anthropic]' ``` This installs all the provider-specific libraries ```shell -pip install aisuite[all] +pip install 'aisuite[all]' ``` ## Set up diff --git a/aisuite/providers/gcp_provider.py b/aisuite/providers/gcp_provider.py deleted file mode 100644 index 8f8676d6..00000000 --- a/aisuite/providers/gcp_provider.py +++ /dev/null @@ -1,9 +0,0 @@ -from aisuite.provider import Provider - - -class GcpProvider(Provider): - def __init__(self) -> None: - pass - - def chat_completions_create(self, model, messages): - raise ValueError("GCP Provider not yet implemented.")