-
Notifications
You must be signed in to change notification settings - Fork 6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: add secret key loading functionality to basic templates #7363
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
italojohnny
approved these changes
Mar 31, 2025
ogabrielluiz
requested changes
Mar 31, 2025
src/backend/base/langflow/initial_setup/starter_projects/Meeting Summary.json
Show resolved
Hide resolved
src/backend/base/langflow/initial_setup/starter_projects/Search agent.json
Show resolved
Hide resolved
src/backend/base/langflow/initial_setup/starter_projects/Search agent.json
Show resolved
Hide resolved
src/backend/base/langflow/initial_setup/starter_projects/Simple Agent.json
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we add :
"ASTRA_DB_APPLICATION_TOKEN",
"ASTRA_DB_API_ENDPOINT"
in the Vector RAG template?
…ad data from the database instead of false
…ow into cz/api-keys-templates
…point configuration to correctly load from database 🐛 (Vector Store RAG.json): Fix value to "ASTRA_DB_API_ENDPOINT" for api_endpoint configuration to set the correct default value 🐛 (Vector Store RAG.json): Fix load_from_db value to true for API Endpoint configuration to correctly load from database 🐛 (Vector Store RAG.json): Fix value to "ASTRA_DB_APPLICATION_TOKEN" for application_token configuration to set the correct default value
good catch! |
…m_db was incorrectly set to false instead of true for certain fields in JSON files
ogabrielluiz
approved these changes
Mar 31, 2025
edwinjosechittilappilly
approved these changes
Mar 31, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
QDDCoder
pushed a commit
to QDDCoder/langflow
that referenced
this pull request
Apr 1, 2025
* commit '6c2ff92ccf083f038d9a97a749b4e0f30a60247a': (255 commits) docs: Update documentation and add TAVILY_API_KEY to environment variables (langflow-ai#7366) docs: mcp server component and integrations (langflow-ai#7286) docs: v1.3 (langflow-ai#7160) chore(deps-dev): bump vite from 5.4.14 to 5.4.16 in /src/frontend (langflow-ai#7365) fix: add secret key loading functionality to basic templates (langflow-ai#7363) docs: platform content (langflow-ai#7091) chore: bump langflow and langflow-base for 1.3.0 release (langflow-ai#7362) docs: ensure asset paths update on draft rebuilds (langflow-ai#7355) fix: Prevent API key banner from displaying when key is unavailable (langflow-ai#7356) fix: MCP SSE Model tool mode issue (langflow-ai#7360) feat: deprecate Parsing component and replace them in starter projects (langflow-ai#6697) fix: fixed the parser component (langflow-ai#7303) ref: split ast parsing / class exec loops (langflow-ai#7248) feat: Update AgentQL templates (langflow-ai#7165) feat: add a unified local vector store (langflow-ai#6995) fix: update currentflow to be fetched from Flow Store for icon to be rendered correctly (langflow-ai#7354) feat: expose serialization truncation constants in /config route (langflow-ai#7316) feat: lmprove MCP langflow port selection and error handling (langflow-ai#7327) fix: adds priority sorting for sidebar components and makes LanguageModel appear first (langflow-ai#7322) fix: make agent work with new tool mode backend updates (langflow-ai#7314) ... # Conflicts: # src/frontend/src/utils/styleUtils.ts 更新到V1.3.0
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request includes updates to several starter project configuration files in the
src/backend/base/langflow/initial_setup/starter_projects
directory. The changes primarily involve setting default values for API keys and adjusting a specific property for the YouTube Analysis project.API Key Default Values:
Blog Writer.json
: Set default value forvalue
toOPENAI_API_KEY
.Document Q&A.json
: Set default value forvalue
toOPENAI_API_KEY
.Financial Report Parser.json
: Set default value forvalue
toOPENAI_API_KEY
.Image Sentiment Analysis.json
: Set default value forvalue
toOPENAI_API_KEY
.LoopTemplate.json
: Set default value forvalue
toOPENAI_API_KEY
.Market Research.json
: Set default values forvalue
toOPENAI_API_KEY
andTAVILY_API_KEY
. [1] [2] [3]Meeting Summary.json
: Set default values forvalue
toASSEMBLYAI_API_KEY
andOPENAI_API_KEY
. [1] [2] [3] [4]News Aggregator.json
: Set default values forvalue
toAGENTQL_API_KEY
andOPENAI_API_KEY
. [1] [2]Portfolio Website Code Generator.json
: Set default value forvalue
toANTHROPIC_API_KEY
. [1] [2]Price Deal Finder.json
: Set default values forvalue
toTAVILY_API_KEY
,AGENTQL_API_KEY
, andOPENAI_API_KEY
. [1] [2] [3]Search agent.json
: Set default values forvalue
toSCRAPEGRAPH_API_KEY
andOPENAI_API_KEY
. [1] [2]Simple Agent.json
: Set default value forvalue
toOPENAI_API_KEY
.Text Sentiment Analysis.json
: Set default value forvalue
toOPENAI_API_KEY
. [1] [2] [3]Vector Store RAG.json
: Set default value forvalue
toOPENAI_API_KEY
.Youtube Analysis.json
: Set default values forvalue
toYOUTUBE_API_KEY
andOPENAI_API_KEY
. [1] [2] [3]Property Adjustment:
Youtube Analysis.json
: Changedload_from_db
property fromfalse
totrue
.