AI Capabilities
AppEngine provides AI endpoints. Here's what's actually available.
Available AI Endpoints
Content Generation
ai/generate- Generate content with AIai/direct- Direct AI queriesai/advanced- Advanced AI operations
AI Assistants
ai/assistants/create- Create an assistantai/assistants/get- Get assistant detailsai/assistants/run- Run an assistant
AI Agents
ai/agent/process- Process with AI agentai/agent/chat- Chat with AI agentai/agent/stream- Stream AI responses
Other AI Features
ai/classify- Classification tasksai/list_models- List available modelsai/thread/create- Create conversation threadsai/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.