Skip to content

Commit 24c7f50

Browse files
gustavocidornelaswhoseoyster
authored andcommitted
Completes OPEN-4030 Add LLM as a supported framework
1 parent 1a7a906 commit 24c7f50

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
1414

1515
### Added
1616

17+
* Added `llm` as a supported `architectureType` for models.
1718
* Added `protobuf<3.20` to requirements to fix compatibility issue with Tensorflow.
1819
* Warnings if the dependencies from the `requirement_txt_file` and current environment are inconsistent.
1920
* Paths to custom SSL certificates can now be modified by altering `openlayer.api.VERIFY_REQUESTS`. The value can either be True (default), False, or a path to a certificate.

openlayer/models.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ class ModelType(Enum):
2626
fasttext = "fasttext"
2727
#: For models built with `Keras <https://keras.io/>`_.
2828
keras = "keras"
29+
#: For large language models (LLMs), such as GPT
30+
llm = "llm"
2931
#: For models built with `PyTorch <https://pytorch.org/>`_.
3032
pytorch = "pytorch"
3133
#: For models built with `rasa <https://rasa.com/>`_.

0 commit comments

Comments
 (0)