Skip to content
This repository was archived by the owner on May 9, 2024. It is now read-only.

Latest commit

 

History

History
28 lines (17 loc) · 307 Bytes

README.md

File metadata and controls

28 lines (17 loc) · 307 Bytes

Dialogflow API Lite

A very simple Dialogflow API implementation.

Setup

Usage

# intent recognition
query = ""
contexts = []

config = {
    "project_id": project_id,
    "credential": credential,
}
df = Dialogflow(config)

result = df.detect_intent(query, contexts)