| @@ -175,10 +175,10 @@ | |||
| </svg> | |||
| </div> | |||
| <div class="agent-content"> | |||
| <h3 class="agent-name">Agent Code</h3> | |||
| <p class="agent-description"> | |||
| Un agent IA spécialisé dans l'étude de vos documents et dans la réalisation d'audit financier | |||
| </p> | |||
| <h3 class="agent-name">L'agent Audit</h3> | |||
| <p class="agent-description"> | |||
| Un agent IA spécialisé dans l'étude de vos documents et dans la réalisation d'audit financier | |||
| </p> | |||
| </div> | |||
| <div class="agent-check"> | |||
| <svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="currentColor" viewBox="0 0 16 16"> | |||
| @@ -200,10 +200,10 @@ | |||
| </svg> | |||
| </div> | |||
| <div class="agent-content"> | |||
| <h3 class="agent-name">Agent Image</h3> | |||
| <p class="agent-description"> | |||
| Un agent IA spécialisé dans la rédaction de mail professionnel avec une approche humaine et experte | |||
| </p> | |||
| <h3 class="agent-name">L'agent mail spécialisé</h3> | |||
| <p class="agent-description"> | |||
| Un agent IA spécialisé dans la rédaction de mail professionnel avec une approche humaine et experte | |||
| </p> | |||
| </div> | |||
| <div class="agent-check"> | |||
| <svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="currentColor" viewBox="0 0 16 16"> | |||
| @@ -62,17 +62,17 @@ namespace ReAct_PME.WebUI.Pages.ChatRoom | |||
| } | |||
| await LoadConversations(); | |||
| if (TypeLLM == 1) | |||
| { | |||
| SelectedMode = "llm"; | |||
| IsWithHistorique = true; | |||
| hiddenDomain = true; | |||
| } | |||
| else if (TypeLLM == 2) | |||
| { | |||
| SelectedMode = "rag"; | |||
| IsWithHistorique = false; | |||
| hiddenDomain = false; | |||
| hiddenDomain = false; | |||
| await LoadRagDomains(); | |||
| if (RagDomains.Any()) | |||
| SelectedDomain = RagDomains[0]; | |||
| @@ -81,16 +81,19 @@ namespace ReAct_PME.WebUI.Pages.ChatRoom | |||
| { | |||
| SelectedMode = "code"; | |||
| IsWithHistorique = true; | |||
| hiddenDomain = true; | |||
| } | |||
| else if (TypeLLM == 4) | |||
| { | |||
| SelectedMode = "image"; | |||
| IsWithHistorique = false; | |||
| hiddenDomain = true; | |||
| } | |||
| else | |||
| { | |||
| SelectedMode = "llm"; | |||
| IsWithHistorique = true; | |||
| hiddenDomain = true; | |||
| } | |||
| if (!string.IsNullOrEmpty(ConversationId)) | |||
| @@ -286,7 +286,7 @@ | |||
| max-width: 1200px; | |||
| display: flex; | |||
| flex-direction: column; | |||
| gap: 3rem; | |||
| gap: 1.5rem; | |||
| } | |||
| /* Section bienvenue */ | |||
| @@ -433,14 +433,14 @@ | |||
| } | |||
| .agent-name { | |||
| font-size: 1.125rem; | |||
| font-size: 1rem; | |||
| font-weight: 600; | |||
| color: var(--text-dark); | |||
| margin: 0 0 0.5rem 0; | |||
| } | |||
| .agent-description { | |||
| font-size: 0.9rem; | |||
| font-size: 0.8rem; | |||
| color: var(--text-light); | |||
| line-height: 1.5; | |||
| margin: 0; | |||
| @@ -2660,12 +2660,12 @@ color:white; | |||
| .sidebar-section { | |||
| margin-bottom: 16px; | |||
| max-height: 45vh; | |||
| max-height: 46vh; | |||
| overflow: hidden; | |||
| } | |||
| .section-title { | |||
| font-size: 11px; | |||
| font-size: 14px; | |||
| font-weight: 600; | |||
| text-transform: uppercase; | |||
| color: rgba(255, 255, 255, 0.5); | |||