diff --git a/LICENSE b/LICENSE index cd91750fb380..ee3d6be71bdd 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2024 Logspace +Copyright (c) 2024 Langflow Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/docs/docusaurus.config.js b/docs/docusaurus.config.js index f64b180c763d..8f9302cfdb97 100644 --- a/docs/docusaurus.config.js +++ b/docs/docusaurus.config.js @@ -7,11 +7,11 @@ module.exports = { title: "Langflow Documentation", tagline: "Langflow is a GUI for LangChain, designed with react-flow", favicon: "img/favicon.ico", - url: "https://logspace-ai.github.io", + url: "https://langflow-ai.github.io", baseUrl: "/", onBrokenLinks: "throw", onBrokenMarkdownLinks: "warn", - organizationName: "logspace-ai", + organizationName: "langflow-ai", projectName: "langflow", trailingSlash: false, staticDirectories: ["static"], @@ -131,7 +131,7 @@ module.exports = { }, footer: { links: [], - copyright: `Copyright © ${new Date().getFullYear()} Logspace.`, + copyright: `Copyright © ${new Date().getFullYear()} Langflow.`, }, zoom: { selector: ".markdown :not(a) > img:not(.no-zoom)", diff --git a/pyproject.toml b/pyproject.toml index 72f4ca20435b..fd629cc9fe26 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ name = "langflow" version = "1.0.0a24" description = "A Python package with a built-in web application" -authors = ["Logspace "] +authors = ["Langflow "] maintainers = [ "Carlos Coelho ", "Cristhian Zanforlin ", diff --git a/src/backend/base/langflow/services/settings/base.py b/src/backend/base/langflow/services/settings/base.py index 97f69c6c75db..db6ba1022bd2 100644 --- a/src/backend/base/langflow/services/settings/base.py +++ b/src/backend/base/langflow/services/settings/base.py @@ -121,7 +121,7 @@ def set_langflow_dir(cls, value): # Define the app name and author app_name = "langflow" - app_author = "logspace" + app_author = "langflow" # Get the cache directory for the application cache_dir = user_cache_dir(app_name, app_author) diff --git a/src/backend/base/pyproject.toml b/src/backend/base/pyproject.toml index 86366e534dd6..4a910b53aed7 100644 --- a/src/backend/base/pyproject.toml +++ b/src/backend/base/pyproject.toml @@ -2,7 +2,7 @@ name = "langflow-base" version = "0.0.36" description = "A Python package with a built-in web application" -authors = ["Logspace "] +authors = ["Langflow "] maintainers = [ "Carlos Coelho ", "Cristhian Zanforlin ", diff --git a/src/frontend/src/pages/FlowPage/index.tsx b/src/frontend/src/pages/FlowPage/index.tsx index a78a0f297b39..8fb7927026cf 100644 --- a/src/frontend/src/pages/FlowPage/index.tsx +++ b/src/frontend/src/pages/FlowPage/index.tsx @@ -38,7 +38,7 @@ export default function FlowPage({ view }: { view?: boolean }): JSX.Element { {version &&
Langflow 🤝 DataStax
}
⛓️ v{version}
diff --git a/src/frontend/src/stores/darkStore.tsx b/src/frontend/src/stores/darkStore.tsx index 5b42b5dcf13c..84ee3308ef36 100644 --- a/src/frontend/src/stores/darkStore.tsx +++ b/src/frontend/src/stores/darkStore.tsx @@ -27,7 +27,7 @@ export const useDarkStore = create((set, get) => ({ // if lastUpdated is null or the difference is greater than 2 hours if (lastUpdated === null || diff > 7200000) { - getRepoStars("logspace-ai", "langflow").then((res) => { + getRepoStars("langflow-ai", "langflow").then((res) => { window.localStorage.setItem("githubStars", res.toString()); window.localStorage.setItem( "githubStarsLastUpdated", diff --git a/src/frontend/src/style/applies.css b/src/frontend/src/style/applies.css index 8900938bfd7f..268f838eb871 100644 --- a/src/frontend/src/style/applies.css +++ b/src/frontend/src/style/applies.css @@ -205,11 +205,11 @@ .flow-page-positioning { @apply h-full w-full overflow-hidden; } - .logspace-page-icon { + .langflow-page-icon { @apply absolute bottom-2 left-7 flex h-6 cursor-pointer flex-col items-center justify-start overflow-hidden rounded-lg bg-foreground px-2 text-center font-sans text-xs tracking-wide text-secondary transition-all duration-500 ease-in-out; } - .logspace-page-icon:hover { + .langflow-page-icon:hover { @apply hover:h-12; }