* add empty conversation model selection Signed-off-by: James <james@jan.ai> * chore: using secondary button instead of sidebar button Signed-off-by: James <james@jan.ai> --------- Signed-off-by: James <james@jan.ai> Co-authored-by: James <james@jan.ai>
15 lines
368 B
TypeScript
15 lines
368 B
TypeScript
import React from "react";
|
|
import SelectModels from "../ModelSelector";
|
|
import InputToolbar from "../InputToolbar";
|
|
|
|
const EmptyChatContainer: React.FC = () => (
|
|
<div className="flex flex-col flex-1">
|
|
<div className="flex flex-1 items-center justify-center">
|
|
<SelectModels />
|
|
</div>
|
|
<InputToolbar />
|
|
</div>
|
|
);
|
|
|
|
export default EmptyChatContainer;
|