Skip to content

Commit

Permalink
bump: version
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelfeil committed Nov 11, 2024
1 parent 941105f commit 0784cf5
Show file tree
Hide file tree
Showing 10 changed files with 13 additions and 11 deletions.
2 changes: 1 addition & 1 deletion docs/assets/openapi.json

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
""" A client library for accessing ♾️ Infinity - Embedding Inference Server """
"""A client library for accessing ♾️ Infinity - Embedding Inference Server"""

from .client import AuthenticatedClient, Client

__all__ = (
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
""" Contains methods for accessing the API """
"""Contains methods for accessing the API"""
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
""" Contains shared errors types that can be raised from API functions """
"""Contains shared errors types that can be raised from API functions"""


class UnexpectedStatus(Exception):
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
""" Contains all the data models used in inputs/outputs """
"""Contains all the data models used in inputs/outputs"""

from .audio_embedding_input import AudioEmbeddingInput
from .classify_input import ClassifyInput
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@ class OpenAIEmbeddingResult:
data (List['EmbeddingObject']):
model (str):
usage (Usage):
object_ (Union[Unset, OpenAIEmbeddingResultObject]): Default: OpenAIEmbeddingResultObject.EMBEDDING.
object_ (Union[Unset, OpenAIEmbeddingResultObject]): Default: OpenAIEmbeddingResultObject.LIST.
id (Union[Unset, str]):
created (Union[Unset, int]):
"""

data: List["EmbeddingObject"]
model: str
usage: "Usage"
object_: Union[Unset, OpenAIEmbeddingResultObject] = OpenAIEmbeddingResultObject.EMBEDDING
object_: Union[Unset, OpenAIEmbeddingResultObject] = OpenAIEmbeddingResultObject.LIST
id: Union[Unset, str] = UNSET
created: Union[Unset, int] = UNSET
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@


class OpenAIEmbeddingResultObject(str, Enum):
EMBEDDING = "embedding"
LIST = "list"

def __str__(self) -> str:
return str(self.value)
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
""" Contains some shared types for properties """
"""Contains some shared types for properties"""

from http import HTTPStatus
from typing import BinaryIO, Generic, Literal, MutableMapping, Optional, Tuple, TypeVar

Expand Down
2 changes: 1 addition & 1 deletion libs/client_infinity/infinity_client/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "infinity_client"
version = "0.0.67"
version = "0.0.68"
description = "A client library for accessing ♾️ Infinity - Embedding Inference Server"
authors = []
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion libs/infinity_emb/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

[tool.poetry]
name = "infinity_emb"
version = "0.0.67"
version = "0.0.68"
description = "Infinity is a high-throughput, low-latency REST API for serving text-embeddings, reranking models and clip."
authors = ["michaelfeil <[email protected]>"]
license = "MIT"
Expand Down

0 comments on commit 0784cf5

Please sign in to comment.