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
| from customtkinter import *
from mistralai import Mistral
import os
app = CTk()
app.geometry("1250x975")
app.title("COGEPARC IA")
client = Mistral(api_key="")
tab_view = CTkTabview(master=app, corner_radius=15, anchor="w", fg_color="#002676", height=1000, segmented_button_selected_color=("#002676"), segmented_button_selected_hover_color=("#002676"))
tab_view.pack(fill="both", padx=1, pady=1)
tab_view.add("LE CHAT COGEPARC")
tab_view.add("JURIDIQUE")
extracted_content = ""
def widgets_place():
Chatframe.place_forget()
Chatframe.place(relx=0.5, rely=0.9, anchor="center")
output_frame.place(relx=0.5, rely=0.42, anchor="center")
output_txtbox.insert("end", "Vous : " + Chat_input.get() + "\n" + "\n")
def chatlaunch():
try:
widgets_place()
output_frame.update_idletasks()
output_txtbox.update_idletasks()
prompt_chat = f"{Chat_input.get()}"
chat_response_tab1 = client.chat.complete(
model="mistral-large-latest",
temperature=0.3,
messages=[
{"role": "system", "content": ""},
{"role": "user", "content": prompt_chat},
]
)
reponse_content = chat_response_tab1.choices[0].message.content
output_txtbox.insert("end", reponse_content + "\n" + "\n")
Chat_input.delete(0, "end")
except Exception as e:
output_txtbox.insert("end", "Erreur lors du traitement de votre requête: " + str(e) + "\n")
Chatframe = CTkFrame(master=tab_view.tab("LE CHAT COGEPARC"), width=900, height=140, fg_color="#FFFFFF", corner_radius=15, bg_color="#002676", border_width=0.5)
Chatframe.place(relx=0.5, rely=0.47, anchor="center")
output_frame = CTkFrame(master=tab_view.tab("LE CHAT COGEPARC"), width=900, height=700, corner_radius=15, bg_color="#002676", fg_color="#FFFFFF")
output_txtbox = CTkTextbox(master=output_frame, width=850, height=650, font=("Montserrat", 16), fg_color="#FFFFFF", wrap="word", text_color="#000000")
output_txtbox.place(relx=0.5, rely=0.5, anchor="center")
Chat_input = CTkEntry(master=Chatframe, placeholder_text="Demander au Chat ...", placeholder_text_color="#808080", text_color="#000000", width=825, height=50, fg_color="#FFFFFF", font=("Montserrat", 18), border_width=0)
Chat_input.place(relx=0.5, rely=0.3, anchor="center")
button_arrow = CTkButton(master=Chatframe, text="", width=30, height=30, fg_color="#BFBFBF", hover_color="#DCDCDC", border_width=1.25, corner_radius=5, command=chatlaunch)
button_arrow.place(relx=0.95, rely=0.30, anchor="center")
app.mainloop() |
Partager