OpenAI GPT API

This section provides detailed information on how to use the OpenAI GPT models. Below are the supported models and usage instructions:

Supported Models

  • GPT-3.5: General-purpose model for most tasks.
  • GPT-4: More advanced model, offering improved performance for complex tasks.
  • GPT-4o: Optimized for cost-effective and faster API calls with slightly reduced performance.

Command Example


POST /api/v1/command
{
    "api_key": "your-api-key",
    "session_id": "unique-session-id",
    "message": "What is the weather like today?",
    "id_model": "GPT-3.5"
}
                    

Response:


{
    "session_id": "unique-session-id",
    "response": "The weather today is sunny with a chance of rain later.",
    "status": "success"
}
                    

Anthropic Claude API

Anthropic Claude models provide advanced natural language capabilities for a variety of tasks.

Supported Models

  • Claude 1: Basic language understanding and generation tasks.
  • Claude 2: Advanced language processing with improved reasoning and complex task handling.
  • Claude 3: State-of-the-art model for deep reasoning, decision making, and multimodal data integration.

Command Example


POST /api/v1/command
{
    "api_key": "your-api-key",
    "session_id": "unique-session-id",
    "message": "How do I improve my coding skills?",
    "id_model": "Claude 2"
}
                    

Response:


{
    "session_id": "unique-session-id",
    "response": "To improve your coding skills, practice is key. Try building small projects and collaborating with others.",
    "status": "success"
}
                    

AI21 Jurassic API

AI21 Jurassic models are optimized for language generation tasks and understanding context over larger datasets.

Supported Models

  • Jurassic-2 Light: For simple tasks like keyword extraction and sentiment analysis.
  • Jurassic-2 Mid: Balances performance with cost, suitable for complex question answering and summarization tasks.
  • Jurassic-2 Ultra: The most powerful model for advanced reasoning and decision-making applications.

Command Example


POST /api/v1/command
{
    "api_key": "your-api-key",
    "session_id": "unique-session-id",
    "message": "Can you summarize this article?",
    "id_model": "Jurassic-2 Ultra"
}
                    

Response:


{
    "session_id": "unique-session-id",
    "response": "This article discusses advancements in AI, including new neural network architectures and their applications in various industries.",
    "status": "success"
}
                    

Cohere Command API

Cohere Command provides models that specialize in conversational AI, text generation, and language understanding.

Supported Models

  • Cohere Command Base: A good starting point for general language tasks.
  • Cohere Command Plus: Optimized for more complex language generation and contextual understanding.

Command Example


POST /api/v1/command
{
    "api_key": "your-api-key",
    "session_id": "unique-session-id",
    "message": "What are the benefits of renewable energy?",
    "id_model": "Cohere Command Plus"
}
                    

Response:


{
    "session_id": "unique-session-id",
    "response": "Renewable energy sources such as solar and wind help reduce greenhouse gas emissions and dependency on fossil fuels.",
    "status": "success"
}
                    

DeepSeek GPT API

DeepSeek GPT is designed for specialized natural language tasks, especially for industries like healthcare, finance, and legal fields.

Supported Models

  • DeepSeek R1: 700B parameter model, optimized for high-end AI workloads and advanced decision-making tasks.

Command Example


POST /api/v1/command
{
    "api_key": "your-api-key",
    "session_id": "unique-session-id",
    "message": "How can AI help in healthcare?",
    "id_model": "DeepSeek R1"
}
                    

Response:


{
    "session_id": "unique-session-id",
    "response": "AI can help in healthcare by improving diagnostics, streamlining patient care, and personalizing treatment options.",
    "status": "success"
}
                    

General API Commands

This section provides useful general commands that apply across all AI models in the system.

Check Remaining Session Time


POST /api/v1/command
{
    "api_key": "your-api-key",
    "session_id": "unique-session-id",
    "message": "Check remaining time",
    "id_model": "Any"
}
                    

Response:


{
    "session_id": "unique-session-id",
    "remaining_time": "23 hours 50 minutes",
    "status": "success"
}
                    

Check Monthly Billing


POST /api/v1/command
{
    "api_key": "your-api-key",
    "session_id": "unique-session-id",
    "message": "How much do I owe this month?",
    "id_model": "Any"
}
                    

Response:


{
    "session_id": "unique-session-id",
    "monthly_billing": "$9000",
    "status": "success"
}
                    

Error Handling

This section outlines common errors users might encounter while interacting with the API and how to handle them.

Common Errors

  • IP Mismatch: "The IP address from which this request was made does not match the registered IP. Please update your server IP in CRM."
  • Expired Service: "Your service has expired. Please renew your subscription or contact support for assistance."
  • Invalid API Key: "Invalid API Key. Please check your credentials and try again."
  • Missing Parameters: "Required parameters missing in the request. Please ensure that all required fields are provided."
  • Too Many Requests: "Too many requests. Please slow down or contact support for further assistance."
  • Server Connection Issue: "Unable to connect to the server. Please try again later or contact support."
  • Access Denied: "You do not have access to this model. Please check your subscription or contact support."
  • Invalid Session: "The session has expired or is invalid. Please start a new session."
  • Insufficient Quota: "You have exceeded your usage quota. Please upgrade your plan or contact support for more details."
  • Server Timeout: "The request took too long to process. Please try again later or contact support for assistance."

How to Resolve Errors

If you encounter any of the above errors, please take the following steps:

  • Ensure that your API key and session ID are correct.
  • Check if your service subscription has expired and renew it if necessary.
  • If the error is related to IP mismatch, please update the IP address registered in our CRM system.
  • For technical issues that persist, please contact our support team by clicking the button below.

To submit a support ticket, please provide your API key, a screenshot of the error message, and the full error details.

Contact Support