Skip to content

Commit

Permalink
Merge pull request #4 from Width-ai/fix/update_base_url
Browse files Browse the repository at this point in the history
Fix: Updates the Base URL, bump version
  • Loading branch information
pa-t authored Oct 26, 2023
2 parents cfe2e24 + 128f03e commit 86f42ae
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ def parse_requirements(filename):
setup(
name='word_embeddings_sdk',
packages=find_packages(),
version='0.1.4',
version='0.1.5',
license='MIT',
description='Python sdk to interface with the WordEmbeddings API',
long_description=readme,
long_description_content_type='text/markdown',
author='Patrick Hennis',
author_email='[email protected]',
url='https://github.com/Width-ai/embeddings-sdk',
download_url='https://github.com/Width-ai/embeddings-sdk/archive/refs/tags/v0.1.4.tar.gz',
download_url='https://github.com/Width-ai/embeddings-sdk/archive/refs/tags/v0.1.5.tar.gz',
keywords=['Embeddings', 'SDK', 'WordEmbeddings', 'WordEmbeddings.Ai'],
install_requires=install_requires,
classifiers=[
Expand Down
2 changes: 1 addition & 1 deletion word_embeddings_sdk/api/session.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@


class WordEmbeddingsSession:
def __init__(self, customer_id: str, api_key: str, url: str = "https://wordembeddings.ai"):
def __init__(self, customer_id: str, api_key: str, url: str = "https://www.wordembeddings.ai/api"):
self.logger = setup_logger(__name__)
self.api_url = url
self.customer_id = customer_id
Expand Down

0 comments on commit 86f42ae

Please sign in to comment.