├── .github └── workflows │ └── stale.yml ├── .gitignore ├── CrewAI-LangGraph ├── .env.example ├── .gitignore ├── CrewAI-LangGraph.png ├── README.md ├── __init__.py ├── main.py ├── requirements.txt └── src │ ├── __init__.py │ ├── crew │ ├── agents.py │ ├── crew.py │ ├── tasks.py │ └── tools.py │ ├── graph.py │ ├── nodes.py │ └── state.py ├── Notebooks ├── CrewAI Flows & Langgraph │ ├── Coding Assistant │ │ └── coding_assistant_eval.ipynb │ └── QA Agent │ │ ├── crewai.ipynb │ │ ├── crewai_flow.html │ │ ├── db │ │ ├── chroma.sqlite3 │ │ └── eb595800-58e8-4a23-b57f-60dad6aaadea │ │ │ ├── data_level0.bin │ │ │ ├── header.bin │ │ │ ├── length.bin │ │ │ └── link_lists.bin │ │ └── laggraph.ipynb └── Flows │ ├── Landing Page Flow │ └── landing_page_flow.ipynb │ └── Simple QA Crew + Flow │ ├── crewai_flow.html │ ├── db │ ├── 9b1e5adc-9f74-43a5-a2b8-180c85535334 │ │ ├── data_level0.bin │ │ ├── header.bin │ │ ├── length.bin │ │ └── link_lists.bin │ └── chroma.sqlite3 │ └── simple_qa_agentic_flow.ipynb ├── README.md ├── azure_model ├── .env.example ├── .gitignore ├── README.md ├── main.py ├── poetry.lock └── pyproject.toml ├── email_auto_responder_flow ├── .gitignore ├── Automating_Tasks_with_CrewAI.md ├── Email_Flow.png ├── README.md ├── pyproject.toml └── src │ └── email_auto_responder_flow │ ├── __init__.py │ ├── crews │ └── email_filter_crew │ │ ├── config │ │ ├── agents.yaml │ │ └── tasks.yaml │ │ └── email_filter_crew.py │ ├── main.py │ ├── tools │ └── create_draft.py │ ├── types.py │ └── utils │ └── emails.py ├── game-builder-crew ├── .env.example ├── .gitignore ├── README.md ├── poetry.lock ├── pyproject.toml └── src │ └── game_builder_crew │ ├── __init__.py │ ├── config │ ├── agents.yaml │ ├── gamedesign.yaml │ └── tasks.yaml │ ├── crew.py │ └── main.py ├── instagram_post ├── .env.example ├── .gitignore ├── README.md ├── agents.py ├── main.py ├── poetry.lock ├── pyproject.toml ├── tasks.py └── tools │ ├── __init__.py │ ├── __pycache__ │ ├── browser_tools.cpython-311.pyc │ └── search_tools.cpython-311.pyc │ ├── browser_tools.py │ └── search_tools.py ├── job-posting ├── .env.example ├── .gitignore ├── README.md ├── pyproject.toml └── src │ └── job_posting │ ├── __init__.py │ ├── config │ ├── agents.yaml │ └── tasks.yaml │ ├── crew.py │ ├── job_description_example.md │ └── main.py ├── landing_page_generator ├── .env.example ├── .gitignore ├── README.md ├── poetry.lock ├── pyproject.toml └── src │ └── landing_page_generator │ ├── __init__.py │ ├── config │ ├── agents.yaml │ ├── tasks.yaml │ └── templates.json │ ├── crew.py │ ├── main.py │ ├── templates │ └── templates_here.txt │ └── tools │ ├── __init__.py │ ├── browser_tools.py │ ├── file_tools.py │ ├── search_tools.py │ └── template_tools.py ├── lead-score-flow ├── .gitignore ├── Automating_Tasks_with_CrewAI.md ├── README.md ├── pyproject.toml └── src │ └── lead_score_flow │ ├── __init__.py │ ├── constants.py │ ├── crews │ ├── lead_response_crew │ │ ├── config │ │ │ ├── agents.yaml │ │ │ └── tasks.yaml │ │ └── lead_response_crew.py │ └── lead_score_crew │ │ ├── config │ │ ├── agents.yaml │ │ └── tasks.yaml │ │ └── lead_score_crew.py │ ├── leads.csv │ ├── main.py │ ├── types.py │ └── utils │ └── candidateUtils.py ├── markdown_validator ├── .env.example ├── .gitignore ├── README.md ├── poetry.lock ├── pyproject.toml └── src │ └── markdown_validator │ ├── __init__.py │ ├── config │ ├── agents.yaml │ └── tasks.yaml │ ├── crew.py │ ├── main.py │ └── tools │ └── markdownTools.py ├── marketing_strategy ├── .env.example ├── README.md ├── pyproject.toml ├── src │ └── marketing_posts │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-311.pyc │ │ ├── crew.cpython-311.pyc │ │ └── main.cpython-311.pyc │ │ ├── config │ │ ├── agents.yaml │ │ └── tasks.yaml │ │ ├── crew.py │ │ └── main.py ├── trained_agents_data.pkl └── uv.lock ├── match_profile_to_positions ├── .env.example ├── README.md ├── db │ └── chroma.sqlite3 ├── poetry.lock ├── pyproject.toml ├── src │ └── match_to_proposal │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-311.pyc │ │ ├── crew.cpython-311.pyc │ │ └── main.cpython-311.pyc │ │ ├── config │ │ ├── agents.yaml │ │ └── tasks.yaml │ │ ├── crew.py │ │ ├── data │ │ ├── cv.md │ │ └── jobs.csv │ │ ├── main.py │ │ └── tools │ │ ├── __init__.py │ │ └── job_db_connect.py └── trained_agents_data.pkl ├── meeting_assistant_flow ├── .gitignore ├── README.md ├── meeting_notes.txt ├── pyproject.toml └── src │ └── meeting_assistant_flow │ ├── __init__.py │ ├── crews │ └── meeting_assistant_crew │ │ ├── config │ │ ├── agents.yaml │ │ └── tasks.yaml │ │ └── meeting_assistant_crew.py │ ├── main.py │ ├── types.py │ └── utils │ ├── slack_helper.py │ └── trello_helper.py ├── meta_quest_knowledge ├── .gitignore ├── README.md ├── knowledge │ ├── meta_quest_manual.pdf │ └── user_preference.txt ├── pyproject.toml ├── src │ └── meta_quest_knowledge │ │ ├── __init__.py │ │ ├── config │ │ ├── agents.yaml │ │ └── tasks.yaml │ │ ├── crew.py │ │ ├── main.py │ │ └── tools │ │ └── __init__.py └── uv.lock ├── nvidia_models ├── intro │ ├── .env.example │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── main.py │ ├── pyproject.toml │ └── scripts │ │ ├── check_pydantic.sh │ │ └── lint_imports.sh └── marketing_strategy │ ├── .env.example │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── marketing_posts.ipynb │ ├── pyproject.toml │ ├── scripts │ ├── check_pydantic.sh │ └── lint_imports.sh │ └── src │ └── marketing_posts │ ├── __init__.py │ ├── config │ ├── agents.yaml │ └── tasks.yaml │ ├── crew.py │ ├── llm.py │ └── main.py ├── prep-for-a-meeting ├── .env.example ├── .gitignore ├── agents.py ├── main.py ├── requirements.txt ├── tasks.py └── tools │ ├── ExaSearchTool.py │ └── __init__.py ├── recruitment ├── .env.example ├── README.md ├── poetry.lock ├── pyproject.toml └── src │ └── recruitment │ ├── __init__.py │ ├── config │ ├── agents.yaml │ └── tasks.yaml │ ├── crew.py │ ├── main.py │ └── tools │ ├── __init__.py │ ├── client.py │ ├── driver.py │ └── linkedin.py ├── screenplay_writer ├── .env ├── README.md ├── config │ ├── agents.yaml │ └── tasks.yaml └── screenplay_writer.py ├── self_evaluation_loop_flow ├── .gitignore ├── README.md ├── crewai_flow.html ├── pyproject.toml ├── self_evaluation_loop_flow.png └── src │ └── self_evaluation_loop_flow │ ├── __init__.py │ ├── crews │ ├── shakespeare_crew │ │ ├── config │ │ │ ├── agents.yaml │ │ │ └── tasks.yaml │ │ └── shakespeare_crew.py │ └── x_post_review_crew │ │ ├── config │ │ ├── agents.yaml │ │ └── tasks.yaml │ │ └── x_post_review_crew.py │ ├── main.py │ └── tools │ ├── CharacterCounterTool.py │ └── __init__.py ├── starter_template ├── .env_example ├── .gitignore ├── README.md ├── agents.py ├── main.py └── tasks.py ├── stock_analysis ├── .env.example ├── .gitignore ├── README.md ├── pyproject.toml └── src │ └── stock_analysis │ ├── __init__.py │ ├── config │ ├── agents.yaml │ └── tasks.yaml │ ├── crew.py │ ├── main.py │ └── tools │ ├── __init__.py │ ├── calculator_tool.py │ └── sec_tools.py ├── surprise_trip ├── .env.example ├── README.md ├── poetry.lock ├── pyproject.toml ├── src │ └── surprise_travel │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-311.pyc │ │ ├── crew.cpython-311.pyc │ │ └── main.cpython-311.pyc │ │ ├── config │ │ ├── agents.yaml │ │ └── tasks.yaml │ │ ├── crew.py │ │ ├── main.py │ │ └── tools │ │ ├── __init__.py │ │ └── custom_tool.py ├── trained_agents_data.pkl └── training_data.pkl ├── trip_planner ├── .env.example ├── .gitignore ├── README.md ├── main.py ├── poetry.lock ├── pyproject.toml ├── tools │ ├── __init__.py │ ├── browser_tools.py │ ├── calculator_tools.py │ └── search_tools.py ├── trip_agents.py └── trip_tasks.py └── write_a_book_with_flows ├── .gitignore ├── Automating_Tasks_with_CrewAI.md ├── README.md ├── pyproject.toml └── src └── write_a_book_with_flows ├── __init__.py ├── crews ├── outline_book_crew │ ├── config │ │ ├── agents.yaml │ │ └── tasks.yaml │ └── outline_crew.py └── write_book_chapter_crew │ ├── config │ ├── agents.yaml │ └── tasks.yaml │ └── write_book_chapter_crew.py ├── main.py └── types.py /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .env -------------------------------------------------------------------------------- /CrewAI-LangGraph/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/CrewAI-LangGraph/.env.example -------------------------------------------------------------------------------- /CrewAI-LangGraph/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/CrewAI-LangGraph/.gitignore -------------------------------------------------------------------------------- /CrewAI-LangGraph/CrewAI-LangGraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/CrewAI-LangGraph/CrewAI-LangGraph.png -------------------------------------------------------------------------------- /CrewAI-LangGraph/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/CrewAI-LangGraph/README.md -------------------------------------------------------------------------------- /CrewAI-LangGraph/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CrewAI-LangGraph/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/CrewAI-LangGraph/main.py -------------------------------------------------------------------------------- /CrewAI-LangGraph/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/CrewAI-LangGraph/requirements.txt -------------------------------------------------------------------------------- /CrewAI-LangGraph/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CrewAI-LangGraph/src/crew/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/CrewAI-LangGraph/src/crew/agents.py -------------------------------------------------------------------------------- /CrewAI-LangGraph/src/crew/crew.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/CrewAI-LangGraph/src/crew/crew.py -------------------------------------------------------------------------------- /CrewAI-LangGraph/src/crew/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/CrewAI-LangGraph/src/crew/tasks.py -------------------------------------------------------------------------------- /CrewAI-LangGraph/src/crew/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/CrewAI-LangGraph/src/crew/tools.py -------------------------------------------------------------------------------- /CrewAI-LangGraph/src/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/CrewAI-LangGraph/src/graph.py -------------------------------------------------------------------------------- /CrewAI-LangGraph/src/nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/CrewAI-LangGraph/src/nodes.py -------------------------------------------------------------------------------- /CrewAI-LangGraph/src/state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/CrewAI-LangGraph/src/state.py -------------------------------------------------------------------------------- /Notebooks/CrewAI Flows & Langgraph/Coding Assistant/coding_assistant_eval.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/Notebooks/CrewAI Flows & Langgraph/Coding Assistant/coding_assistant_eval.ipynb -------------------------------------------------------------------------------- /Notebooks/CrewAI Flows & Langgraph/QA Agent/crewai.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/Notebooks/CrewAI Flows & Langgraph/QA Agent/crewai.ipynb -------------------------------------------------------------------------------- /Notebooks/CrewAI Flows & Langgraph/QA Agent/crewai_flow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/Notebooks/CrewAI Flows & Langgraph/QA Agent/crewai_flow.html -------------------------------------------------------------------------------- /Notebooks/CrewAI Flows & Langgraph/QA Agent/db/chroma.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/Notebooks/CrewAI Flows & Langgraph/QA Agent/db/chroma.sqlite3 -------------------------------------------------------------------------------- /Notebooks/CrewAI Flows & Langgraph/QA Agent/db/eb595800-58e8-4a23-b57f-60dad6aaadea/data_level0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/Notebooks/CrewAI Flows & Langgraph/QA Agent/db/eb595800-58e8-4a23-b57f-60dad6aaadea/data_level0.bin -------------------------------------------------------------------------------- /Notebooks/CrewAI Flows & Langgraph/QA Agent/db/eb595800-58e8-4a23-b57f-60dad6aaadea/header.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/Notebooks/CrewAI Flows & Langgraph/QA Agent/db/eb595800-58e8-4a23-b57f-60dad6aaadea/header.bin -------------------------------------------------------------------------------- /Notebooks/CrewAI Flows & Langgraph/QA Agent/db/eb595800-58e8-4a23-b57f-60dad6aaadea/length.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/Notebooks/CrewAI Flows & Langgraph/QA Agent/db/eb595800-58e8-4a23-b57f-60dad6aaadea/length.bin -------------------------------------------------------------------------------- /Notebooks/CrewAI Flows & Langgraph/QA Agent/db/eb595800-58e8-4a23-b57f-60dad6aaadea/link_lists.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Notebooks/CrewAI Flows & Langgraph/QA Agent/laggraph.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/Notebooks/CrewAI Flows & Langgraph/QA Agent/laggraph.ipynb -------------------------------------------------------------------------------- /Notebooks/Flows/Landing Page Flow/landing_page_flow.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/Notebooks/Flows/Landing Page Flow/landing_page_flow.ipynb -------------------------------------------------------------------------------- /Notebooks/Flows/Simple QA Crew + Flow/crewai_flow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/Notebooks/Flows/Simple QA Crew + Flow/crewai_flow.html -------------------------------------------------------------------------------- /Notebooks/Flows/Simple QA Crew + Flow/db/9b1e5adc-9f74-43a5-a2b8-180c85535334/data_level0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/Notebooks/Flows/Simple QA Crew + Flow/db/9b1e5adc-9f74-43a5-a2b8-180c85535334/data_level0.bin -------------------------------------------------------------------------------- /Notebooks/Flows/Simple QA Crew + Flow/db/9b1e5adc-9f74-43a5-a2b8-180c85535334/header.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/Notebooks/Flows/Simple QA Crew + Flow/db/9b1e5adc-9f74-43a5-a2b8-180c85535334/header.bin -------------------------------------------------------------------------------- /Notebooks/Flows/Simple QA Crew + Flow/db/9b1e5adc-9f74-43a5-a2b8-180c85535334/length.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/Notebooks/Flows/Simple QA Crew + Flow/db/9b1e5adc-9f74-43a5-a2b8-180c85535334/length.bin -------------------------------------------------------------------------------- /Notebooks/Flows/Simple QA Crew + Flow/db/9b1e5adc-9f74-43a5-a2b8-180c85535334/link_lists.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Notebooks/Flows/Simple QA Crew + Flow/db/chroma.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/Notebooks/Flows/Simple QA Crew + Flow/db/chroma.sqlite3 -------------------------------------------------------------------------------- /Notebooks/Flows/Simple QA Crew + Flow/simple_qa_agentic_flow.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/Notebooks/Flows/Simple QA Crew + Flow/simple_qa_agentic_flow.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/README.md -------------------------------------------------------------------------------- /azure_model/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/azure_model/.env.example -------------------------------------------------------------------------------- /azure_model/.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | .DS_Store 3 | __pycache__ 4 | .venv -------------------------------------------------------------------------------- /azure_model/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/azure_model/README.md -------------------------------------------------------------------------------- /azure_model/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/azure_model/main.py -------------------------------------------------------------------------------- /azure_model/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/azure_model/poetry.lock -------------------------------------------------------------------------------- /azure_model/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/azure_model/pyproject.toml -------------------------------------------------------------------------------- /email_auto_responder_flow/.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | __pycache__/ 3 | credentials.json 4 | -------------------------------------------------------------------------------- /email_auto_responder_flow/Automating_Tasks_with_CrewAI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/email_auto_responder_flow/Automating_Tasks_with_CrewAI.md -------------------------------------------------------------------------------- /email_auto_responder_flow/Email_Flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/email_auto_responder_flow/Email_Flow.png -------------------------------------------------------------------------------- /email_auto_responder_flow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/email_auto_responder_flow/README.md -------------------------------------------------------------------------------- /email_auto_responder_flow/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/email_auto_responder_flow/pyproject.toml -------------------------------------------------------------------------------- /email_auto_responder_flow/src/email_auto_responder_flow/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /email_auto_responder_flow/src/email_auto_responder_flow/crews/email_filter_crew/config/agents.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/email_auto_responder_flow/src/email_auto_responder_flow/crews/email_filter_crew/config/agents.yaml -------------------------------------------------------------------------------- /email_auto_responder_flow/src/email_auto_responder_flow/crews/email_filter_crew/config/tasks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/email_auto_responder_flow/src/email_auto_responder_flow/crews/email_filter_crew/config/tasks.yaml -------------------------------------------------------------------------------- /email_auto_responder_flow/src/email_auto_responder_flow/crews/email_filter_crew/email_filter_crew.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/email_auto_responder_flow/src/email_auto_responder_flow/crews/email_filter_crew/email_filter_crew.py -------------------------------------------------------------------------------- /email_auto_responder_flow/src/email_auto_responder_flow/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/email_auto_responder_flow/src/email_auto_responder_flow/main.py -------------------------------------------------------------------------------- /email_auto_responder_flow/src/email_auto_responder_flow/tools/create_draft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/email_auto_responder_flow/src/email_auto_responder_flow/tools/create_draft.py -------------------------------------------------------------------------------- /email_auto_responder_flow/src/email_auto_responder_flow/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/email_auto_responder_flow/src/email_auto_responder_flow/types.py -------------------------------------------------------------------------------- /email_auto_responder_flow/src/email_auto_responder_flow/utils/emails.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/email_auto_responder_flow/src/email_auto_responder_flow/utils/emails.py -------------------------------------------------------------------------------- /game-builder-crew/.env.example: -------------------------------------------------------------------------------- 1 | OPENAI_API_KEY=... -------------------------------------------------------------------------------- /game-builder-crew/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | .env 3 | .DS_Store -------------------------------------------------------------------------------- /game-builder-crew/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/game-builder-crew/README.md -------------------------------------------------------------------------------- /game-builder-crew/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/game-builder-crew/poetry.lock -------------------------------------------------------------------------------- /game-builder-crew/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/game-builder-crew/pyproject.toml -------------------------------------------------------------------------------- /game-builder-crew/src/game_builder_crew/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game-builder-crew/src/game_builder_crew/config/agents.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/game-builder-crew/src/game_builder_crew/config/agents.yaml -------------------------------------------------------------------------------- /game-builder-crew/src/game_builder_crew/config/gamedesign.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/game-builder-crew/src/game_builder_crew/config/gamedesign.yaml -------------------------------------------------------------------------------- /game-builder-crew/src/game_builder_crew/config/tasks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/game-builder-crew/src/game_builder_crew/config/tasks.yaml -------------------------------------------------------------------------------- /game-builder-crew/src/game_builder_crew/crew.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/game-builder-crew/src/game_builder_crew/crew.py -------------------------------------------------------------------------------- /game-builder-crew/src/game_builder_crew/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/game-builder-crew/src/game_builder_crew/main.py -------------------------------------------------------------------------------- /instagram_post/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/instagram_post/.env.example -------------------------------------------------------------------------------- /instagram_post/.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | .DS_Store 3 | __pycache__ -------------------------------------------------------------------------------- /instagram_post/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/instagram_post/README.md -------------------------------------------------------------------------------- /instagram_post/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/instagram_post/agents.py -------------------------------------------------------------------------------- /instagram_post/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/instagram_post/main.py -------------------------------------------------------------------------------- /instagram_post/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/instagram_post/poetry.lock -------------------------------------------------------------------------------- /instagram_post/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/instagram_post/pyproject.toml -------------------------------------------------------------------------------- /instagram_post/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/instagram_post/tasks.py -------------------------------------------------------------------------------- /instagram_post/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /instagram_post/tools/__pycache__/browser_tools.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/instagram_post/tools/__pycache__/browser_tools.cpython-311.pyc -------------------------------------------------------------------------------- /instagram_post/tools/__pycache__/search_tools.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/instagram_post/tools/__pycache__/search_tools.cpython-311.pyc -------------------------------------------------------------------------------- /instagram_post/tools/browser_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/instagram_post/tools/browser_tools.py -------------------------------------------------------------------------------- /instagram_post/tools/search_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/instagram_post/tools/search_tools.py -------------------------------------------------------------------------------- /job-posting/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/job-posting/.env.example -------------------------------------------------------------------------------- /job-posting/.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | jobposting-api 3 | db 4 | __pycache__ 5 | poetry.lock -------------------------------------------------------------------------------- /job-posting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/job-posting/README.md -------------------------------------------------------------------------------- /job-posting/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/job-posting/pyproject.toml -------------------------------------------------------------------------------- /job-posting/src/job_posting/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /job-posting/src/job_posting/config/agents.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/job-posting/src/job_posting/config/agents.yaml -------------------------------------------------------------------------------- /job-posting/src/job_posting/config/tasks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/job-posting/src/job_posting/config/tasks.yaml -------------------------------------------------------------------------------- /job-posting/src/job_posting/crew.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/job-posting/src/job_posting/crew.py -------------------------------------------------------------------------------- /job-posting/src/job_posting/job_description_example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/job-posting/src/job_posting/job_description_example.md -------------------------------------------------------------------------------- /job-posting/src/job_posting/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/job-posting/src/job_posting/main.py -------------------------------------------------------------------------------- /landing_page_generator/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/landing_page_generator/.env.example -------------------------------------------------------------------------------- /landing_page_generator/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/landing_page_generator/.gitignore -------------------------------------------------------------------------------- /landing_page_generator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/landing_page_generator/README.md -------------------------------------------------------------------------------- /landing_page_generator/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/landing_page_generator/poetry.lock -------------------------------------------------------------------------------- /landing_page_generator/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/landing_page_generator/pyproject.toml -------------------------------------------------------------------------------- /landing_page_generator/src/landing_page_generator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /landing_page_generator/src/landing_page_generator/config/agents.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/landing_page_generator/src/landing_page_generator/config/agents.yaml -------------------------------------------------------------------------------- /landing_page_generator/src/landing_page_generator/config/tasks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/landing_page_generator/src/landing_page_generator/config/tasks.yaml -------------------------------------------------------------------------------- /landing_page_generator/src/landing_page_generator/config/templates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/landing_page_generator/src/landing_page_generator/config/templates.json -------------------------------------------------------------------------------- /landing_page_generator/src/landing_page_generator/crew.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/landing_page_generator/src/landing_page_generator/crew.py -------------------------------------------------------------------------------- /landing_page_generator/src/landing_page_generator/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/landing_page_generator/src/landing_page_generator/main.py -------------------------------------------------------------------------------- /landing_page_generator/src/landing_page_generator/templates/templates_here.txt: -------------------------------------------------------------------------------- 1 | https://tailwindui.com/templates -------------------------------------------------------------------------------- /landing_page_generator/src/landing_page_generator/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /landing_page_generator/src/landing_page_generator/tools/browser_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/landing_page_generator/src/landing_page_generator/tools/browser_tools.py -------------------------------------------------------------------------------- /landing_page_generator/src/landing_page_generator/tools/file_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/landing_page_generator/src/landing_page_generator/tools/file_tools.py -------------------------------------------------------------------------------- /landing_page_generator/src/landing_page_generator/tools/search_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/landing_page_generator/src/landing_page_generator/tools/search_tools.py -------------------------------------------------------------------------------- /landing_page_generator/src/landing_page_generator/tools/template_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/landing_page_generator/src/landing_page_generator/tools/template_tools.py -------------------------------------------------------------------------------- /lead-score-flow/.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | __pycache__/ 3 | -------------------------------------------------------------------------------- /lead-score-flow/Automating_Tasks_with_CrewAI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/lead-score-flow/Automating_Tasks_with_CrewAI.md -------------------------------------------------------------------------------- /lead-score-flow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/lead-score-flow/README.md -------------------------------------------------------------------------------- /lead-score-flow/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/lead-score-flow/pyproject.toml -------------------------------------------------------------------------------- /lead-score-flow/src/lead_score_flow/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lead-score-flow/src/lead_score_flow/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/lead-score-flow/src/lead_score_flow/constants.py -------------------------------------------------------------------------------- /lead-score-flow/src/lead_score_flow/crews/lead_response_crew/config/agents.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/lead-score-flow/src/lead_score_flow/crews/lead_response_crew/config/agents.yaml -------------------------------------------------------------------------------- /lead-score-flow/src/lead_score_flow/crews/lead_response_crew/config/tasks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/lead-score-flow/src/lead_score_flow/crews/lead_response_crew/config/tasks.yaml -------------------------------------------------------------------------------- /lead-score-flow/src/lead_score_flow/crews/lead_response_crew/lead_response_crew.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/lead-score-flow/src/lead_score_flow/crews/lead_response_crew/lead_response_crew.py -------------------------------------------------------------------------------- /lead-score-flow/src/lead_score_flow/crews/lead_score_crew/config/agents.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/lead-score-flow/src/lead_score_flow/crews/lead_score_crew/config/agents.yaml -------------------------------------------------------------------------------- /lead-score-flow/src/lead_score_flow/crews/lead_score_crew/config/tasks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/lead-score-flow/src/lead_score_flow/crews/lead_score_crew/config/tasks.yaml -------------------------------------------------------------------------------- /lead-score-flow/src/lead_score_flow/crews/lead_score_crew/lead_score_crew.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/lead-score-flow/src/lead_score_flow/crews/lead_score_crew/lead_score_crew.py -------------------------------------------------------------------------------- /lead-score-flow/src/lead_score_flow/leads.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/lead-score-flow/src/lead_score_flow/leads.csv -------------------------------------------------------------------------------- /lead-score-flow/src/lead_score_flow/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/lead-score-flow/src/lead_score_flow/main.py -------------------------------------------------------------------------------- /lead-score-flow/src/lead_score_flow/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/lead-score-flow/src/lead_score_flow/types.py -------------------------------------------------------------------------------- /lead-score-flow/src/lead_score_flow/utils/candidateUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/lead-score-flow/src/lead_score_flow/utils/candidateUtils.py -------------------------------------------------------------------------------- /markdown_validator/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/markdown_validator/.env.example -------------------------------------------------------------------------------- /markdown_validator/.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | .DS_Store 3 | __pycache__ 4 | .venv -------------------------------------------------------------------------------- /markdown_validator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/markdown_validator/README.md -------------------------------------------------------------------------------- /markdown_validator/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/markdown_validator/poetry.lock -------------------------------------------------------------------------------- /markdown_validator/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/markdown_validator/pyproject.toml -------------------------------------------------------------------------------- /markdown_validator/src/markdown_validator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /markdown_validator/src/markdown_validator/config/agents.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/markdown_validator/src/markdown_validator/config/agents.yaml -------------------------------------------------------------------------------- /markdown_validator/src/markdown_validator/config/tasks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/markdown_validator/src/markdown_validator/config/tasks.yaml -------------------------------------------------------------------------------- /markdown_validator/src/markdown_validator/crew.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/markdown_validator/src/markdown_validator/crew.py -------------------------------------------------------------------------------- /markdown_validator/src/markdown_validator/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/markdown_validator/src/markdown_validator/main.py -------------------------------------------------------------------------------- /markdown_validator/src/markdown_validator/tools/markdownTools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/markdown_validator/src/markdown_validator/tools/markdownTools.py -------------------------------------------------------------------------------- /marketing_strategy/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/marketing_strategy/.env.example -------------------------------------------------------------------------------- /marketing_strategy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/marketing_strategy/README.md -------------------------------------------------------------------------------- /marketing_strategy/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/marketing_strategy/pyproject.toml -------------------------------------------------------------------------------- /marketing_strategy/src/marketing_posts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /marketing_strategy/src/marketing_posts/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/marketing_strategy/src/marketing_posts/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /marketing_strategy/src/marketing_posts/__pycache__/crew.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/marketing_strategy/src/marketing_posts/__pycache__/crew.cpython-311.pyc -------------------------------------------------------------------------------- /marketing_strategy/src/marketing_posts/__pycache__/main.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/marketing_strategy/src/marketing_posts/__pycache__/main.cpython-311.pyc -------------------------------------------------------------------------------- /marketing_strategy/src/marketing_posts/config/agents.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/marketing_strategy/src/marketing_posts/config/agents.yaml -------------------------------------------------------------------------------- /marketing_strategy/src/marketing_posts/config/tasks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/marketing_strategy/src/marketing_posts/config/tasks.yaml -------------------------------------------------------------------------------- /marketing_strategy/src/marketing_posts/crew.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/marketing_strategy/src/marketing_posts/crew.py -------------------------------------------------------------------------------- /marketing_strategy/src/marketing_posts/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/marketing_strategy/src/marketing_posts/main.py -------------------------------------------------------------------------------- /marketing_strategy/trained_agents_data.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/marketing_strategy/trained_agents_data.pkl -------------------------------------------------------------------------------- /marketing_strategy/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/marketing_strategy/uv.lock -------------------------------------------------------------------------------- /match_profile_to_positions/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/match_profile_to_positions/.env.example -------------------------------------------------------------------------------- /match_profile_to_positions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/match_profile_to_positions/README.md -------------------------------------------------------------------------------- /match_profile_to_positions/db/chroma.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/match_profile_to_positions/db/chroma.sqlite3 -------------------------------------------------------------------------------- /match_profile_to_positions/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/match_profile_to_positions/poetry.lock -------------------------------------------------------------------------------- /match_profile_to_positions/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/match_profile_to_positions/pyproject.toml -------------------------------------------------------------------------------- /match_profile_to_positions/src/match_to_proposal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /match_profile_to_positions/src/match_to_proposal/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/match_profile_to_positions/src/match_to_proposal/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /match_profile_to_positions/src/match_to_proposal/__pycache__/crew.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/match_profile_to_positions/src/match_to_proposal/__pycache__/crew.cpython-311.pyc -------------------------------------------------------------------------------- /match_profile_to_positions/src/match_to_proposal/__pycache__/main.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/match_profile_to_positions/src/match_to_proposal/__pycache__/main.cpython-311.pyc -------------------------------------------------------------------------------- /match_profile_to_positions/src/match_to_proposal/config/agents.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/match_profile_to_positions/src/match_to_proposal/config/agents.yaml -------------------------------------------------------------------------------- /match_profile_to_positions/src/match_to_proposal/config/tasks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/match_profile_to_positions/src/match_to_proposal/config/tasks.yaml -------------------------------------------------------------------------------- /match_profile_to_positions/src/match_to_proposal/crew.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/match_profile_to_positions/src/match_to_proposal/crew.py -------------------------------------------------------------------------------- /match_profile_to_positions/src/match_to_proposal/data/cv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/match_profile_to_positions/src/match_to_proposal/data/cv.md -------------------------------------------------------------------------------- /match_profile_to_positions/src/match_to_proposal/data/jobs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/match_profile_to_positions/src/match_to_proposal/data/jobs.csv -------------------------------------------------------------------------------- /match_profile_to_positions/src/match_to_proposal/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/match_profile_to_positions/src/match_to_proposal/main.py -------------------------------------------------------------------------------- /match_profile_to_positions/src/match_to_proposal/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /match_profile_to_positions/src/match_to_proposal/tools/job_db_connect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/match_profile_to_positions/src/match_to_proposal/tools/job_db_connect.py -------------------------------------------------------------------------------- /match_profile_to_positions/trained_agents_data.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/match_profile_to_positions/trained_agents_data.pkl -------------------------------------------------------------------------------- /meeting_assistant_flow/.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | __pycache__/ 3 | new_tasks.csv 4 | -------------------------------------------------------------------------------- /meeting_assistant_flow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/meeting_assistant_flow/README.md -------------------------------------------------------------------------------- /meeting_assistant_flow/meeting_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/meeting_assistant_flow/meeting_notes.txt -------------------------------------------------------------------------------- /meeting_assistant_flow/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/meeting_assistant_flow/pyproject.toml -------------------------------------------------------------------------------- /meeting_assistant_flow/src/meeting_assistant_flow/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meeting_assistant_flow/src/meeting_assistant_flow/crews/meeting_assistant_crew/config/agents.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/meeting_assistant_flow/src/meeting_assistant_flow/crews/meeting_assistant_crew/config/agents.yaml -------------------------------------------------------------------------------- /meeting_assistant_flow/src/meeting_assistant_flow/crews/meeting_assistant_crew/config/tasks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/meeting_assistant_flow/src/meeting_assistant_flow/crews/meeting_assistant_crew/config/tasks.yaml -------------------------------------------------------------------------------- /meeting_assistant_flow/src/meeting_assistant_flow/crews/meeting_assistant_crew/meeting_assistant_crew.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/meeting_assistant_flow/src/meeting_assistant_flow/crews/meeting_assistant_crew/meeting_assistant_crew.py -------------------------------------------------------------------------------- /meeting_assistant_flow/src/meeting_assistant_flow/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/meeting_assistant_flow/src/meeting_assistant_flow/main.py -------------------------------------------------------------------------------- /meeting_assistant_flow/src/meeting_assistant_flow/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/meeting_assistant_flow/src/meeting_assistant_flow/types.py -------------------------------------------------------------------------------- /meeting_assistant_flow/src/meeting_assistant_flow/utils/slack_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/meeting_assistant_flow/src/meeting_assistant_flow/utils/slack_helper.py -------------------------------------------------------------------------------- /meeting_assistant_flow/src/meeting_assistant_flow/utils/trello_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/meeting_assistant_flow/src/meeting_assistant_flow/utils/trello_helper.py -------------------------------------------------------------------------------- /meta_quest_knowledge/.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | __pycache__/ 3 | -------------------------------------------------------------------------------- /meta_quest_knowledge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/meta_quest_knowledge/README.md -------------------------------------------------------------------------------- /meta_quest_knowledge/knowledge/meta_quest_manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/meta_quest_knowledge/knowledge/meta_quest_manual.pdf -------------------------------------------------------------------------------- /meta_quest_knowledge/knowledge/user_preference.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/meta_quest_knowledge/knowledge/user_preference.txt -------------------------------------------------------------------------------- /meta_quest_knowledge/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/meta_quest_knowledge/pyproject.toml -------------------------------------------------------------------------------- /meta_quest_knowledge/src/meta_quest_knowledge/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meta_quest_knowledge/src/meta_quest_knowledge/config/agents.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/meta_quest_knowledge/src/meta_quest_knowledge/config/agents.yaml -------------------------------------------------------------------------------- /meta_quest_knowledge/src/meta_quest_knowledge/config/tasks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/meta_quest_knowledge/src/meta_quest_knowledge/config/tasks.yaml -------------------------------------------------------------------------------- /meta_quest_knowledge/src/meta_quest_knowledge/crew.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/meta_quest_knowledge/src/meta_quest_knowledge/crew.py -------------------------------------------------------------------------------- /meta_quest_knowledge/src/meta_quest_knowledge/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/meta_quest_knowledge/src/meta_quest_knowledge/main.py -------------------------------------------------------------------------------- /meta_quest_knowledge/src/meta_quest_knowledge/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meta_quest_knowledge/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/meta_quest_knowledge/uv.lock -------------------------------------------------------------------------------- /nvidia_models/intro/.env.example: -------------------------------------------------------------------------------- 1 | NVIDIA_API_KEY= 2 | MODEL=meta/llama-3.1-8b-instruct -------------------------------------------------------------------------------- /nvidia_models/intro/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/nvidia_models/intro/.gitignore -------------------------------------------------------------------------------- /nvidia_models/intro/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/nvidia_models/intro/Makefile -------------------------------------------------------------------------------- /nvidia_models/intro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/nvidia_models/intro/README.md -------------------------------------------------------------------------------- /nvidia_models/intro/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/nvidia_models/intro/main.py -------------------------------------------------------------------------------- /nvidia_models/intro/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/nvidia_models/intro/pyproject.toml -------------------------------------------------------------------------------- /nvidia_models/intro/scripts/check_pydantic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/nvidia_models/intro/scripts/check_pydantic.sh -------------------------------------------------------------------------------- /nvidia_models/intro/scripts/lint_imports.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/nvidia_models/intro/scripts/lint_imports.sh -------------------------------------------------------------------------------- /nvidia_models/marketing_strategy/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/nvidia_models/marketing_strategy/.env.example -------------------------------------------------------------------------------- /nvidia_models/marketing_strategy/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/nvidia_models/marketing_strategy/.gitignore -------------------------------------------------------------------------------- /nvidia_models/marketing_strategy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/nvidia_models/marketing_strategy/Makefile -------------------------------------------------------------------------------- /nvidia_models/marketing_strategy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/nvidia_models/marketing_strategy/README.md -------------------------------------------------------------------------------- /nvidia_models/marketing_strategy/marketing_posts.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/nvidia_models/marketing_strategy/marketing_posts.ipynb -------------------------------------------------------------------------------- /nvidia_models/marketing_strategy/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/nvidia_models/marketing_strategy/pyproject.toml -------------------------------------------------------------------------------- /nvidia_models/marketing_strategy/scripts/check_pydantic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/nvidia_models/marketing_strategy/scripts/check_pydantic.sh -------------------------------------------------------------------------------- /nvidia_models/marketing_strategy/scripts/lint_imports.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/nvidia_models/marketing_strategy/scripts/lint_imports.sh -------------------------------------------------------------------------------- /nvidia_models/marketing_strategy/src/marketing_posts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nvidia_models/marketing_strategy/src/marketing_posts/config/agents.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/nvidia_models/marketing_strategy/src/marketing_posts/config/agents.yaml -------------------------------------------------------------------------------- /nvidia_models/marketing_strategy/src/marketing_posts/config/tasks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/nvidia_models/marketing_strategy/src/marketing_posts/config/tasks.yaml -------------------------------------------------------------------------------- /nvidia_models/marketing_strategy/src/marketing_posts/crew.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/nvidia_models/marketing_strategy/src/marketing_posts/crew.py -------------------------------------------------------------------------------- /nvidia_models/marketing_strategy/src/marketing_posts/llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/nvidia_models/marketing_strategy/src/marketing_posts/llm.py -------------------------------------------------------------------------------- /nvidia_models/marketing_strategy/src/marketing_posts/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/nvidia_models/marketing_strategy/src/marketing_posts/main.py -------------------------------------------------------------------------------- /prep-for-a-meeting/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/prep-for-a-meeting/.env.example -------------------------------------------------------------------------------- /prep-for-a-meeting/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | .env -------------------------------------------------------------------------------- /prep-for-a-meeting/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/prep-for-a-meeting/agents.py -------------------------------------------------------------------------------- /prep-for-a-meeting/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/prep-for-a-meeting/main.py -------------------------------------------------------------------------------- /prep-for-a-meeting/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/prep-for-a-meeting/requirements.txt -------------------------------------------------------------------------------- /prep-for-a-meeting/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/prep-for-a-meeting/tasks.py -------------------------------------------------------------------------------- /prep-for-a-meeting/tools/ExaSearchTool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/prep-for-a-meeting/tools/ExaSearchTool.py -------------------------------------------------------------------------------- /prep-for-a-meeting/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /recruitment/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/recruitment/.env.example -------------------------------------------------------------------------------- /recruitment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/recruitment/README.md -------------------------------------------------------------------------------- /recruitment/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/recruitment/poetry.lock -------------------------------------------------------------------------------- /recruitment/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/recruitment/pyproject.toml -------------------------------------------------------------------------------- /recruitment/src/recruitment/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /recruitment/src/recruitment/config/agents.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/recruitment/src/recruitment/config/agents.yaml -------------------------------------------------------------------------------- /recruitment/src/recruitment/config/tasks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/recruitment/src/recruitment/config/tasks.yaml -------------------------------------------------------------------------------- /recruitment/src/recruitment/crew.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/recruitment/src/recruitment/crew.py -------------------------------------------------------------------------------- /recruitment/src/recruitment/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/recruitment/src/recruitment/main.py -------------------------------------------------------------------------------- /recruitment/src/recruitment/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /recruitment/src/recruitment/tools/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/recruitment/src/recruitment/tools/client.py -------------------------------------------------------------------------------- /recruitment/src/recruitment/tools/driver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/recruitment/src/recruitment/tools/driver.py -------------------------------------------------------------------------------- /recruitment/src/recruitment/tools/linkedin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/recruitment/src/recruitment/tools/linkedin.py -------------------------------------------------------------------------------- /screenplay_writer/.env: -------------------------------------------------------------------------------- 1 | OPENAI_API_KEY = 2 | -------------------------------------------------------------------------------- /screenplay_writer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/screenplay_writer/README.md -------------------------------------------------------------------------------- /screenplay_writer/config/agents.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/screenplay_writer/config/agents.yaml -------------------------------------------------------------------------------- /screenplay_writer/config/tasks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/screenplay_writer/config/tasks.yaml -------------------------------------------------------------------------------- /screenplay_writer/screenplay_writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/screenplay_writer/screenplay_writer.py -------------------------------------------------------------------------------- /self_evaluation_loop_flow/.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | __pycache__/ 3 | lib/ 4 | -------------------------------------------------------------------------------- /self_evaluation_loop_flow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/self_evaluation_loop_flow/README.md -------------------------------------------------------------------------------- /self_evaluation_loop_flow/crewai_flow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/self_evaluation_loop_flow/crewai_flow.html -------------------------------------------------------------------------------- /self_evaluation_loop_flow/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/self_evaluation_loop_flow/pyproject.toml -------------------------------------------------------------------------------- /self_evaluation_loop_flow/self_evaluation_loop_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/self_evaluation_loop_flow/self_evaluation_loop_flow.png -------------------------------------------------------------------------------- /self_evaluation_loop_flow/src/self_evaluation_loop_flow/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /self_evaluation_loop_flow/src/self_evaluation_loop_flow/crews/shakespeare_crew/config/agents.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/self_evaluation_loop_flow/src/self_evaluation_loop_flow/crews/shakespeare_crew/config/agents.yaml -------------------------------------------------------------------------------- /self_evaluation_loop_flow/src/self_evaluation_loop_flow/crews/shakespeare_crew/config/tasks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/self_evaluation_loop_flow/src/self_evaluation_loop_flow/crews/shakespeare_crew/config/tasks.yaml -------------------------------------------------------------------------------- /self_evaluation_loop_flow/src/self_evaluation_loop_flow/crews/shakespeare_crew/shakespeare_crew.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/self_evaluation_loop_flow/src/self_evaluation_loop_flow/crews/shakespeare_crew/shakespeare_crew.py -------------------------------------------------------------------------------- /self_evaluation_loop_flow/src/self_evaluation_loop_flow/crews/x_post_review_crew/config/agents.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/self_evaluation_loop_flow/src/self_evaluation_loop_flow/crews/x_post_review_crew/config/agents.yaml -------------------------------------------------------------------------------- /self_evaluation_loop_flow/src/self_evaluation_loop_flow/crews/x_post_review_crew/config/tasks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/self_evaluation_loop_flow/src/self_evaluation_loop_flow/crews/x_post_review_crew/config/tasks.yaml -------------------------------------------------------------------------------- /self_evaluation_loop_flow/src/self_evaluation_loop_flow/crews/x_post_review_crew/x_post_review_crew.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/self_evaluation_loop_flow/src/self_evaluation_loop_flow/crews/x_post_review_crew/x_post_review_crew.py -------------------------------------------------------------------------------- /self_evaluation_loop_flow/src/self_evaluation_loop_flow/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/self_evaluation_loop_flow/src/self_evaluation_loop_flow/main.py -------------------------------------------------------------------------------- /self_evaluation_loop_flow/src/self_evaluation_loop_flow/tools/CharacterCounterTool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/self_evaluation_loop_flow/src/self_evaluation_loop_flow/tools/CharacterCounterTool.py -------------------------------------------------------------------------------- /self_evaluation_loop_flow/src/self_evaluation_loop_flow/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /starter_template/.env_example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/starter_template/.env_example -------------------------------------------------------------------------------- /starter_template/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/starter_template/.gitignore -------------------------------------------------------------------------------- /starter_template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/starter_template/README.md -------------------------------------------------------------------------------- /starter_template/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/starter_template/agents.py -------------------------------------------------------------------------------- /starter_template/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/starter_template/main.py -------------------------------------------------------------------------------- /starter_template/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/starter_template/tasks.py -------------------------------------------------------------------------------- /stock_analysis/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/stock_analysis/.env.example -------------------------------------------------------------------------------- /stock_analysis/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/stock_analysis/.gitignore -------------------------------------------------------------------------------- /stock_analysis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/stock_analysis/README.md -------------------------------------------------------------------------------- /stock_analysis/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/stock_analysis/pyproject.toml -------------------------------------------------------------------------------- /stock_analysis/src/stock_analysis/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /stock_analysis/src/stock_analysis/config/agents.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/stock_analysis/src/stock_analysis/config/agents.yaml -------------------------------------------------------------------------------- /stock_analysis/src/stock_analysis/config/tasks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/stock_analysis/src/stock_analysis/config/tasks.yaml -------------------------------------------------------------------------------- /stock_analysis/src/stock_analysis/crew.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/stock_analysis/src/stock_analysis/crew.py -------------------------------------------------------------------------------- /stock_analysis/src/stock_analysis/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/stock_analysis/src/stock_analysis/main.py -------------------------------------------------------------------------------- /stock_analysis/src/stock_analysis/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /stock_analysis/src/stock_analysis/tools/calculator_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/stock_analysis/src/stock_analysis/tools/calculator_tool.py -------------------------------------------------------------------------------- /stock_analysis/src/stock_analysis/tools/sec_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/stock_analysis/src/stock_analysis/tools/sec_tools.py -------------------------------------------------------------------------------- /surprise_trip/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/surprise_trip/.env.example -------------------------------------------------------------------------------- /surprise_trip/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/surprise_trip/README.md -------------------------------------------------------------------------------- /surprise_trip/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/surprise_trip/poetry.lock -------------------------------------------------------------------------------- /surprise_trip/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/surprise_trip/pyproject.toml -------------------------------------------------------------------------------- /surprise_trip/src/surprise_travel/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /surprise_trip/src/surprise_travel/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/surprise_trip/src/surprise_travel/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /surprise_trip/src/surprise_travel/__pycache__/crew.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/surprise_trip/src/surprise_travel/__pycache__/crew.cpython-311.pyc -------------------------------------------------------------------------------- /surprise_trip/src/surprise_travel/__pycache__/main.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/surprise_trip/src/surprise_travel/__pycache__/main.cpython-311.pyc -------------------------------------------------------------------------------- /surprise_trip/src/surprise_travel/config/agents.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/surprise_trip/src/surprise_travel/config/agents.yaml -------------------------------------------------------------------------------- /surprise_trip/src/surprise_travel/config/tasks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/surprise_trip/src/surprise_travel/config/tasks.yaml -------------------------------------------------------------------------------- /surprise_trip/src/surprise_travel/crew.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/surprise_trip/src/surprise_travel/crew.py -------------------------------------------------------------------------------- /surprise_trip/src/surprise_travel/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/surprise_trip/src/surprise_travel/main.py -------------------------------------------------------------------------------- /surprise_trip/src/surprise_travel/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /surprise_trip/src/surprise_travel/tools/custom_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/surprise_trip/src/surprise_travel/tools/custom_tool.py -------------------------------------------------------------------------------- /surprise_trip/trained_agents_data.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/surprise_trip/trained_agents_data.pkl -------------------------------------------------------------------------------- /surprise_trip/training_data.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/surprise_trip/training_data.pkl -------------------------------------------------------------------------------- /trip_planner/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/trip_planner/.env.example -------------------------------------------------------------------------------- /trip_planner/.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | .DS_Store 3 | __pycache__ -------------------------------------------------------------------------------- /trip_planner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/trip_planner/README.md -------------------------------------------------------------------------------- /trip_planner/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/trip_planner/main.py -------------------------------------------------------------------------------- /trip_planner/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/trip_planner/poetry.lock -------------------------------------------------------------------------------- /trip_planner/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/trip_planner/pyproject.toml -------------------------------------------------------------------------------- /trip_planner/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /trip_planner/tools/browser_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/trip_planner/tools/browser_tools.py -------------------------------------------------------------------------------- /trip_planner/tools/calculator_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/trip_planner/tools/calculator_tools.py -------------------------------------------------------------------------------- /trip_planner/tools/search_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/trip_planner/tools/search_tools.py -------------------------------------------------------------------------------- /trip_planner/trip_agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/trip_planner/trip_agents.py -------------------------------------------------------------------------------- /trip_planner/trip_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/trip_planner/trip_tasks.py -------------------------------------------------------------------------------- /write_a_book_with_flows/.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | __pycache__/ 3 | -------------------------------------------------------------------------------- /write_a_book_with_flows/Automating_Tasks_with_CrewAI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/write_a_book_with_flows/Automating_Tasks_with_CrewAI.md -------------------------------------------------------------------------------- /write_a_book_with_flows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/write_a_book_with_flows/README.md -------------------------------------------------------------------------------- /write_a_book_with_flows/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/write_a_book_with_flows/pyproject.toml -------------------------------------------------------------------------------- /write_a_book_with_flows/src/write_a_book_with_flows/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /write_a_book_with_flows/src/write_a_book_with_flows/crews/outline_book_crew/config/agents.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/write_a_book_with_flows/src/write_a_book_with_flows/crews/outline_book_crew/config/agents.yaml -------------------------------------------------------------------------------- /write_a_book_with_flows/src/write_a_book_with_flows/crews/outline_book_crew/config/tasks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/write_a_book_with_flows/src/write_a_book_with_flows/crews/outline_book_crew/config/tasks.yaml -------------------------------------------------------------------------------- /write_a_book_with_flows/src/write_a_book_with_flows/crews/outline_book_crew/outline_crew.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/write_a_book_with_flows/src/write_a_book_with_flows/crews/outline_book_crew/outline_crew.py -------------------------------------------------------------------------------- /write_a_book_with_flows/src/write_a_book_with_flows/crews/write_book_chapter_crew/config/agents.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/write_a_book_with_flows/src/write_a_book_with_flows/crews/write_book_chapter_crew/config/agents.yaml -------------------------------------------------------------------------------- /write_a_book_with_flows/src/write_a_book_with_flows/crews/write_book_chapter_crew/config/tasks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/write_a_book_with_flows/src/write_a_book_with_flows/crews/write_book_chapter_crew/config/tasks.yaml -------------------------------------------------------------------------------- /write_a_book_with_flows/src/write_a_book_with_flows/crews/write_book_chapter_crew/write_book_chapter_crew.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/write_a_book_with_flows/src/write_a_book_with_flows/crews/write_book_chapter_crew/write_book_chapter_crew.py -------------------------------------------------------------------------------- /write_a_book_with_flows/src/write_a_book_with_flows/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/write_a_book_with_flows/src/write_a_book_with_flows/main.py -------------------------------------------------------------------------------- /write_a_book_with_flows/src/write_a_book_with_flows/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/crewAI-examples/HEAD/write_a_book_with_flows/src/write_a_book_with_flows/types.py --------------------------------------------------------------------------------