Get assistant details by assistant_id
Parameters:
assistant_id The ID of the assistant to retrieve.
31 32 33 34
# File 'lib/openai/assistant_client.rb', line 31 def get_assistant_by_id(assistant_id) api_response = call_get("/assistants/#{assistant_id}") Model::Assistant.new(api_response) end