├── .env_sample ├── .github └── workflows │ ├── docker-image.yml │ └── retype-action.yml ├── .gitignore ├── Ai_Model_Training └── OpenAI │ ├── BHealthy │ ├── BHealth_tool_calling_data.jsonl │ └── BHealthy_data.jsonl │ ├── Sample_Prompts │ └── train_openai_model.py ├── ConversationCache ├── CacheManager.py ├── __init__.py ├── decorators │ ├── __init__.py │ └── singleton.py └── environment │ ├── Configuration.py │ └── __init__.py ├── Dockerfile ├── LICENSE ├── README.md ├── ai_helpers.py ├── app.py ├── appUtils.py ├── audio_helpers.py ├── cache └── .gitkeep ├── config.py ├── docker-compose-deploy.yaml ├── docker-compose-redis_only.yaml ├── docker-compose.yml ├── docs ├── CODE_OF_CONDUCT.md ├── Cloud-Hosting │ ├── aws.md │ ├── cloudserver.md │ ├── index.md │ └── kamatera.md ├── How-To-Guide │ ├── addcustomtoolsviaui.md │ ├── customtools.md │ ├── index.md │ ├── opensource.md │ ├── troubleshooting.md │ └── twilio.md ├── Self-Hosting │ ├── configuration.md │ ├── deployment.md │ ├── index.md │ ├── installation.md │ ├── prerequisites.md │ ├── runasservice.md │ └── setup.md ├── contribution.md ├── images │ ├── Add_Tool.png │ ├── Knotie-ai.png │ ├── admin_save.png │ ├── admin_settings.png │ ├── custom_tools.png │ ├── image.png │ └── submit_tool.png ├── improvements.md └── testing.md ├── generated_tools └── __init__.py ├── openapi_specs └── __init__.py ├── prompts.py ├── requirements.txt ├── retype.json ├── retype.yml ├── stages.py ├── templates ├── admin.html └── index.html ├── testAISalesAgent.py ├── testConversationCache.py ├── tools.py └── tools_helper.py /.env_sample: -------------------------------------------------------------------------------- 1 | # Flask Configuration 2 | SECRET_KEY=Secret12345787 3 | -------------------------------------------------------------------------------- /.github/workflows/docker-image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avijeett007/Knotie-AI/HEAD/.github/workflows/docker-image.yml -------------------------------------------------------------------------------- /.github/workflows/retype-action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avijeett007/Knotie-AI/HEAD/.github/workflows/retype-action.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avijeett007/Knotie-AI/HEAD/.gitignore -------------------------------------------------------------------------------- /Ai_Model_Training/OpenAI/BHealthy/BHealth_tool_calling_data.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avijeett007/Knotie-AI/HEAD/Ai_Model_Training/OpenAI/BHealthy/BHealth_tool_calling_data.jsonl -------------------------------------------------------------------------------- /Ai_Model_Training/OpenAI/BHealthy/BHealthy_data.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avijeett007/Knotie-AI/HEAD/Ai_Model_Training/OpenAI/BHealthy/BHealthy_data.jsonl -------------------------------------------------------------------------------- /Ai_Model_Training/OpenAI/Sample_Prompts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avijeett007/Knotie-AI/HEAD/Ai_Model_Training/OpenAI/Sample_Prompts -------------------------------------------------------------------------------- /Ai_Model_Training/OpenAI/train_openai_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avijeett007/Knotie-AI/HEAD/Ai_Model_Training/OpenAI/train_openai_model.py -------------------------------------------------------------------------------- /ConversationCache/CacheManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avijeett007/Knotie-AI/HEAD/ConversationCache/CacheManager.py -------------------------------------------------------------------------------- /ConversationCache/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avijeett007/Knotie-AI/HEAD/ConversationCache/__init__.py -------------------------------------------------------------------------------- /ConversationCache/decorators/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avijeett007/Knotie-AI/HEAD/ConversationCache/decorators/__init__.py -------------------------------------------------------------------------------- /ConversationCache/decorators/singleton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avijeett007/Knotie-AI/HEAD/ConversationCache/decorators/singleton.py -------------------------------------------------------------------------------- /ConversationCache/environment/Configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avijeett007/Knotie-AI/HEAD/ConversationCache/environment/Configuration.py -------------------------------------------------------------------------------- /ConversationCache/environment/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avijeett007/Knotie-AI/HEAD/ConversationCache/environment/__init__.py -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avijeett007/Knotie-AI/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avijeett007/Knotie-AI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avijeett007/Knotie-AI/HEAD/README.md -------------------------------------------------------------------------------- /ai_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avijeett007/Knotie-AI/HEAD/ai_helpers.py -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avijeett007/Knotie-AI/HEAD/app.py -------------------------------------------------------------------------------- /appUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avijeett007/Knotie-AI/HEAD/appUtils.py -------------------------------------------------------------------------------- /audio_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avijeett007/Knotie-AI/HEAD/audio_helpers.py -------------------------------------------------------------------------------- /cache/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avijeett007/Knotie-AI/HEAD/config.py -------------------------------------------------------------------------------- /docker-compose-deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avijeett007/Knotie-AI/HEAD/docker-compose-deploy.yaml -------------------------------------------------------------------------------- /docker-compose-redis_only.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avijeett007/Knotie-AI/HEAD/docker-compose-redis_only.yaml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avijeett007/Knotie-AI/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avijeett007/Knotie-AI/HEAD/docs/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /docs/Cloud-Hosting/aws.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avijeett007/Knotie-AI/HEAD/docs/Cloud-Hosting/aws.md -------------------------------------------------------------------------------- /docs/Cloud-Hosting/cloudserver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avijeett007/Knotie-AI/HEAD/docs/Cloud-Hosting/cloudserver.md -------------------------------------------------------------------------------- /docs/Cloud-Hosting/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avijeett007/Knotie-AI/HEAD/docs/Cloud-Hosting/index.md -------------------------------------------------------------------------------- /docs/Cloud-Hosting/kamatera.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avijeett007/Knotie-AI/HEAD/docs/Cloud-Hosting/kamatera.md -------------------------------------------------------------------------------- /docs/How-To-Guide/addcustomtoolsviaui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avijeett007/Knotie-AI/HEAD/docs/How-To-Guide/addcustomtoolsviaui.md -------------------------------------------------------------------------------- /docs/How-To-Guide/customtools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avijeett007/Knotie-AI/HEAD/docs/How-To-Guide/customtools.md -------------------------------------------------------------------------------- /docs/How-To-Guide/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avijeett007/Knotie-AI/HEAD/docs/How-To-Guide/index.md -------------------------------------------------------------------------------- /docs/How-To-Guide/opensource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avijeett007/Knotie-AI/HEAD/docs/How-To-Guide/opensource.md -------------------------------------------------------------------------------- /docs/How-To-Guide/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avijeett007/Knotie-AI/HEAD/docs/How-To-Guide/troubleshooting.md -------------------------------------------------------------------------------- /docs/How-To-Guide/twilio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avijeett007/Knotie-AI/HEAD/docs/How-To-Guide/twilio.md -------------------------------------------------------------------------------- /docs/Self-Hosting/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avijeett007/Knotie-AI/HEAD/docs/Self-Hosting/configuration.md -------------------------------------------------------------------------------- /docs/Self-Hosting/deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avijeett007/Knotie-AI/HEAD/docs/Self-Hosting/deployment.md -------------------------------------------------------------------------------- /docs/Self-Hosting/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avijeett007/Knotie-AI/HEAD/docs/Self-Hosting/index.md -------------------------------------------------------------------------------- /docs/Self-Hosting/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avijeett007/Knotie-AI/HEAD/docs/Self-Hosting/installation.md -------------------------------------------------------------------------------- /docs/Self-Hosting/prerequisites.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avijeett007/Knotie-AI/HEAD/docs/Self-Hosting/prerequisites.md -------------------------------------------------------------------------------- /docs/Self-Hosting/runasservice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avijeett007/Knotie-AI/HEAD/docs/Self-Hosting/runasservice.md -------------------------------------------------------------------------------- /docs/Self-Hosting/setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avijeett007/Knotie-AI/HEAD/docs/Self-Hosting/setup.md -------------------------------------------------------------------------------- /docs/contribution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avijeett007/Knotie-AI/HEAD/docs/contribution.md -------------------------------------------------------------------------------- /docs/images/Add_Tool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avijeett007/Knotie-AI/HEAD/docs/images/Add_Tool.png -------------------------------------------------------------------------------- /docs/images/Knotie-ai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avijeett007/Knotie-AI/HEAD/docs/images/Knotie-ai.png -------------------------------------------------------------------------------- /docs/images/admin_save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avijeett007/Knotie-AI/HEAD/docs/images/admin_save.png -------------------------------------------------------------------------------- /docs/images/admin_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avijeett007/Knotie-AI/HEAD/docs/images/admin_settings.png -------------------------------------------------------------------------------- /docs/images/custom_tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avijeett007/Knotie-AI/HEAD/docs/images/custom_tools.png -------------------------------------------------------------------------------- /docs/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avijeett007/Knotie-AI/HEAD/docs/images/image.png -------------------------------------------------------------------------------- /docs/images/submit_tool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avijeett007/Knotie-AI/HEAD/docs/images/submit_tool.png -------------------------------------------------------------------------------- /docs/improvements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avijeett007/Knotie-AI/HEAD/docs/improvements.md -------------------------------------------------------------------------------- /docs/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avijeett007/Knotie-AI/HEAD/docs/testing.md -------------------------------------------------------------------------------- /generated_tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openapi_specs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avijeett007/Knotie-AI/HEAD/prompts.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avijeett007/Knotie-AI/HEAD/requirements.txt -------------------------------------------------------------------------------- /retype.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avijeett007/Knotie-AI/HEAD/retype.json -------------------------------------------------------------------------------- /retype.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avijeett007/Knotie-AI/HEAD/retype.yml -------------------------------------------------------------------------------- /stages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avijeett007/Knotie-AI/HEAD/stages.py -------------------------------------------------------------------------------- /templates/admin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avijeett007/Knotie-AI/HEAD/templates/admin.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avijeett007/Knotie-AI/HEAD/templates/index.html -------------------------------------------------------------------------------- /testAISalesAgent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avijeett007/Knotie-AI/HEAD/testAISalesAgent.py -------------------------------------------------------------------------------- /testConversationCache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avijeett007/Knotie-AI/HEAD/testConversationCache.py -------------------------------------------------------------------------------- /tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avijeett007/Knotie-AI/HEAD/tools.py -------------------------------------------------------------------------------- /tools_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avijeett007/Knotie-AI/HEAD/tools_helper.py --------------------------------------------------------------------------------