Integrations
Connect WAYSCloud services to your applications.
OpenAI Compatibility
The LLM API is fully OpenAI-compatible:
python
from openai import OpenAI
client = OpenAI(
base_url="https://api.wayscloud.services/v1/llm",
api_key="wayscloud_llm_xxx"
)
response = client.chat.completions.create(
model="qwen3-80b-instruct",
messages=[{"role": "user", "content": "Hello!"}]
)S3 Compatibility
Storage is S3-compatible. Use any S3 SDK:
python
import boto3
s3 = boto3.client('s3',
endpoint_url='https://storage.wayscloud.services',
aws_access_key_id='YOUR_ACCESS_KEY',
aws_secret_access_key='YOUR_SECRET_KEY'
)