diff --git a/README.md b/README.md index 0cc68ba..875c097 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ OneSDK is a Python library that provides a unified interface for interacting wit ## Installation ```bash -pip install onesdk +pip install llm-onesdk ``` ## Quick Start @@ -26,7 +26,7 @@ OneSDK supports two main usage patterns: ### Pattern 1: Specify model for each call ```python -from onesdk import OneSDK +from llm-onesdk import OneSDK # Initialize the SDK with your chosen provider and credentials sdk = OneSDK("anthropic", {"api_key": "your-api-key"}) @@ -42,7 +42,7 @@ print(response['choices'][0]['message']['content']) ### Pattern 2: Set a default model ```python -from onesdk import OneSDK +from llm-onesdk import OneSDK # Initialize the SDK and set a default model sdk = OneSDK("anthropic", {"api_key": "your-api-key"}) diff --git a/setup.py b/setup.py index cd5e640..3aeff3d 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from setuptools import setup, find_packages setup( - name="onesdk", + name="llm-onesdk", version="0.0.1", author="anycodes", author_email="liuyu@xmail.tech",