Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
anycodes committed Dec 24, 2024
1 parent c86cdf9 commit 2594760
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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"})
Expand All @@ -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"})
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import setup, find_packages

setup(
name="onesdk",
name="llm-onesdk",
version="0.0.1",
author="anycodes",
author_email="[email protected]",
Expand Down

0 comments on commit 2594760

Please sign in to comment.