AI Capabilities

AI features available through AppEngine

Appmint Team9/14/2025

AI Capabilities

AppEngine provides AI endpoints. Here's what's actually available.

Available AI Endpoints

Content Generation

  • ai/generate - Generate content with AI
  • ai/direct - Direct AI queries
  • ai/advanced - Advanced AI operations

AI Assistants

  • ai/assistants/create - Create an assistant
  • ai/assistants/get - Get assistant details
  • ai/assistants/run - Run an assistant

AI Agents

  • ai/agent/process - Process with AI agent
  • ai/agent/chat - Chat with AI agent
  • ai/agent/stream - Stream AI responses

Other AI Features

  • ai/classify - Classification tasks
  • ai/list_models - List available models
  • ai/thread/create - Create conversation threads
  • ai/thread/add_message - Add messages to threads

How to Use

Make requests through the proxy:

// Generate content
const response = await fetch('/api/ai/generate', {
  method: 'POST',
  headers: { 'Content-Type': 'application/json' },
  body: JSON.stringify({
    prompt: 'Your prompt here',
    model: 'gpt-4'
  })
});

// Use AI agent
const response = await fetch('/api/ai/agent/process', {
  method: 'POST',
  headers: { 'Content-Type': 'application/json' },
  body: JSON.stringify({
    input: 'User input',
    agentId: 'agent_id'
  })
});

What It Actually Does

  • Connects to AI models (likely OpenAI/GPT)
  • Processes requests through AppEngine
  • Returns AI-generated responses

That's it. No autonomous agents, no predictive analytics, no quantum computing bullshit.