File tree Expand file tree Collapse file tree 4 files changed +9
-5
lines changed
chat/[agentId]/[conversationId] Expand file tree Collapse file tree 4 files changed +9
-5
lines changed Original file line number Diff line number Diff line change 1212 </Col >
1313 <Col sm ={6 }>
1414 <div class =" text-sm-end d-none d-sm-block" >
15- Design & Develop by open source community
15+ Design & Developed by open source community
1616 </div >
1717 </Col >
1818 </Row >
Original file line number Diff line number Diff line change 449449
450450 {#if message .data && message .data .includes (' data:image/png;base64,' )}
451451 < div style= " width: 80%; display: flex; margin-left: 35px; margin-top: 40px;" >
452- < img src= " {message.data}" width = " 200px " alt= " " class = " rounded" / >
452+ < img src= " {message.data}" alt= " " class = " border rounded img-fluid " / >
453453 < / div>
454454 {/ if }
455455 < / div>
Original file line number Diff line number Diff line change 6767 routers .forEach (router => {
6868 let profiles = [];
6969 const planner = getPlannerName (router);
70- const chatTestLinkHtml = ` <a href= "chat/${ router .id } " class="btn btn-primary float-end" target="_blank"><i class="bx bx-chat"></i></a>` ;
70+ const chatTestLinkHtml = router .is_public ?
71+ ` <a href= "chat/${ router .id } " class="btn btn-primary float-end" target="_blank"><i class="bx bx-chat"></i></a>` :
72+ ' ' ;
7173 let html = ` <span class="h5">${ router .name } ${ chatTestLinkHtml} </span><span class="text-info">Routing with ${ planner} </span>` ;
7274 if (router .profiles .length > 0 ) {
7375 profiles = router .profiles ;
9496 posX += nodeSpaceX;
9597 agents .forEach (agent => {
9698 let profiles = [];
97- const chatTestLinkHtml = ` <a href= "chat/${ agent .id } " class="btn btn-primary float-end" target="_blank"><i class="bx bx-chat"></i></a>` ;
99+ const chatTestLinkHtml = agent .is_public ?
100+ ` <a href= "chat/${ agent .id } " class="btn btn-primary float-end" target="_blank"><i class="bx bx-chat"></i></a>` :
101+ ' ' ;
98102 let html = ` <span class="h6">${ agent .name } </span>${ chatTestLinkHtml} ` ;
99103 if (agent .type == " static" ) {
100104 const taskLinkHtml = ` <a href= "page/agent/${ agent .id } /task" class="btn btn-primary float-end" target="_blank"><i class="bx bx-task"></i></a>` ;
Original file line number Diff line number Diff line change 217217 < td>< span class = " badge bg-success" > {task .enabled ? " Enabled" : " Disabled" }< / span>< / td>
218218 < td>
219219 < ul class = " list-unstyled hstack gap-1 mb-0" >
220- < li data- bs- toggle= " tooltip" data- bs- placement= " top" title= " Execute " >
220+ < li data- bs- toggle= " tooltip" data- bs- placement= " top" title= " View " >
221221 < a href= " page/task/{task.id}?agentId={task.agent_id}" target= " _blank" class = " btn btn-sm btn-soft-danger" >
222222 < i class = " mdi mdi-eye-outline" / >
223223 < / a>
You can’t perform that action at this time.
0 commit comments