We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3550d75 commit 05e73bfCopy full SHA for 05e73bf
2 files changed
.gitignore
@@ -1,4 +1,5 @@
1
.env*
2
+!.env.example
3
.env
4
.vscode
5
.idea
agents/base/langflow_simple_tool_calling_agent/local/.env.example
@@ -0,0 +1,11 @@
+# PostgreSQL
+POSTGRES_USER=langflow
+POSTGRES_PASSWORD=langflow
+POSTGRES_DB=langflow
+
6
+# Ollama — model to pull on first run
7
+OLLAMA_MODEL=qwen2.5:7b
8
9
+# To use a remote model endpoint instead of Ollama, set:
10
+# OPENAI_API_BASE=https://your-cluster-model-endpoint/v1
11
+# OPENAI_API_KEY=your-key
0 commit comments