[AUR-389] Add base interface and embedding model (#17)

This change provides the base interface of an embedding, and wrap the Langchain's OpenAI embedding. Usage as follow:

```python
from kotaemon.embeddings import AzureOpenAIEmbeddings

model = AzureOpenAIEmbeddings(
    model="text-embedding-ada-002",
    deployment="embedding-deployment",
    openai_api_base="https://test.openai.azure.com/",
    openai_api_key="some-key",
)
output = model("Hello world")
```
This commit is contained in:
Nguyen Trung Duc (john)
2023-09-14 14:08:58 +07:00
committed by GitHub
parent 1061192731
commit c339912312
6 changed files with 4772 additions and 3 deletions

View File

@@ -30,8 +30,8 @@ class LangchainChatLLM(ChatLLM):
self._kwargs[param] = params.pop(param)
super().__init__(**params)
@Param.decorate()
def agent(self):
@Param.decorate(no_cache=True)
def agent(self) -> BaseLanguageModel:
return self._lc_class(**self._kwargs)
def run_raw(self, text: str) -> LLMInterface:
@@ -43,7 +43,7 @@ class LangchainChatLLM(ChatLLM):
return self.run_batch_document(inputs)
def run_document(self, text: List[Message]) -> LLMInterface:
pred = self.agent.generate([text])
pred = self.agent.generate([text]) # type: ignore
return LLMInterface(
text=[each.text for each in pred.generations[0]],
completion_tokens=pred.llm_output["token_usage"]["completion_tokens"],