File size: 17,233 Bytes
f34a6fd
 
 
 
 
 
 
 
 
 
 
 
645a356
 
f34a6fd
 
 
645a356
8e46350
645a356
 
 
 
 
 
f34a6fd
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
645a356
8e46350
f34a6fd
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
645a356
8e46350
f34a6fd
 
 
 
 
 
 
645a356
8e46350
f34a6fd
 
8e46350
 
645a356
8e46350
 
f34a6fd
 
 
 
 
645a356
f34a6fd
 
 
645a356
f4674aa
f34a6fd
 
 
 
 
f4674aa
f34a6fd
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
645a356
 
 
 
 
 
 
 
 
f34a6fd
 
 
8e46350
 
dbc6bab
8e46350
 
 
f34a6fd
 
 
89c9051
f34a6fd
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8e46350
 
 
 
 
 
 
 
f34a6fd
 
 
dbc6bab
8e46350
f34a6fd
8e46350
 
 
 
f34a6fd
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
645a356
 
f34a6fd
 
 
 
 
 
 
 
 
 
645a356
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f34a6fd
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
645a356
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f34a6fd
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
from global_vars import translations, t
from app import Plugin
import streamlit as st
import yaml
from litellm import completion, embedding
import numpy as np
from sklearn.metrics.pairwise import cosine_similarity, euclidean_distances, manhattan_distances
import os
from typing import List, Dict, Any
import requests
import torch
from transformers import AutoTokenizer, AutoModel
from huggingface_hub import InferenceClient
from langchain_huggingface import HuggingFaceEmbeddings

DEVICE = 'cuda' if torch.cuda.is_available() else 'cpu'
MAX_LENGTH = 512
CHUNK_SIZE = 200
CONFIG_FILE = '.llm-config.yml'

def mean_pooling(model_output, attention_mask):
    token_embeddings = model_output[0]
    input_mask_expanded = attention_mask.unsqueeze(-1).expand(token_embeddings.size()).float()
    return torch.sum(token_embeddings * input_mask_expanded, 1) / torch.clamp(input_mask_expanded.sum(1), min=1e-9)


def mean_pooling(model_output, attention_mask):
    token_embeddings = model_output[0]
    input_mask_expanded = attention_mask.unsqueeze(-1).expand(token_embeddings.size()).float()
    return torch.sum(token_embeddings * input_mask_expanded, 1) / torch.clamp(input_mask_expanded.sum(1), min=1e-9)

# Ajout des traductions spécifiques à ce plugin
translations["en"].update({
    "rag_plugin_loaded": "RAG LLM Plugin loaded",
    "rag_enter_text": "Enter RAG text:",
    "rag_enter_question": "Enter your question:",
    "rag_button_get_answer": "Get an answer",
    "rag_success_text_processed": "RAG text processed successfully!",
    "rag_warning_enter_text": "Please enter RAG text.",
    "rag_warning_process_text_first": "Please process the RAG text first.",
    "rag_warning_enter_question": "Please enter a question.",
    "rag_answer": "Answer:",
    "rag_citations": "Citations:",
    "rag_model_provider": "Model Provider",
    "rag_llm_model": "LLM Model",
    "rag_embedder_model": "Embedding Model",
    "rag_similarity_method": "Similarity Method",
    "rag_llm_sys_prompt": "System prompt for LLM",
    "rag_chunk_size": "Chunk size",
    "rag_top_k_chunks": "Number of chunks to use",
    "rag_default_sys_prompt": "You are an AI assistant. Your task is to analyze the provided context and answer questions based ONLY on this context. If the information is not in the context, clearly state that.",
    "rag_error_fetching_models_ollama": "Error fetching Ollama models: ",
    "rag_error_calling_llm": "Error calling LLM: ",
    "rag_processing" : "Processing...",
    "rag_hf_api_key": "HuggingFace API Token",
    "rag_config_file_missing": "Configuration file .llm-config.yml not found. This is required for Ollama and Groq providers.",
})

translations["fr"].update({
    "rag_plugin_loaded": "Plugin RAG LLM chargé",
    "rag_enter_text": "Entrez le texte RAG :",
    "rag_enter_question": "Entrez votre question :",
    "rag_button_get_answer": "Obtenir une réponse",
    "rag_success_text_processed": "Texte RAG traité avec succès!",
    "rag_warning_enter_text": "Veuillez entrer du texte RAG.",
    "rag_warning_process_text_first": "Veuillez d'abord traiter le texte RAG.",
    "rag_warning_enter_question": "Veuillez entrer une question.",
    "rag_answer": "Réponse :",
    "rag_citations": "Citations :",
    "rag_model_provider": "Fournisseur de modèle",
    "rag_llm_model": "Modèle LLM",
    "rag_embedder_model": "Modèle d'embedding",
    "rag_similarity_method": "Méthode de similarité",
    "rag_llm_sys_prompt": "Prompt système pour le LLM",
    "rag_chunk_size": "Taille des chunks",
    "rag_top_k_chunks": "Nombre de chunks à utiliser",
    "rag_default_sys_prompt": "Tu es un assistant IA. Ta tâche est d'analyser le contexte fourni et de répondre aux questions en te basant UNIQUEMENT sur ce contexte. Si l'information n'est pas dans le contexte, dis-le clairement.",
    "rag_error_fetching_models_ollama": "Erreur lors de la récupération des modèles Ollama : ",
    "rag_error_calling_llm": "Erreur lors de l'appel au LLM : ",
    "rag_processing" : "En cours de traitement...",
     "rag_hf_api_key": "Token API HuggingFace",
    "rag_config_file_missing": "Fichier de configuration .llm-config.yml non trouvé. Ce fichier est nécessaire pour les providers Ollama et Groq.",
})

class RagllmPlugin(Plugin):
    def __init__(self, name: str, plugin_manager):
        super().__init__(name, plugin_manager)
        self.embeddings = None
        self.chunks = None
        self.hf_client = None
        self.config = {}

    def load_llm_config(self) -> Dict:
        if not os.path.exists(CONFIG_FILE):
            st.warning(t("rag_config_file_missing"))
            return {}
        with open(CONFIG_FILE, 'r') as file:
            return yaml.safe_load(file)

    def get_tabs(self):
        return [{"name": "RAG", "plugin": "ragllm"}]

    def get_config_fields(self):
        fields = {
            "provider": {
                "type": "select",
                "label": t("rag_model_provider"),
                "options": [("ollama", "Ollama"), ("groq", "Groq"), ("huggingface", "HuggingFace")],
                "default": "huggingface"
            },
            "llm_model": {
                "type": "select",
                "label": t("rag_llm_model"),
                "options": [("none", "À charger...")],
                "default": "HuggingFaceH4/zephyr-7b-beta"
            },
            "embedder": {
                "type": "select",
                "label": t("rag_embedder_model"),
                "options": [
                    ("sentence-transformers/all-MiniLM-L6-v2", "all-MiniLM-L6-v2"),
                    ("nomic-ai/nomic-embed-text-v1.5", "nomic-embed-text-v1.5")
                ],
                "default": "sentence-transformers/all-MiniLM-L6-v2"
            },
            "similarity_method": {
                "type": "select",
                "label": t("rag_similarity_method"),
                "options": [
                    ("cosine", "Cosinus"),
                    ("euclidean", "Distance euclidienne"),
                    ("manhattan", "Distance de Manhattan")
                ],
                "default": "cosine"
            },
            "llm_sys_prompt": {
                "type": "textarea",
                "label": t("rag_llm_sys_prompt"),
                "default": t("rag_default_sys_prompt")
            },
            "chunk_size": {
                "type": "number",
                "label": t("rag_chunk_size"),
                "default": 200
            },
            "top_k": {
                "type": "number",
                "label": t("rag_top_k_chunks"),
                "default": 3
            }
        }
        # Add HuggingFace API key field if provider is huggingface
        if 'provider' in self.config and self.config.get('provider') == 'huggingface':
            fields["hf_api_key"] = {
                "type": "password",
                "label": t("rag_hf_api_key"),
                "default": ""
            }

        return fields

    def get_config_ui(self, config):
        updated_config = {}

        # Load config file only if provider is not huggingface
        current_provider = config.get('provider', 'huggingface')
        if current_provider != 'huggingface':
            self.config = self.load_llm_config()

        for field, params in self.get_config_fields().items():
            if params['type'] == 'select':
                if field == 'llm_model':
                    provider = config.get('provider', 'huggingface')
                    models = self.get_available_models(provider)
                    try:
                        default_index = models.index(config.get(field, params['default']))
                    except ValueError:
                        default_index = 0
                    updated_config[field] = st.selectbox(
                        params['label'],
                        options=models,
                        index=default_index
                    )
                else:
                    options_list = [option[0] for option in params['options']]
                    try:
                        default_index = options_list.index(config.get(field, params['default']))
                    except ValueError:
                        default_index = 0
                    updated_config[field] = st.selectbox(
                        params['label'],
                        options=options_list,
                        format_func=lambda x: dict(params['options'])[x],
                        index=default_index
                    )
            elif params['type'] == 'textarea':
                updated_config[field] = st.text_area(
                    params['label'],
                    value=config.get(field, params['default'])
                )
            elif params['type'] == 'number':
                updated_config[field] = st.number_input(
                    params['label'],
                    value=int(config.get(field, params['default'])),
                    step=1
                )
            else:
                updated_config[field] = st.text_input(
                    params['label'],
                    value=config.get(field, params['default'])
                )

        if config.get('provider') == 'huggingface':
            updated_config['hf_api_key'] = st.text_input(
                t("rag_hf_api_key"),
                type="password",
                value=config.get('hf_api_key', '')
            )

        return updated_config

    def get_sidebar_config_ui(self, config: Dict[str, Any]) -> Dict[str, Any]:
        provider = config.get('provider', 'huggingface')
        available_models = self.get_available_models(provider)
        default_model = config.get('llm_model', available_models[0] if available_models else None)

        if default_model not in available_models:
            default_model = available_models[0] if available_models else None

        selected_model = st.sidebar.selectbox(
            t("rag_llm_model"),
            options=available_models,
            index=available_models.index(default_model) if default_model in available_models else 0,
            key="ragllm_llm_model"
        )
        return {"llm_model": selected_model}

    def get_available_models(self, provider: str) -> List[str]:
        if provider == 'ollama':
            try:
                response = requests.get("http://localhost:11434/api/tags")
                models = response.json()["models"]
                return [f"ollama/{model['name']}" for model in models] + ["ollama/qwen2"]
            except Exception as e:
                st.error(f"{t('rag_error_fetching_models_ollama')}{str(e)}")
                return ["ollama/qwen2"]
        elif provider == 'groq':
            return ["groq/llama3-70b-8192", "groq/mixtral-8x7b-32768"]
        elif provider == 'huggingface':
            return ["HuggingFaceH4/zephyr-7b-beta"]
        else:
            return ["none"]

    def process_rag_text(self, rag_text: str, chunk_size: int, embedder):
        rag_text = rag_text.replace('\\n', ' ').replace('\\\'', "'")
        mots = rag_text.split()
        self.chunks = [' '.join(mots[i:i+chunk_size]) for i in range(0, len(mots), chunk_size)]
        self.embeddings = np.vstack([self.get_embedding(c, embedder) for c in self.chunks])

    def get_embedding(self, text: str, model: str) -> np.ndarray:
        if self.config.get('provider') == 'huggingface':
            if not hasattr(self, 'hf_embeddings'):
                self.hf_embeddings = HuggingFaceEmbeddings(
                    model_name=model,
                    task="feature-extraction",
                    encode_kwargs={'normalize': True}
                )
            embedding = self.hf_embeddings.embed_query(text)
            return np.array(embedding).reshape(1, -1)
        else:
            # Original embedding logic
            tokenizer = AutoTokenizer.from_pretrained(model)
            model = AutoModel.from_pretrained(model, trust_remote_code=True).to(DEVICE)
            inputs = tokenizer(text, padding=True, truncation=True, max_length=MAX_LENGTH, return_tensors="pt").to(DEVICE)
            with torch.no_grad():
                model_output = model(**inputs)
            return mean_pooling(model_output, inputs['attention_mask']).cpu().numpy()

    def calculate_similarity(self, query_embedding: np.ndarray, method: str) -> np.ndarray:
        if method == 'cosine':
            return cosine_similarity(query_embedding.reshape(1, -1), self.embeddings)[0]
        elif method == 'euclidean':
            return -euclidean_distances(query_embedding.reshape(1, -1), self.embeddings)[0]
        elif method == 'manhattan':
            return -manhattan_distances(query_embedding.reshape(1, -1), self.embeddings)[0]
        else:
            raise ValueError("Méthode de similarité non reconnue")

    def get_context(self, query: str, config: Dict[str, Any]) -> tuple:
        query_embedding = self.get_embedding(query, config['ragllm']['embedder'])
        similarities = self.calculate_similarity(query_embedding, config['ragllm']['similarity_method'])
        top_indices = np.argsort(similarities)[-config['ragllm']['top_k']:][::-1]
        context = "\n\n".join([self.chunks[i] for i in top_indices])
        return context, [self.chunks[i] for i in top_indices]

    def call_llm(self, prompt: str, sysprompt: str) -> str:
        try:
            llm_model = st.session_state.ragllm_llm_model
            if self.config.get('provider') == 'huggingface':
                if not self.hf_client:
                    self.hf_client = InferenceClient(token=self.config.get('hf_api_key'))

                messages = [
                    {"role": "system", "content": sysprompt},
                    {"role": "user", "content": prompt}
                ]

                response = self.hf_client.text_generation(
                    model=llm_model,
                    prompt=prompt,
                    max_new_tokens=512,
                    temperature=0.7,
                    stream=False
                )
                return response
            else:
                messages = [
                    {"role": "system", "content": sysprompt},
                    {"role": "user", "content": prompt}
                ]
                response = completion(model=llm_model, messages=messages)
                return response['choices'][0]['message']['content']

        except Exception as e:
            return f"{t('rag_error_calling_llm')}{str(e)}"

    def free_llm(self):
        try:
            llm_model = st.session_state.ragllm_llm_model
            if llm_model.startswith("ollama/"):
                ollama_model = llm_model.split("/")[1]
                response = requests.post(
                    "http://localhost:11434/api/generate",
                    json={
                        "model": ollama_model,
                        "prompt": "bye",
                        "keep_alive": 0
                    }
                )
                return response.json()['response']
        except Exception as e:
            return f"{t('rag_error_calling_llm')}{str(e)}"

    def process_with_llm(self, prompt: str, sysprompt: str, context: str) -> str:
        return self.call_llm(f"Contexte : {context}\n\nQuestion : {prompt}", sysprompt)

    def run(self, config):
        st.write(t("rag_plugin_loaded"))

        # Initialiser rag_text avec la valeur de session_state si elle existe, sinon utiliser une chaîne vide
        if 'rag_text' not in st.session_state:
            st.session_state.rag_text = ""
        if 'rag_question' not in st.session_state:
            st.session_state.rag_question = "Question"

        rag_text = st.text_area(t("rag_enter_text"), height=200, value=st.session_state.rag_text, key="rag_text_key")
        user_prompt = st.text_area(t("rag_enter_question"), value=st.session_state.rag_question, key="rag_prompt_key")
        st.session_state.rag_text = rag_text  # Mettre à jour la valeur dans session_state
        st.session_state.rag_question = user_prompt

        if st.button(t("rag_button_get_answer"), key="get_answer_button"):

            with st.spinner(t("rag_processing")):
                if rag_text:
                    self.process_rag_text(rag_text, config['ragllm']['chunk_size'], config['ragllm']['embedder'])
                    st.success(t("rag_success_text_processed"))
                else:
                    st.warning(t("rag_warning_enter_text"))
                if user_prompt and self.embeddings is not None:
                    context, citations = self.get_context(user_prompt, config)
                    response = self.process_with_llm(user_prompt, config['ragllm']['llm_sys_prompt'], context)

                    st.write(t("rag_answer"))
                    st.write(response)

                    st.write(t("rag_citations"))
                    for i, citation in enumerate(citations, 1):
                        st.write(f"{i}. {citation[:100]}...")
                elif self.embeddings is None:
                    st.warning(t("rag_warning_process_text_first"))
                else:
                    st.warning(t("rag_warning_enter_question"))