We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 40c71dc + fc6355f commit d2ae760Copy full SHA for d2ae760
src/renderer/App.tsx
@@ -25,6 +25,7 @@ import {
25
ExperimentInfoProvider,
26
useExperimentInfo,
27
} from './lib/ExperimentInfoContext';
28
+import * as chatAPI from './lib/transformerlab-api-sdk';
29
30
type AppContentProps = {
31
connection: string;
@@ -151,7 +152,11 @@ function AppContent({
151
152
width: '100%',
153
}}
154
>
- <OutputTerminal initialMessage="** Running a Model will Display Output Here **" />
155
+ <OutputTerminal
156
+ key={connection}
157
+ logEndpoint={chatAPI.Endpoints.ServerInfo.StreamLog()}
158
+ initialMessage="** Running a Model will Display Output Here **"
159
+ />
160
</Box>
161
162
<AutoUpdateModal />
0 commit comments