import { Orq } from '@orq-ai/node';
const client = new Orq({
apiKey: process.env.ORQ_API_KEY,
});
const result = await client.hub.get({
id: 'hub_01HZXW2K7Y8Q9M0N1P2R3S4T5V',
});
console.log(result.hubItem.displayName);
import os
from orq_ai_sdk import Orq
client = Orq(api_key=os.environ["ORQ_API_KEY"])
result = client.hub.get(
id="hub_01HZXW2K7Y8Q9M0N1P2R3S4T5V",
)
print(result.hub_item.display_name)
import { Orq } from '@orq-ai/node';
const client = new Orq({
apiKey: process.env.ORQ_API_KEY,
});
const result = await client.hub.get({
id: 'hub_01HZXW2K7Y8Q9M0N1P2R3S4T5V',
});
console.log(result.hubItem.displayName);
import os
from orq_ai_sdk import Orq
client = Orq(api_key=os.environ["ORQ_API_KEY"])
result = client.hub.get(
id="hub_01HZXW2K7Y8Q9M0N1P2R3S4T5V",
)
print(result.hub_item.display_name)