├── .env.example ├── .gitignore ├── README.md ├── agents ├── .DS_Store ├── langchain_competition_analysis_agent │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── agent.py │ ├── env.example │ ├── poetry.lock │ ├── pyproject.toml │ ├── requirements.txt │ └── tools │ │ ├── email.py │ │ ├── hackernews.py │ │ └── producthunt.py ├── openai_cooking_assistant.py ├── openai_github_startgazers_analyser │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── env.example │ ├── poetry.lock │ ├── pyproject.toml │ └── stargazer_agent.py └── openai_reddit_researcher.py ├── basic_usage ├── async │ └── basic.py ├── authentication │ └── auth.py ├── data_extraction │ ├── ask_unread_emails.py │ ├── extract_ig_dm_posts.py │ ├── google_analytics.py │ ├── level_1_yc_companies.py │ ├── level_2_yc_companies.py │ └── level_3_yc_companies.py ├── interactions │ └── send_email.py ├── navigation │ └── several_tabs.py └── remote_hosting │ └── basic.py ├── poetry.lock ├── pyproject.toml ├── quickstart ├── hello_world.py └── markdown.py └── requirements.txt /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dendrite-systems/dendrite-examples/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dendrite-systems/dendrite-examples/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dendrite-systems/dendrite-examples/HEAD/README.md -------------------------------------------------------------------------------- /agents/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dendrite-systems/dendrite-examples/HEAD/agents/.DS_Store -------------------------------------------------------------------------------- /agents/langchain_competition_analysis_agent/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dendrite-systems/dendrite-examples/HEAD/agents/langchain_competition_analysis_agent/.gitignore -------------------------------------------------------------------------------- /agents/langchain_competition_analysis_agent/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dendrite-systems/dendrite-examples/HEAD/agents/langchain_competition_analysis_agent/LICENSE -------------------------------------------------------------------------------- /agents/langchain_competition_analysis_agent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dendrite-systems/dendrite-examples/HEAD/agents/langchain_competition_analysis_agent/README.md -------------------------------------------------------------------------------- /agents/langchain_competition_analysis_agent/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dendrite-systems/dendrite-examples/HEAD/agents/langchain_competition_analysis_agent/agent.py -------------------------------------------------------------------------------- /agents/langchain_competition_analysis_agent/env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dendrite-systems/dendrite-examples/HEAD/agents/langchain_competition_analysis_agent/env.example -------------------------------------------------------------------------------- /agents/langchain_competition_analysis_agent/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dendrite-systems/dendrite-examples/HEAD/agents/langchain_competition_analysis_agent/poetry.lock -------------------------------------------------------------------------------- /agents/langchain_competition_analysis_agent/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dendrite-systems/dendrite-examples/HEAD/agents/langchain_competition_analysis_agent/pyproject.toml -------------------------------------------------------------------------------- /agents/langchain_competition_analysis_agent/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dendrite-systems/dendrite-examples/HEAD/agents/langchain_competition_analysis_agent/requirements.txt -------------------------------------------------------------------------------- /agents/langchain_competition_analysis_agent/tools/email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dendrite-systems/dendrite-examples/HEAD/agents/langchain_competition_analysis_agent/tools/email.py -------------------------------------------------------------------------------- /agents/langchain_competition_analysis_agent/tools/hackernews.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dendrite-systems/dendrite-examples/HEAD/agents/langchain_competition_analysis_agent/tools/hackernews.py -------------------------------------------------------------------------------- /agents/langchain_competition_analysis_agent/tools/producthunt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dendrite-systems/dendrite-examples/HEAD/agents/langchain_competition_analysis_agent/tools/producthunt.py -------------------------------------------------------------------------------- /agents/openai_cooking_assistant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dendrite-systems/dendrite-examples/HEAD/agents/openai_cooking_assistant.py -------------------------------------------------------------------------------- /agents/openai_github_startgazers_analyser/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dendrite-systems/dendrite-examples/HEAD/agents/openai_github_startgazers_analyser/.gitignore -------------------------------------------------------------------------------- /agents/openai_github_startgazers_analyser/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dendrite-systems/dendrite-examples/HEAD/agents/openai_github_startgazers_analyser/LICENSE -------------------------------------------------------------------------------- /agents/openai_github_startgazers_analyser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dendrite-systems/dendrite-examples/HEAD/agents/openai_github_startgazers_analyser/README.md -------------------------------------------------------------------------------- /agents/openai_github_startgazers_analyser/env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dendrite-systems/dendrite-examples/HEAD/agents/openai_github_startgazers_analyser/env.example -------------------------------------------------------------------------------- /agents/openai_github_startgazers_analyser/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dendrite-systems/dendrite-examples/HEAD/agents/openai_github_startgazers_analyser/poetry.lock -------------------------------------------------------------------------------- /agents/openai_github_startgazers_analyser/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dendrite-systems/dendrite-examples/HEAD/agents/openai_github_startgazers_analyser/pyproject.toml -------------------------------------------------------------------------------- /agents/openai_github_startgazers_analyser/stargazer_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dendrite-systems/dendrite-examples/HEAD/agents/openai_github_startgazers_analyser/stargazer_agent.py -------------------------------------------------------------------------------- /agents/openai_reddit_researcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dendrite-systems/dendrite-examples/HEAD/agents/openai_reddit_researcher.py -------------------------------------------------------------------------------- /basic_usage/async/basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dendrite-systems/dendrite-examples/HEAD/basic_usage/async/basic.py -------------------------------------------------------------------------------- /basic_usage/authentication/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dendrite-systems/dendrite-examples/HEAD/basic_usage/authentication/auth.py -------------------------------------------------------------------------------- /basic_usage/data_extraction/ask_unread_emails.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dendrite-systems/dendrite-examples/HEAD/basic_usage/data_extraction/ask_unread_emails.py -------------------------------------------------------------------------------- /basic_usage/data_extraction/extract_ig_dm_posts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dendrite-systems/dendrite-examples/HEAD/basic_usage/data_extraction/extract_ig_dm_posts.py -------------------------------------------------------------------------------- /basic_usage/data_extraction/google_analytics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dendrite-systems/dendrite-examples/HEAD/basic_usage/data_extraction/google_analytics.py -------------------------------------------------------------------------------- /basic_usage/data_extraction/level_1_yc_companies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dendrite-systems/dendrite-examples/HEAD/basic_usage/data_extraction/level_1_yc_companies.py -------------------------------------------------------------------------------- /basic_usage/data_extraction/level_2_yc_companies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dendrite-systems/dendrite-examples/HEAD/basic_usage/data_extraction/level_2_yc_companies.py -------------------------------------------------------------------------------- /basic_usage/data_extraction/level_3_yc_companies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dendrite-systems/dendrite-examples/HEAD/basic_usage/data_extraction/level_3_yc_companies.py -------------------------------------------------------------------------------- /basic_usage/interactions/send_email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dendrite-systems/dendrite-examples/HEAD/basic_usage/interactions/send_email.py -------------------------------------------------------------------------------- /basic_usage/navigation/several_tabs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dendrite-systems/dendrite-examples/HEAD/basic_usage/navigation/several_tabs.py -------------------------------------------------------------------------------- /basic_usage/remote_hosting/basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dendrite-systems/dendrite-examples/HEAD/basic_usage/remote_hosting/basic.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dendrite-systems/dendrite-examples/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dendrite-systems/dendrite-examples/HEAD/pyproject.toml -------------------------------------------------------------------------------- /quickstart/hello_world.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dendrite-systems/dendrite-examples/HEAD/quickstart/hello_world.py -------------------------------------------------------------------------------- /quickstart/markdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dendrite-systems/dendrite-examples/HEAD/quickstart/markdown.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dendrite-systems/dendrite-examples/HEAD/requirements.txt --------------------------------------------------------------------------------