Skip to content
This repository has been archived by the owner on Sep 12, 2024. It is now read-only.

add AutoEmbedding to init #203

Merged
merged 1 commit into from
Jan 12, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion autollm/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
__author__ = 'safevideo'
__license__ = 'AGPL-3.0'

from autollm.auto.embedding import AutoEmbedding
from autollm.auto.fastapi_app import AutoFastAPI
from autollm.auto.llm import AutoLiteLLM
from autollm.auto.query_engine import AutoQueryEngine
Expand All @@ -22,6 +23,6 @@

__all__ = [
'AutoLiteLLM', 'AutoServiceContext', 'AutoVectorStoreIndex', 'AutoQueryEngine', 'AutoFastAPI',
'read_files_as_documents', 'read_github_repo_as_documents', 'read_webpage_as_documents',
'AutoEmbedding', 'read_files_as_documents', 'read_github_repo_as_documents', 'read_webpage_as_documents',
'read_website_as_documents'
]