We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd30ba0 commit 73085f1Copy full SHA for 73085f1
.env.template
@@ -5,7 +5,7 @@ VITE_GALLERY_WEBSITE_URL="http://localhost:3000"
5
VITE_GALLERY_API_URL="http://localhost:3100"
6
7
# note that the rag api key identifies the client and is exposed client-side
8
-VITE_RAG_QUERY_API_URL="http://localhost:8080/api/v1/gemini"
+VITE_RAG_QUERY_API_URL="http://localhost:8080/api/v1/gemini/models"
9
VITE_RAG_QUERY_API_KEY="RAG_QUERY_API_KEY"
10
11
# theme configurations
src/components/Home/HeroSection.tsx
@@ -82,6 +82,7 @@ const HeroSection = (): JSX.Element => {
82
'X-API-KEY': import.meta.env.VITE_RAG_QUERY_API_KEY,
83
},
84
}),
85
+ historySize: 20,
86
outputType: 'character',
87
88
renderMarkdown: ['BOT'],
0 commit comments