Skip to main content

Remoteconfigs

Retrieve a Remoteconfig

Retrieve a remote config
from orq_ai_sdk import Orq
import os

with Orq(
    api_key=os.getenv("ORQ_API_KEY", ""),
) as orq:

    res = orq.remoteconfigs.retrieve()

    # Handle response
    print(res)