You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+8Lines changed: 8 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -106,5 +106,13 @@ npm install
106
106
npm run dev
107
107
```
108
108
109
+
### LLM calls
110
+
- The system prompt for all LLM queries is defined in backend/app/utils/system_prompt.py
111
+
- LLM queries in Search page are defined at frontend/app/search/[bmid]/page.tsx, value is prefixed with the text defined in the ChatBox component in the same file.
112
+
- LLM queries in Chat page are defined at frontend/app/chat/[bmid]/page.tsx, value is prefixed with the text defined in the ChatBox component in the same file.
113
+
- The returned results are formatted in frontend/components, e.g. hyperlinks to model details are inserted in frontend/components/ChatBox.tsx
114
+
- The RAG is using the knowledge base populated by the Admin.
115
+
116
+
109
117
## 📄 License
110
118
This project is part of Google Summer of Code and is licensed under the MIT License.
0 commit comments