Skip to content

CallGPT/Zajil

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Jul 20, 2024
dedd777 Β· Jul 20, 2024

History

4 Commits
Jul 20, 2024
Jul 17, 2024
Jul 20, 2024
Jul 20, 2024
Jul 20, 2024
Jul 20, 2024
Jul 20, 2024
Jul 17, 2024
Jul 20, 2024
Jul 20, 2024
Jul 17, 2024
Jul 17, 2024
Jul 17, 2024
Jul 17, 2024
Jul 17, 2024

Repository files navigation

Zajil API Documentation 🌟

Introduction πŸŽ‰

Welcome to the Zajil API documentation! This project, built with Flask, enables voice and text order management, chat history retrieval, and invoice generation. Below are the available API endpoints:

Base URL:

https://api.call-gpt.tech

Endpoints πŸ“

1. Convert Text to Voice πŸ“‹

To convert text to voice, send a POST request to /api/v1/order/voice/<chat_id> with a JSON payload containing the text. AI will generate a response and produce a corresponding audio file.

  • Request Format:

    {
      "text": "Your text here"
    }
  • Response:

    {
      "voiceLink": "https://api.call-gpt.tech/api/v1/voice/<voice_id>"
    }

2. Chat πŸ”

To start a chat session, send a POST request to /api/v1/order/chat/<chat_id> with a JSON payload containing the text. The AI will respond, and the chat history will be recorded in the database.

  • Request Format:

    {
      "text": "Your text here"
    }
  • Response:

    {
      "response": "AI's response here"
    }

3. View Chat History ♻️

To retrieve the chat history for a given chat_id, send a GET request to /api/v1/order/history/<chat_id>. It returns all recorded messages in the chat.

  • Response:
    {
      "chat_history": [
        {
          "role": "user",
          "content": "Message content here"
        },
        {
          "role": "system",
          "content": "AI response here"
        }
      ]
    }

4. Close Order and Generate Invoice βœ…

To close an order and generate an invoice, send a GET request to /api/v1/order/close/<chat_id>. AI will summarize the order details, and an invoice will be created.

  • Response:
    {
      "response": "Order closed successfully"
    }

5. Get All Orders πŸ“‘

To retrieve all orders for a specific user, send a GET request to /api/v1/get_all_orders. Include the user's phone number in the request headers.

  • Request Header:

    phone: User's phone number
    
  • Response:

    {
      "orders": [
        {
          "order": "Order details here",
          "status": "Order status",
          "price": "Order price",
          "location": "Order location"
        }
      ]
    }

6. Get All Products πŸ›’

To retrieve all products available, send a GET request to /api/v1/get_all_products.

  • Response:
    {
      "products": [
        {
          "name": "Product name",
          "price": "Product price",
          "ingredients": "Product ingredients",
          "category": "Product category",
          "stock": "Product stock"
        }
      ]
    }

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published