├── .env.example ├── README.md ├── database.db ├── files └── Docs.txt ├── main.py ├── requirements.txt ├── scripts ├── create_database.py ├── create_index.py ├── fetch_index.py └── products_list.py └── src ├── agents └── agent.py ├── prompts └── prompts.py └── tools ├── base_tool.py ├── book_meeting.py ├── file_search.py ├── product_recommendation.py └── stripe_payment.py /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaymen99/AI-Sales-agent/HEAD/.env.example -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaymen99/AI-Sales-agent/HEAD/README.md -------------------------------------------------------------------------------- /database.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaymen99/AI-Sales-agent/HEAD/database.db -------------------------------------------------------------------------------- /files/Docs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaymen99/AI-Sales-agent/HEAD/files/Docs.txt -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaymen99/AI-Sales-agent/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaymen99/AI-Sales-agent/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/create_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaymen99/AI-Sales-agent/HEAD/scripts/create_database.py -------------------------------------------------------------------------------- /scripts/create_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaymen99/AI-Sales-agent/HEAD/scripts/create_index.py -------------------------------------------------------------------------------- /scripts/fetch_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaymen99/AI-Sales-agent/HEAD/scripts/fetch_index.py -------------------------------------------------------------------------------- /scripts/products_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaymen99/AI-Sales-agent/HEAD/scripts/products_list.py -------------------------------------------------------------------------------- /src/agents/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaymen99/AI-Sales-agent/HEAD/src/agents/agent.py -------------------------------------------------------------------------------- /src/prompts/prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaymen99/AI-Sales-agent/HEAD/src/prompts/prompts.py -------------------------------------------------------------------------------- /src/tools/base_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaymen99/AI-Sales-agent/HEAD/src/tools/base_tool.py -------------------------------------------------------------------------------- /src/tools/book_meeting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaymen99/AI-Sales-agent/HEAD/src/tools/book_meeting.py -------------------------------------------------------------------------------- /src/tools/file_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaymen99/AI-Sales-agent/HEAD/src/tools/file_search.py -------------------------------------------------------------------------------- /src/tools/product_recommendation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaymen99/AI-Sales-agent/HEAD/src/tools/product_recommendation.py -------------------------------------------------------------------------------- /src/tools/stripe_payment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaymen99/AI-Sales-agent/HEAD/src/tools/stripe_payment.py --------------------------------------------------------------------------------