forked from langchain-ai/social-media-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.quickstart.example
More file actions
29 lines (23 loc) · 1.06 KB
/
.env.quickstart.example
File metadata and controls
29 lines (23 loc) · 1.06 KB
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
# For LangSmith tracing
LANGCHAIN_API_KEY=
LANGCHAIN_TRACING_V2=true
# For LLM generations
ANTHROPIC_API_KEY=
# For web scraping
FIRECRAWL_API_KEY=
# Arcade API key - used for fetching Tweets, and scheduling LinkedIn/Twitter posts
ARCADE_API_KEY=
# Setting this to false will not use Arcade for reading, or posting Tweets
USE_ARCADE_AUTH="true"
# Set this to true if your LinkedIn account is tied to a company page, and you want
# to post from the company page
POST_TO_LINKEDIN_ORGANIZATION="false"
# The Twitter/LinkedIn user ID/email/username of the account you want to use to post from
# This field can be passed via configurable fields (`twitterUserId`, `linkedinUserId`),
# _or_ set as an environment variable here.
TWITTER_USER_ID=
LINKEDIN_USER_ID=
# Whether or not to skip the verification step. If "true", all links will be assumed to be valid.
SKIP_CONTENT_RELEVANCY_CHECK="false"
# Whether or not to skip the used URLs check. If "true", the graph will not prevent duplicate links from being used, or save those links for future checks.
SKIP_USED_URLS_CHECK="false"