ComposiMold Reusable Rubber

Heat, Pour, and Reuse. Hundreds of Molds

Shop our Sales


Most Popular

New Products

import requests api_key = "d9358993-5cd2-4129-8a16-28c0f13ccc0f" chat_session = requests.post( 'https://agentivehub.com/api/chat/session', json = { "api_key" : "api_key", "assistant_id" : "53017552-f041-42e5-9fb3-ddd7389d367f", } ) # Get the chat session ID chat_session_id = chat_session.json()["session_id"] # Send a message to the chat session chat_response = { "api_key" : api_key, "session_id" : chat_session_id, "type" : "custom_code", "assistant_id" : "98c10c16-53bc-4704-883c-a7a6ac9ca6b1", "messages" : [{"role": "user", "content": "Say Hello!"}] } req = requests.post( 'https://agentivehub.com/api/chat', json = chat_response ) resp = req.json()