Merge pull request #7 from ocodo/main
Browse files- .env.example +1 -1
- app/components/chat/BaseChat.tsx +1 -1
.env.example
CHANGED
|
@@ -26,7 +26,7 @@ OPEN_ROUTER_API_KEY=
|
|
| 26 |
GOOGLE_GENERATIVE_AI_API_KEY=
|
| 27 |
|
| 28 |
# You only need this environment variable set if you want to use oLLAMA models
|
| 29 |
-
#EXAMPLE http://localhost:11434
|
| 30 |
OLLAMA_API_BASE_URL=
|
| 31 |
|
| 32 |
# Include this environment variable if you want more logging for debugging locally
|
|
|
|
| 26 |
GOOGLE_GENERATIVE_AI_API_KEY=
|
| 27 |
|
| 28 |
# You only need this environment variable set if you want to use oLLAMA models
|
| 29 |
+
# EXAMPLE http://localhost:11434
|
| 30 |
OLLAMA_API_BASE_URL=
|
| 31 |
|
| 32 |
# Include this environment variable if you want more logging for debugging locally
|
app/components/chat/BaseChat.tsx
CHANGED
|
@@ -116,7 +116,7 @@ export const BaseChat = React.forwardRef<HTMLDivElement, BaseChatProps>(
|
|
| 116 |
data-chat-visible={showChat}
|
| 117 |
>
|
| 118 |
<ClientOnly>{() => <Menu />}</ClientOnly>
|
| 119 |
-
<div ref={scrollRef} className="flex overflow-
|
| 120 |
<div className={classNames(styles.Chat, 'flex flex-col flex-grow min-w-[var(--chat-min-width)] h-full')}>
|
| 121 |
{!chatStarted && (
|
| 122 |
<div id="intro" className="mt-[26vh] max-w-chat mx-auto">
|
|
|
|
| 116 |
data-chat-visible={showChat}
|
| 117 |
>
|
| 118 |
<ClientOnly>{() => <Menu />}</ClientOnly>
|
| 119 |
+
<div ref={scrollRef} className="flex overflow-y-auto w-full h-full">
|
| 120 |
<div className={classNames(styles.Chat, 'flex flex-col flex-grow min-w-[var(--chat-min-width)] h-full')}>
|
| 121 |
{!chatStarted && (
|
| 122 |
<div id="intro" className="mt-[26vh] max-w-chat mx-auto">
|