🆕Thanoy Legal AI Chatbot

"Thanoy" is an AI lawyer and legal consultant specializing in providing legal advice through an AI Chatbot, offering a convenient and efficient avenue for accessing legal services. Tonoi possesses extensive legal knowledge and expertise, dedicated to enhancing public understanding of the law through an AI platform that serves as both a legal advisor and consultant. The platform aims to empower everyone with knowledge of the law, enabling them to effectively understand legal matters and protect their rights.

Feature

❇️ Experience immediate and swift legal consultations, responding within just 15 seconds!

❇️ Our AI Legal Training is proficient in answering questions from a database containing over 10,000 legal articles, ensuring the provision of comprehensive and unbiased information.

❇️ In addition to providing rapid responses, our AI is designed to alleviate the workload of legal professionals by efficiently addressing repetitive and common legal queries

Usecase

❇️ Implementing collaborative efforts with legal professionals to enhance the efficiency of legal proceedings.

❇️ Establishing a chatbot system dedicated to providing legal consultations.

❇️ Building a legal tutoring system aimed at aiding in exam preparation and conducting legal analyses.

Pricing

🔶 0.3 ic per request

API Documentation

Example Code using Node.js

const axios = require('axios');
let data = JSON.stringify({
  "query": "นายก้องตกลงให้นายเก้งยืมรถแทรกเตอร์ไปไถนาเป็นเวลา 3 เดือน เมื่อนายเก้งใช้รถแทรกเตอร์คันดังกล่าวไปได้หนึ่งเดือน นายกวางเพื่อนบ้านที่อยู่ติดกันเกิดรถแทรกเตอร์เสีย จึงได้มาขอยืม รถแทรกเตอร์จากนายเก้งเพื่อใช้ชั่วคราวในช่วงที่เอารถแทรกเตอร์ของนายกวางไปซ่อม นายเก้ง เห็นว่าบ้านของตนเองกับนายกวางอยู่ติดกัน ถ้าตนจะเอารถแทรกเตอร์ของนายก้องคืนเมื่อไหร่ ก็สามารถให้นายกวางเอาคืนได้ทันที จึงให้นายกวางยืมรถแทรกเตอร์คัน ดังกล่าว ต่อมาเกิดฝนตกหนัก ทำให้น้ำท่วมทั้งตำบลอย่างฉับพลัน ทำให้รถแทรกเตอร์และเครื่องยนต์การเกษตรอื่นๆ ของชาวบ้าน ทั้งตำบลนั้นเสียหายทั้งหมด ดังนี้ นายก้องจะเรียกให้นายเก้งรับผิดในความเสียหายของรถแทรกเตอร์คันดังกล่าวได้หรือไม่ อย่างไร"
});

let config = {
  method: 'post',
  maxBodyLength: Infinity,
  url: 'https://api.iapp.co.th/thanoy',
  headers: { 
    'apikey': 'YOUR_API_KEY', 
    'Content-Type': 'application/json'
  },
  data : data
};

axios.request(config)
.then((response) => {
  console.log(JSON.stringify(response.data));
})
.catch((error) => {
  console.log(error);
});

Parameters

Header

API Key * String Your API key to call this API

Body

query * String The question string that you need to input to API

Response

🟢 200: OK Sample Response when request has succeeded

Return Value

Example JSON Response

{
    "query": "โดนโจรตีหัว ผิดมาตราอะไรอ่ะครับ",
    "response": [
        {
            "type": "text",
            "text": "การโดนโจรตีหัว อาจเข้าข่ายความผิดฐานทำร้ายร่างกาย ตามประมวลกฎหมายอาญา มาตรา 297 ซึ่งบัญญัติว่า \"ผู้ใดทำร้ายผู้อื่นจนเป็นเหตุให้เกิดอันตรายแก่กายหรือจิตใจของผู้อื่นนั้น ผู้นั้นกระทำความผิดฐานทำร้ายร่างกาย ต้องระวางโทษจำคุกไม่เกินสองปี หรือปรับไม่เกินสี่หมื่นบาท หรือทั้งจำทั้งปรับ\"\n\nการกระทำของโจรที่ตีหัวผู้อื่น ถือเป็นการทำร้ายร่างกายที่ก่อให้เกิดอันตรายแก่กายของผู้อื่น จึงเข้าข่ายความผิดฐานทำร้ายร่างกายตามมาตรา 297 ครับ"
        }
    ],
    "responseType": "gpt"
}

Last updated