You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
688 B
TypeScript
25 lines
688 B
TypeScript
import AgentChat from './AgentChat';
|
|
import AgentMeta from './AgentMeta';
|
|
import AgentModal from './AgentModal';
|
|
import AgentPlugin from './AgentPlugin';
|
|
import AgentPrompt from './AgentPrompt';
|
|
import AgentTTS from './AgentTTS';
|
|
import StoreUpdater, { StoreUpdaterProps } from './StoreUpdater';
|
|
import { Provider, createStore } from './store';
|
|
|
|
type AgentSettingsProps = StoreUpdaterProps;
|
|
|
|
export const AgentSettings = (props: AgentSettingsProps) => {
|
|
return (
|
|
<Provider createStore={createStore}>
|
|
<StoreUpdater {...props} />
|
|
<AgentPrompt />
|
|
<AgentMeta />
|
|
<AgentChat />
|
|
<AgentModal />
|
|
<AgentTTS />
|
|
<AgentPlugin />
|
|
</Provider>
|
|
);
|
|
};
|