File size: 916 Bytes
c347d26
 
 
 
 
 
 
 
664542a
c347d26
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
from langchain_groq import ChatGroq
from langchain.prompts import PromptTemplate

class NoteGenerator:
    def __init__(self, api_key):
        self.llm = ChatGroq(
            temperature=0.7,
            groq_api_key=api_key,
            model_name="llama3-8b-8192"  # Groq currently supports Llama2, not Llama3
        )
        
        self.note_prompt = PromptTemplate(
            input_variables=["content"],
            template="""
            Create detailed, structured notes from the following content:
            {content}
            
            Format the notes with:
            1. Main topics and subtopics
            2. Key points and definitions
            3. Important examples
            4. Summary
            """
        )
        
        self.chain = self.note_prompt | self.llm
    
    def generate_notes(self, content):
        return self.chain.invoke({"content": content}).content