mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-07-07 04:12:10 +02:00
20 lines
467 B
TypeScript
20 lines
467 B
TypeScript
|
|
import React from "react";
|
||
|
|
import { Bot } from "lucide-react";
|
||
|
|
import PageHeader from "../components/common/PageHeader";
|
||
|
|
import LLMModels from "../components/llm-models/LLMModels";
|
||
|
|
|
||
|
|
const LLMModelsPage: React.FC = () => {
|
||
|
|
return (
|
||
|
|
<>
|
||
|
|
<PageHeader
|
||
|
|
icon={<Bot />}
|
||
|
|
title="LLM Models"
|
||
|
|
description="Manage available LLM model options and set the default model"
|
||
|
|
/>
|
||
|
|
<LLMModels />
|
||
|
|
</>
|
||
|
|
);
|
||
|
|
};
|
||
|
|
|
||
|
|
export default LLMModelsPage;
|