call-center-ai
Send a phone call from AI agent, in an API call. Or, directly call the bot from the configured phone number!
File Explorer
Download Latest Version (.zip)- devcontainer.json
- codeql.yml
- pipeline.yaml
- dependabot.yml
- extensions.json
- settings.json
- __init__.py
- ai_search.py
- ai_translation.py
- app_configuration.py
- cache.py
- cognitive_service.py
- communication_services.py
- conversation.py
- database.py
- llm.py
- monitoring.py
- prompts.py
- queue.py
- resources.py
- root.py
- sms.py
- __init__.py
- phone_numbers.py
- __init__.py
- cache.py
- call_events.py
- call_llm.py
- call_utils.py
- config.py
- features.py
- http.py
- identity.py
- llm_tools.py
- llm_utils.py
- llm_worker.py
- logging.py
- monitoring.py
- resources.py
- translation.py
- __init__.py
- call.py
- claim.py
- error.py
- message.py
- next.py
- readiness.py
- reminder.py
- synthesis.py
- training.py
- __init__.py
- ai_search.py
- azure_queue_storage.py
- communication_services.py
- cosmos_db.py
- icache.py
- isearch.py
- isms.py
- istore.py
- memory.py
- redis.py
- twilio.py
- base.html.jinja
- call_me.html.jinja
- list.html.jinja
- single.html.jinja
- 9b5ad71b2ce5302211f9c61530b329a4922fc6a4
- fb374d419588a4632f3f557e76b4b70aebbca790
- README.md
- main.py
- app.bicep
- main.bicep
- Dockerfile
- version
- demo.json
- demo.mp4
- user_report.png
- blocklist.csv
- blocklist.ipynb
- lexicon.xml
- loading.wav
- __init__.py
- cache.py
- conftest.py
- conversations.yaml
- llm.py
- local.py
- search.py
- store.py
- .dockerignore
- .editorconfig
- .env.example
- .gitignore
- .gitmodules
- .syft.yaml
- .version.config
- config-local-example.yaml
- config-remote-example.yaml
- LICENSE
- Makefile
- pyproject.toml
- README.md
- uv.lock
# Installation Guide
git clone https://github.com/microsoft/call-center-ai
Downloads the entire project code from GitHub to your computer.
cd call-center-ai
Moves into the project folder you just downloaded.
2. Docker
Easy Recommended- Git Needed to download the project code from GitHub.
- Docker Desktop Needed to build and run containers. Install it and keep it running in the background.
docker build -f cicd/Dockerfile -t call-center-ai .
Builds a runnable image based on the Dockerfile.
docker run -p 8080:80 call-center-ai
Runs the built image as an actual container.
3. Python
Easy> python3 -m tests.local
Runs the Python script (or module).
Pulled directly from this repo's README.
4. Make
Medium- Git Needed to download the project code from GitHub.
- Make Usually pre-installed on Linux/macOS. On Windows, install separately (e.g. via MSYS2 or WSL).
make deploy name=my-rg-name
Compiles the code based on the generated build configuration to produce an executable.
make logs name=my-rg-name
Compiles the code based on the generated build configuration to produce an executable.
make deploy-bicep deploy-post name=my-rg-name
Compiles the code based on the generated build configuration to produce an executable.
make tunnel
Compiles the code based on the generated build configuration to produce an executable.
make dev
Compiles the code based on the generated build configuration to produce an executable.
Pulled directly from this repo's README.
