Qwen3-30B-A3B-Instruct-2507-FP8 is an instruction-tuned 30B-parameter FP8 causal language model for long-context (256K) text generation and reasoning, supporting chat/QA, summarization, multilingual tasks, math/science problem solving, coding, and tool-augmented workflows.
"TextContent":{"oneOf":[{"type":"string"},{"type":"array","items":{"$ref":"#/components/schemas/TextContentItem"}}],"description":"Text content that can be provided either as a simple string or as an array of TextContentItem objects"},
"ToolCalls":{"type":"object","required":["function","id","type"],"properties":{"function":{"type":"object","required":["name","arguments"],"properties":{"name":{"type":"string"},"arguments":{"type":"string"}}},"id":{"type":"string"},"type":{"enum":["function"]}},"description":"The name and arguments of a function that should be called, as generated by the model."},
"ToolDefinition":{"type":"object","required":["type","function"],"properties":{"type":{"type":"string","enum":["function"]},"function":{"type":"object","required":["name"],"properties":{"name":{"type":"string"},"description":{"type":"string"},"parameters":{"type":"object","additionalProperties":true},"strict":{"type":"boolean","default":false}}}},"description":"Definition of a tool that can be used by the model"}