mirror of
https://github.com/khoaliber/khoj.git
synced 2026-03-05 05:39:11 +00:00
Add support for generating dynamic diagrams in flow with Excalidraw (https://github.com/excalidraw/excalidraw). This happens in three steps: 1. Default information collection & intent determination step. 2. Improving the overall guidance of the prompt for generating a JSON, Excalidraw-compatible declaration. 3. Generation of the diagram to output to the final UI. Add support in the web UI.
21 lines
357 B
CSS
21 lines
357 B
CSS
div.chatHistory {
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 100%;
|
|
margin: auto;
|
|
}
|
|
|
|
div.agentIndicator a {
|
|
display: flex;
|
|
text-align: center;
|
|
align-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
div.trainOfThought {
|
|
border: 1px var(--border-color) solid;
|
|
border-radius: 16px;
|
|
padding: 8px 16px;
|
|
margin: 12px;
|
|
}
|