1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
import os
from dataclasses import asdict
from typing import Any, Dict, Generator, List, Optional
import cohere
from loguru import logger as log
from .abstract import AbstractGenerator
from .prompt import ANSWER_INSTRUCTION, Prompt
class Cohere(metaclass=AbstractGenerator):
def __init__(self) -> None:
self.client = cohere.Client(os.environ["COHERE_API_KEY"])
def generate(
self, prompt: Prompt, history: Optional[List[Dict[str, str]]]
) -> Generator[Any, Any, Any]:
log.debug("Generating answer from cohere...")
query = f"{prompt.query}\n\n{ANSWER_INSTRUCTION}"
for event in self.client.chat_stream(
message=query,
documents=[asdict(d) for d in prompt.documents],
chat_history=history,
prompt_truncation="AUTO",
):
if event.event_type == "text-generation":
yield event.text
elif event.event_type == "citation-generation":
yield event.citations
elif event.event_type == "stream-end":
yield event.finish_reason
|