Skip to content

Latest commit

 

History

History
38 lines (26 loc) · 620 Bytes

File metadata and controls

38 lines (26 loc) · 620 Bytes

phoneAgentCall

A minimal FastAPI REST API and Streamlit demo for interacting with a RetellAI agent.

Features

  • REST API endpoint to call RetellAI agent (ID: agent_67ce45e84e8ba128a66aad5b64)
  • Minimal Streamlit web UI for demonstration
  • Modular, testable Python codebase

Setup

pip install -r requirements.txt

Run API

uvicorn src.main:app --reload

Run Demo UI

streamlit run src/demo.py

Testing

pytest

Configuration

  • Place any API keys or secrets in a .env file (see env.template).

See PLANNING.md for architecture and conventions.