-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
80 lines (80 loc) · 3.02 KB
/
app.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "Tableau Langchain",
"description": "Tableau tools for Agentic use cases with Langgraph",
"repository": "https://github.com/Tab-SE/tableau_langchain",
"keywords": ["python", "tableau", "langchain", "langgraph", "agents", "tools", "ai"],
"env": {
"DEBUG": {
"description": "Controls how much logging occurs during Agent operations can be 1 or 0",
"value": "0"
},
"OPENAI_API_KEY": {
"description": "OpenAI API Key required for using ChatGPT",
"value": ""
},
"AGENT_MODEL": {
"description": "LLM model used by the Agent such as (gpt-4o-mini)",
"value": "gpt-4o-mini"
},
"RETRIEVER_MODEL": {
"description": "Embedding model used by Retriever Tools such as (text-embedding-3-small)",
"value": "text-embedding-3-small"
},
"LANGCHAIN_TRACING_V2": {
"description": "Boolean either true or false for agent tracing on Langsmith",
"value": "true"
},
"LANGCHAIN_ENDPOINT": {
"description": "Service for hosting agent traces for analysis (Langsmith)",
"value": "https://api.smith.langchain.com"
},
"LANGCHAIN_API_KEY": {
"description": "Langchain API Key for using Langsmith",
"value": ""
},
"LANGCHAIN_PROJECT": {
"description": "Project containing agent traces on Langsmith",
"value": ""
},
"TAVILY_API_KEY": {
"description": "API Key for Web Search via the Tavily service",
"value": ""
},
"PINECONE_API_KEY": {
"description": "API Key for managing serverless vector databases on Pinecone",
"value": ""
},
"PINECONE_ENVIRONMENT": {
"description": "The cloud environment hosting the Pinecone serverless vector databases",
"value": ""
},
"TABLEAU_DOMAIN": {
"description": "Hostname for your Tableau Cloud environment",
"value": ""
},
"TABLEAU_SITE": {
"description": "Tableau Site Name (or contentUrl)",
"value": ""
},
"TABLEAU_API": {
"description": "Version of the Tableau REST API used for some Agent operations",
"value": "3.21"
},
"TABLEAU_JWT_CLIENT_ID": {
"description": "Client ID from an enabled Tableau Connected App used for JWT authentication",
"value": ""
},
"TABLEAU_JWT_SECRET_ID": {
"description": "Secret ID from an enabled Tableau Connected App used for JWT authentication",
"value": ""
},
"TABLEAU_JWT_SECRET": {
"description": "Secret from an enabled Tableau Connected App used for JWT authentication",
"value": ""
},
"TABLEAU_USER": {
"description": "A valid Tableau user for access to the analytics environment",
"value": ""
}
}
}