openai/gpt-4-turbo-preview
$10.00
Input / 1M
$30.00
Output / 1M
128K
Context
—
Speed
Capabilities
json_modetools
Use gpt-4-turbo-preview via Relay
Configure the model alias in YAML, then call it from Python.
YAML
# models.yaml
version: 1
models:
gpt:
target: openai/gpt-4-turbo-preview
credential: $env.OPENAI_API_KEYPython
from relay import Hub
async with Hub.from_yaml("models.yaml") as hub:
resp = await hub.chat(
"gpt",
messages=[{"role": "user", "content": "Hello"}],
)
print(resp.text, resp.cost_usd)pip install ai5labs-relay · full docs on GitHub