diff --git a/main.py b/main.py index 3d84383..f9e7ab1 100644 --- a/main.py +++ b/main.py @@ -14,7 +14,7 @@ from utils import get_last_user_message, stream_message_template from schemas import OpenAIChatCompletionForm from config import MODEL_ID, MODEL_NAME -from pipeline import get_response +from pipelines.pipeline import get_response app = FastAPI(docs_url="/docs", redoc_url=None) diff --git a/examples/haystack_pipeline.py b/pipelines/examples/haystack_pipeline.py similarity index 100% rename from examples/haystack_pipeline.py rename to pipelines/examples/haystack_pipeline.py diff --git a/examples/llamaindex_ollama_github_pipeline.py b/pipelines/examples/llamaindex_ollama_github_pipeline.py similarity index 100% rename from examples/llamaindex_ollama_github_pipeline.py rename to pipelines/examples/llamaindex_ollama_github_pipeline.py diff --git a/examples/llamaindex_ollama_pipeline.py b/pipelines/examples/llamaindex_ollama_pipeline.py similarity index 100% rename from examples/llamaindex_ollama_pipeline.py rename to pipelines/examples/llamaindex_ollama_pipeline.py diff --git a/examples/llamaindex_pipeline.py b/pipelines/examples/llamaindex_pipeline.py similarity index 100% rename from examples/llamaindex_pipeline.py rename to pipelines/examples/llamaindex_pipeline.py diff --git a/pipeline.py b/pipelines/pipeline.py similarity index 100% rename from pipeline.py rename to pipelines/pipeline.py