-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #17 from atomiechen/dev
Bump version to 0.6.0
- Loading branch information
Showing
31 changed files
with
1,967 additions
and
793 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,9 +3,14 @@ | |
dist | ||
*.egg-info | ||
|
||
# credentials | ||
*.env | ||
|
||
# virtual environment | ||
venv | ||
.venv | ||
|
||
# temporary files | ||
tmp* | ||
temp* | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,6 @@ | ||
_API_BASE_OPENAI = 'https://api.openai.com/v1' | ||
_API_TYPE_OPENAI = 'openai' | ||
_API_TYPES_AZURE = ( | ||
'azure', | ||
'azure_ad', | ||
'azuread' | ||
) | ||
_API_VERSION_AZURE = '2023-05-15' | ||
|
||
from .openai_client import OpenAIClient, ClientMode | ||
from .requestor import Requestor | ||
from .openai_api import OpenAIAPI | ||
from .endpoint_manager import Endpoint, EndpointManager | ||
from .prompt_converter import PromptConverter | ||
from .utils import * |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
_API_BASE_OPENAI = 'https://api.openai.com/v1' | ||
_API_TYPE_OPENAI = 'openai' | ||
_API_TYPES_AZURE = ( | ||
'azure', | ||
'azure_ad', | ||
'azuread' | ||
) |
Oops, something went wrong.