Skip to content

Commit

Permalink
v0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
wwakabobik committed Sep 12, 2023
1 parent 7acb164 commit 1d7915b
Show file tree
Hide file tree
Showing 13 changed files with 19 additions and 1,327 deletions.
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
[submodule "leonardo_api"]
path = leonardo_api
url = [email protected]:wwakabobik/leonardo_api.git
[submodule "openai_api"]
path = openai_api
url = [email protected]:wwakabobik/openai_api.git
8 changes: 3 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [0.1] - 2023-08-25

### Added
- ChatGPT engine
- DALL-E engine

- audio_recorder
- logger
- transcriptors
- translators
- tts
- OpenAI API
- Leonardo API

## [0.2] - 2023-08-28

### Added
- Leonardo API
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
# ai_engines
# ai_engines
Playground and utils libraries for AI stuff
3 changes: 3 additions & 0 deletions TODO.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
- Add more params and fixes
- Add image handling methods (generalistic)
- Rework as pypi package
7 changes: 3 additions & 4 deletions __init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,15 @@
Copyright (c) 2023. All rights reserved.
Created: 25.08.2023
Last Modified: 26.08.2023
Last Modified: 12.09.2023
Description:
This file is init point for project-wide structure.
"""

# Engines
from .leonardo_engine.leonardo import Leonardo # pylint: disable=unused-import
from .openai_engine.chatgpt import ChatGPT # pylint: disable=unused-import
from .openai_engine.dalle import DALLE # pylint: disable=unused-import
from .openai_api.src.openai_api.chatgpt import ChatGPT # pylint: disable=unused-import
from .openai_api.src.openai_api.dalle import DALLE # pylint: disable=unused-import

# Utils
from .utils.tts import CustomTTS # pylint: disable=unused-import
Expand Down
7 changes: 3 additions & 4 deletions __main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,15 @@
Copyright (c) 2023. All rights reserved.
Created: 25.08.2023
Last Modified: 26.08.2023
Last Modified: 12.09.2023
Description:
This file is entry point for project-wide structure.
"""

# Engines
from leonardo_engine.leonardo import Leonardo # pylint: disable=unused-import
from openai_engine.chatgpt import ChatGPT # pylint: disable=unused-import
from openai_engine.dalle import DALLE # pylint: disable=unused-import
from openai_api.src.openai_api.chatgpt import ChatGPT # pylint: disable=unused-import
from openai_api.src.openai_api.dalle import DALLE # pylint: disable=unused-import

# Utils
from utils.tts import CustomTTS # pylint: disable=unused-import
Expand Down
1 change: 1 addition & 0 deletions openai_api
Submodule openai_api added at 51ee46
4 changes: 0 additions & 4 deletions openai_engine/TODO

This file was deleted.

Empty file removed openai_engine/__init__.py
Empty file.
Loading

0 comments on commit 1d7915b

Please sign in to comment.