kotaemon/knowledgehub/llms/prompts/__init__.py
Nguyen Trung Duc (john) 693ed39de4 Move prompts into LLMs module (#70)
Since the only usage of prompt is within LLMs, it is reasonable to keep it within the LLM module. This way, it would be easier to discover module, and make the code base less complicated.

Changes:

* Move prompt components into llms
* Bump version 0.3.1
* Make pip install dependencies in eager mode

---------

Co-authored-by: ian <ian@cinnamon.is>
2023-11-14 16:00:10 +07:00

5 lines
128 B
Python

from .base import BasePromptComponent
from .template import PromptTemplate
__all__ = ["BasePromptComponent", "PromptTemplate"]