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>
This commit is contained in:
committed by
GitHub
parent
8532138842
commit
693ed39de4
@@ -0,0 +1,4 @@
|
||||
from .base import LLM
|
||||
from .openai import AzureOpenAI, OpenAI
|
||||
|
||||
__all__ = ["LLM", "OpenAI", "AzureOpenAI"]
|
||||
|
@@ -64,7 +64,3 @@ class LangchainLLM(LLM):
|
||||
setattr(self.agent, name, value)
|
||||
else:
|
||||
super().__setattr__(name, value)
|
||||
|
||||
|
||||
class LLMChat(BaseComponent):
|
||||
pass
|
||||
|
Reference in New Issue
Block a user