TikHub-AI-Proxy
    • Overview (PLEASE READ)
    • Streaming API
    • OpenAI
      • OpenAI response
      • OpenAI embeddings
      • OpenAI audio transcription
      • OpenAI chat completion
    • Claude
      • Claude chat completion
      • Claude message
    • DeepSeek
      • DeepSeek chat completion
    • Sora
      • Sora video generation
      • Get Sora video status
      • Download Sora video content
      • Remix Sora video
      • List Sora videos
      • Delete Sora video
    • Gemini
      • Gemini content
    • Seedance
      • Seedance video generation
      • Retrieve Seedance task
    • Kling
      • Kling text-to-video
      • Retrieve Kling text-to-video task
      • Kling image-to-video
      • Retrieve Kling image-to-video task
    • Veo
      • Veo video generation
      • Fetch Veo video generation status
    • Schemas
      • ChatCompletionRequest
      • ChatMessage
      • Tool
      • ToolCall
      • ChatCompletionResponse
      • ChatCompletionChoice
      • ContentFilterResults
      • UsageInfo
      • EmbeddingRequest
      • EmbeddingResponse
      • TranscriptionRequest
      • TranscriptionResponse
      • ClaudeMessageRequest
      • ClaudeMessageResponse
      • VideoCreateRequest
      • VideoResponse
      • VideoRemixRequest
      • GeminiGenerateContentRequest
      • VideoListResponse
      • GeminiContent
      • VideoDeleteResponse
      • GeminiGenerationConfig
      • ResponseRequest
      • GeminiGenerateContentResponse
      • ResponseObject
      • SeedanceTaskRequest
      • SeedanceTaskCreateResponse
      • SeedanceTaskResponse
      • KlingText2VideoRequest
      • KlingImage2VideoRequest
      • KlingTaskResponse
      • KlingTaskDetailResponse
      • KlingTaskListResponse
      • VeoGenerateRequest
      • VeoOperationResponse
      • VeoFetchOperationRequest
      • VeoFetchOperationResponse

    ChatCompletionChoice

    {
        "index": 0,
        "message": {
            "role": "system",
            "content": "string",
            "name": "string",
            "tool_calls": [
                {
                    "id": "string",
                    "type": "function",
                    "function": {
                        "name": "string",
                        "arguments": "string"
                    }
                }
            ],
            "tool_call_id": "string"
        },
        "finish_reason": "stop",
        "logprobs": {},
        "content_filter_results": {
            "hate": {
                "filtered": true,
                "severity": "string"
            },
            "self_harm": {
                "filtered": true,
                "severity": "string"
            },
            "sexual": {
                "filtered": true,
                "severity": "string"
            },
            "violence": {
                "filtered": true,
                "severity": "string"
            },
            "jailbreak": {
                "filtered": true,
                "detected": true
            },
            "protected_material_code": {
                "filtered": true,
                "detected": true
            },
            "protected_material_text": {
                "filtered": true,
                "detected": true
            }
        }
    }
    Built with