Agentic AI – Service Now Agent
servicenow-agentic-ai/
│
├── app/
│
│ ├── api/
│ │ ├── routes.py
│ │ └── dependencies.py
│ │
│ ├── agents/
│ │ ├── supervisor_agent.py
│ │ ├── incident_agent.py
│ │ ├── knowledge_agent.py
│ │ └── request_agent.py
│ │
│ ├── graph/
│ │ ├── state.py
│ │ ├── nodes.py
│ │ ├── router.py
│ │ └── graph.py
│ │
│ ├── tools/
│ │ ├── incident_tools.py
│ │ ├── kb_tools.py
│ │ └── request_tools.py
│ │
│ ├── services/
│ │ ├── servicenow_service.py
│ │ ├── llm_service.py
│ │ ├── vector_service.py
│ │ ├── embedding_service.py
│ │ └── auth_service.py
│ │
│ ├── memory/
│ │ ├── conversation_memory.py
│ │ └── checkpoint_store.py
│ │
│ ├── rag/
│ │ ├── chunker.py
│ │ ├── retriever.py
│ │ ├── indexer.py
│ │ └── ingestion.py
│ │
│ ├── db/
│ │ ├── models.py
│ │ ├── session.py
│ │ └── repositories.py
│ │
│ ├── schemas/
│ │ ├── chat.py
│ │ ├── incident.py
│ │ └── response.py
│ │
│ ├── middleware/
│ │ ├── logging.py
│ │ ├── tracing.py
│ │ └── auth.py
│ │
│ ├── core/
│ │ ├── config.py
│ │ ├── constants.py
│ │ └── prompts.py
│ │
│ └── main.py
│
├── tests/
│
├── infra/
│ ├── cloudrun/
│ ├── terraform/
│ └── docker/
│
├── docs/
│
├── requirements.txt
├── Dockerfile
├── .env
└── README.md 