-
Notifications
You must be signed in to change notification settings - Fork 6
Home
nqngo edited this page Feb 2, 2024
·
6 revisions
The current design of this bot provides 2 command function on Discord.
-
/askllm <query(required):the question to ask the LLM, similar to chatGPT> <model(optional):selectable model available>
: Submit the question directly to the LLM backend. -
/reviewresume <url(required):link to the chat>
Fetch the attached PDF in the linked chat and feed to LLM backend to review. Will require the use of PDF parser. This command could also be a context command.
flowchart LR
subgraph docker
Ollama <-- API --> monolithbot
Ollama <--> B[NVIDIA Container Toolkit]
end
monolithbot -. websocket .-> Discord
flowchart LR
subgraph docker
Ollama <-- API --> A[askllm bot] & R[resumereview bot]
Ollama <--> B[NVIDIA Container Toolkit]
end
A & R -. websocket .-> Discord