UNPKG

n8n-editor-ui

Version:

Workflow Editor UI for n8n

31 lines (30 loc) 1.36 kB
const CHAT_VIEW = "chat"; const CHAT_CONVERSATION_VIEW = "chat-conversation"; const CHAT_AGENTS_VIEW = "chat-agents"; const CHAT_SETTINGS_VIEW = "chat-settings"; const CHAT_STORE = "chatStore"; const providerDisplayNames = { openai: "OpenAI", anthropic: "Anthropic", google: "Google", azureOpenAi: "Azure (API Key)", azureEntraId: "Azure (Entra ID)", ollama: "Ollama", awsBedrock: "AWS Bedrock", vercelAiGateway: "Vercel AI Gateway", xAiGrok: "xAI Grok", groq: "Groq", openRouter: "OpenRouter", deepSeek: "DeepSeek", cohere: "Cohere", mistralCloud: "Mistral Cloud", n8n: "n8n", "custom-agent": "Custom Agent" }; const MOBILE_MEDIA_QUERY = "(max-width: 768px)"; const TOOLS_SELECTOR_MODAL_KEY = "toolsSelectorModal"; const AGENT_EDITOR_MODAL_KEY = "agentEditorModal"; const CHAT_CREDENTIAL_SELECTOR_MODAL_KEY = "chatCredentialSelectorModal"; const CHAT_MODEL_BY_ID_SELECTOR_MODAL_KEY = "chatModelByIdSelectorModal"; const CHAT_PROVIDER_SETTINGS_MODAL_KEY = "chatProviderSettingsModal"; export { CHAT_MODEL_BY_ID_SELECTOR_MODAL_KEY as a, CHAT_STORE as c, TOOLS_SELECTOR_MODAL_KEY as d, providerDisplayNames as f, CHAT_CREDENTIAL_SELECTOR_MODAL_KEY as i, CHAT_VIEW as l, CHAT_AGENTS_VIEW as n, CHAT_PROVIDER_SETTINGS_MODAL_KEY as o, CHAT_CONVERSATION_VIEW as r, CHAT_SETTINGS_VIEW as s, AGENT_EDITOR_MODAL_KEY as t, MOBILE_MEDIA_QUERY as u };