var tribe_dropdowns = window.tribe_dropdowns || {};
( function( $, obj, _ ) {
'use strict';
obj.selector = {
dropdown: '.tribe-dropdown',
created: '.tribe-dropdown-created',
searchField: '.select2-search__field',
};
// Setup a Dependent
$.fn.tribe_dropdowns = function() {
obj.dropdown( this, {} );
return this;
};
obj.freefrom_create_search_choice = function( params ) {
if ( 'string' !== typeof params.term ) {
return null;
}
var term = params.term.trim();
if ( '' === term ) {
return null;
}
var args = this.options.options;
var $select = args.$select;
if (
term.match( args.regexToken )
&& (
! $select.is( '[data-int]' )
|| (
$select.is( '[data-int]' )
&& term.match( /\d+/ )
)
)
) {
var choice = { id: term, text: term, new: true };
if ( $select.is( '[data-create-choice-template]' ) ) {
choice.text = _.template( $select.data( 'createChoiceTemplate' ) )( { term: term } );
}
return choice;
}
return null;
};
/**
* Better Search ID for Select2, compatible with WordPress ID from WP_Query
*
* @param {object|string} e Searched object or the actual ID
* @return {string} ID of the object
*/
obj.search_id = function( e ) {
var id = undefined;
if ( 'undefined' !== typeof e.id ) {
id = e.id;
} else if ( 'undefined' !== typeof e.ID ) {
id = e.ID;
} else if ( 'undefined' !== typeof e.value ) {
id = e.value;
}
return undefined === e ? undefined : id;
};
/**
* Better way of matching results
*
* @param {string} term Which term we are searching for
* @param {string} text Search here
* @return {boolean}
*/
obj.matcher = function( params, data ) {
// If there are no search terms, return all of the data
if ( 'string' !== typeof params.term || params.term.trim() === '') {
return data;
}
// Do not display the item if there is no 'text' property
if ( typeof data.text === 'undefined' ) {
return null;
}
var term = params.term.trim();
var text = data.text;
var $select = $( data.element ).closest( 'select' );
var args = $select.data( 'dropdown' );
var result = text.toUpperCase().indexOf( term.toUpperCase() ) !== -1;
if ( ! result && 'undefined' !== typeof args.tags ){
var possible = _.where( args.tags, { text: text } );
if ( args.tags.length > 0 && _.isObject( possible ) ){
var test_value = obj.search_id( possible[0] );
result = test_value.toUpperCase().indexOf( term.toUpperCase() ) !== -1;
}
}
return result;
};
/**
* If the element used as the basis of a dropdown specifies one or more numeric/text
* identifiers in its val attribute, then use those to preselect the appropriate options.
*
* @param {object} $select
* @param {function} make_selection
*/
obj.init_selection = function( $select, make_selection ) {
var isMultiple = $select.is( '[multiple]' );
var options = $select.data( 'dropdown' );
var currentValues = $select.val().split( options.regexSplit );
var selectedItems = [];
$( currentValues ).each( function( index, value ) { // eslint-disable-line no-unused-vars
var searchFor = { id: this, text: this };
var data = options.ajax ? $select.data( 'options' ) : options.data;
var locatedItem = find_item( searchFor, data );
if ( locatedItem && locatedItem.selected ) {
selectedItems.push( locatedItem );
}
} );
if ( selectedItems.length && isMultiple ) {
make_selection( selectedItems );
} else if ( selectedItems.length ) {
make_selection( selectedItems[ 0 ] );
} else {
make_selection( false );
return;
}
};
/**
* Searches array 'haystack' for objects that match 'description'.
*
* The 'description' object should take the form { id: number, text: string }. The first
* object within the haystack that matches one of those two properties will be returned.
*
* If objects contain an array named 'children', then that array will also be searched.
*
* @param {Object} description
* @param {Array} haystack
*
* @return {Object|boolean}
*/
function find_item( description, haystack ) {
if ( ! _.isArray( haystack ) ) {
return false;
}
for ( var index in haystack ) {
var possible_match = haystack[ index ];
if ( possible_match.hasOwnProperty( 'id' ) && possible_match.id == description.id ) { // eslint-disable-line no-prototype-builtins,eqeqeq,max-len
return possible_match;
}
if ( possible_match.hasOwnProperty( 'text' ) && possible_match.text == description.text ) { // eslint-disable-line no-prototype-builtins,eqeqeq,max-len
return possible_match;
}
if ( possible_match.hasOwnProperty( 'children' ) && _.isArray( possible_match.children ) ) { // eslint-disable-line no-prototype-builtins,max-len
var subsearch = find_item( description, possible_match.children );
if ( subsearch ) {
return subsearch;
}
}
}
return false;
}
obj.getSelectClasses = function( $select ) {
var classesToRemove = [
'select2-hidden-accessible',
'hide-before-select2-init',
];
var originalClasses = $select.attr( 'class' ).split( /\s+/ );
return _.difference( originalClasses, classesToRemove );
};
obj.element = function( field, args ) {
var $select = $( field );
var args = $.extend( {}, args ); // eslint-disable-line no-redeclare
var carryOverData = [ // eslint-disable-line no-unused-vars
'depends',
'condition',
'conditionNot',
'condition-not',
'conditionNotEmpty',
'condition-not-empty',
'conditionEmpty',
'condition-empty',
'conditionIsNumeric',
'condition-is-numeric',
'conditionIsNotNumeric',
'condition-is-not-numeric',
'conditionChecked',
'condition-is-checked',
];
var $container;
// Add a class for dropdown created
$select.addClass( obj.selector.created.className() );
// args.debug = true;
// For Reference we save the jQuery element as an Arg.
args.$select = $select;
// Auto define the Width of the Select2.
args.dropdownAutoWidth = true;
args.width = 'resolve';
// CSS for the container
args.containerCss = {};
// Only apply visibility when it's a Visible Select2.
if ( $select.is( ':visible' ) ) {
args.containerCss.display = 'inline-block';
args.containerCss.position = 'relative';
}
// CSS for the dropdown
args.dropdownCss = {};
args.dropdownCss.width = 'auto';
// When we have this we replace the default with what's in the param.
if ( $select.is( '[data-dropdown-css-width]' ) ) {
args.dropdownCss.width = $select.data( 'dropdown-css-width' );
if ( ! args.dropdownCss.width || 'false' === args.dropdownCss.width ) {
delete args.dropdownCss.width;
delete args.containerCss;
}
}
// By default we allow The field to be cleared
args.allowClear = true;
if ( $select.is( '[data-prevent-clear]' ) ) {
args.allowClear = false;
}
// Pass the "Searching..." placeholder if specified
if ( $select.is( '[data-searching-placeholder]' ) ) {
args.formatSearching = $select.data( 'searching-placeholder' );
}
// If we are dealing with a Input Hidden we need to set the Data for it to work
if ( ! $select.is( '[data-placeholder]' ) && $select.is( '[placeholder]' ) ) {
args.placeholder = $select.attr( 'placeholder' );
}
// If we are dealing with a Input Hidden we need to set the Data for it to work.
if ( $select.is( '[data-options]' ) ) {
args.data = $select.data( 'options' );
}
// With less then 10 args we wouldn't show the search.
args.minimumResultsForSearch = 10;
// Prevents the Search box to show
if ( $select.is( '[data-hide-search]' ) ) {
args.minimumResultsForSearch = Infinity;
}
// Makes sure search shows up.
if ( $select.is( '[data-force-search]' ) ) {
delete args.minimumResultsForSearch;
}
// Allows freeform entry
if ( $select.is( '[data-freeform]' ) ) {
args.createTag = obj.freefrom_create_search_choice;
args.tags = true;
$select.data( 'tags', true );
}
if ( $select.is( '[multiple]' ) ) {
args.multiple = true;
// Set the max select items, if defined
if ( $select.is( '[data-maximum-selection-size]' ) ) {
args.maximumSelectionSize = $select.data( 'maximum-selection-size' );
}
// If you don't have separator, add one (comma)
if ( ! $select.is( 'data-separator' ) ) {
$select.data( 'separator', ',' );
}
if ( ! _.isArray( $select.data( 'separator' ) ) ) {
args.tokenSeparators = [ $select.data( 'separator' ) ];
} else {
args.tokenSeparators = $select.data( 'separator' );
}
args.separator = $select.data( 'separator' );
// Define the regular Exp based on
args.regexSeparatorElements = [ '^(' ];
args.regexSplitElements = [ '(?:' ];
$.each( args.tokenSeparators, function ( i, token ) {
args.regexSeparatorElements.push( '[^' + token + ']+' );
args.regexSplitElements.push( '[' + token + ']' );
} );
args.regexSeparatorElements.push( ')$' );
args.regexSplitElements.push( ')' );
args.regexSeparatorString = args.regexSeparatorElements.join( '' );
args.regexSplitString = args.regexSplitElements.join( '' );
args.regexToken = new RegExp( args.regexSeparatorString, 'ig' );
args.regexSplit = new RegExp( args.regexSplitString, 'ig' );
}
// Select also allows Tags, so we go with that too
if ( $select.is( '[data-tags]' ) ) {
args.tags = $select.data( 'tags' );
args.createSearchChoice = function( term, data ) { // eslint-disable-line no-unused-vars
if ( term.match( args.regexToken ) ) {
return { id: term, text: term };
}
};
if ( 0 === args.tags.length ) {
args.formatNoMatches = function() {
return $select.attr( 'placeholder' );
};
}
}
// When we have a source, we do an AJAX call
if ( $select.is( '[data-source]' ) ) {
var source = $select.data( 'source' );
// For AJAX we reset the data
args.data = { results: [] };
// Format for Parents breadcrumbs
args.formatResult = function ( item, container, query ) { // eslint-disable-line no-unused-vars,max-len
if ( 'undefined' !== typeof item.breadcrumbs ) {
return $.merge( item.breadcrumbs, [ item.text ] ).join( ' » ' );
}
return item.text;
};
// instead of writing the function to execute the request we use Select2's convenient helper.
args.ajax = {
dataType: 'json',
type: 'POST',
url: obj.ajaxurl(),
// parse the results into the format expected by Select2.
processResults: function ( response, page, query ) { // eslint-disable-line no-unused-vars
if ( ! $.isPlainObject( response ) || 'undefined' === typeof response.success ) {
console.error( 'We received a malformed Object, could not complete the Select2 Search.' ); // eslint-disable-line max-len
return { results: [] };
}
if (
! $.isPlainObject( response.data )
|| 'undefined' === typeof response.data.results
) {
console.error( 'We received a malformed results array, could not complete the Select2 Search.' ); // eslint-disable-line max-len
return { results: [] };
}
if ( ! response.success ) {
if ( 'string' === $.type( response.data.message ) ) {
console.error( response.data.message );
} else {
console.error( 'The Select2 search failed in some way... Verify the source.' );
}
return { results: [] };
}
return response.data;
},
};
// By default only send the source
args.ajax.data = function( search, page ) {
return {
action: 'tribe_dropdown',
source: source,
search: search,
page: page,
args: $select.data( 'source-args' ),
};
};
}
// Attach dropdown to container in DOM.
if ( $select.is( '[data-attach-container]' ) ) {
// If multiple, attach container without search.
if ( $select.is( '[multiple]' ) ) {
$.fn.select2.amd.define(
'AttachedDropdownAdapter',
[
'select2/utils',
'select2/dropdown',
'select2/dropdown/attachContainer',
],
function( utils, dropdown, attachContainer ) {
return utils.Decorate( dropdown, attachContainer );
}
);
args.dropdownAdapter = $.fn.select2.amd.require( 'AttachedDropdownAdapter' );
// If not multiple, attach container with search.
} else {
$.fn.select2.amd.define(
'AttachedWithSearchDropdownAdapter',
[
'select2/utils',
'select2/dropdown',
'select2/dropdown/search',
'select2/dropdown/minimumResultsForSearch',
'select2/dropdown/attachContainer',
],
function( utils, dropdown, search, minimumResultsForSearch, attachContainer ) {
var adapter = utils.Decorate( dropdown, attachContainer );
adapter = utils.Decorate( adapter, search );
adapter = utils.Decorate( adapter, minimumResultsForSearch );
return adapter;
}
);
args.dropdownAdapter = $.fn.select2.amd.require( 'AttachedWithSearchDropdownAdapter' );
}
}
// Save data on Dropdown
$select.data( 'dropdown', args );
$container = $select.select2TEC( args );
// Propagating original input classes to the select2 container.
$container.data( 'select2' ).$container.addClass( obj.getSelectClasses( $select ).join( ' ' ) );
// Propagating original input classes to the select2 container.
$container.data( 'select2' ).$container.removeClass( 'hide-before-select2-init' );
$container.on( 'select2:open', obj.action_select2_open );
/**
* @todo @bordoni Investigate how and if we should be doing this.
*
if ( carryOverData.length > 0 ) {
carryOverData.map( function( dataKey ) {
var attr = 'data-' + dataKey;
var val = $select.attr( attr );
if ( ! val ) {
return;
}
this.attr( attr, val );
}, $container );
}
*/
};
obj.ajaxurl = function() {
if ( 'undefined' !== typeof window.ajaxurl ) {
return window.ajaxurl;
}
if ( 'undefined' !== typeof TEC && 'undefined' !== typeof TEC.ajaxurl ) {
return TEC.ajaxurl;
}
console.error( 'Dropdowns framework cannot properly do an AJAX request without the WordPress `ajaxurl` variable setup.' ); // eslint-disable-line max-len
};
obj.action_select2_open = function( event ) { // eslint-disable-line no-unused-vars
var $select = $( this );
var select2Data = $select.data( 'select2' );
var $search = select2Data.$dropdown.find( obj.selector.searchField ); // eslint-disable-line es5/no-es6-methods,max-len
select2Data.$dropdown.addClass( obj.selector.dropdown.className() );
// If we have a placeholder for search, apply it!
if ( $select.is( '[data-search-placeholder]' ) ) {
$search.attr( 'placeholder', $select.data( 'searchPlaceholder' ) );
}
};
/**
* Configure the Drop Down Fields
*
* @param {jQuery} $fields All the fields from the page
* @param {array} args Allow extending the arguments
*
* @return {jQuery} Affected fields
*/
obj.dropdown = function( $fields, args ) {
var $elements = $fields.not( '.select2-offscreen, .select2-container, ' + obj.selector.created.className() ); // eslint-disable-line max-len
if ( 0 === $elements.length ) {
return $elements;
}
// Default args to avoid Undefined
if ( ! args ) {
args = {};
}
$elements
.each( function( index, element ) {
// Apply element to all given items and pass args
obj.element( element, args );
} );
// return to be able to chain jQuery calls
return $elements;
};
$( function() {
$( obj.selector.dropdown ).tribe_dropdowns();
} );
// Addresses some problems with Select2 inputs not being initialized when using a browser's "Back" button.
$( window ).on( 'unload', function() {
$( obj.selector.dropdown ).tribe_dropdowns();
});
} )( jQuery, tribe_dropdowns, window.underscore || window._ );
/*! elementor-pro - v3.5.1 - 10-11-2021 */
.elementor-cta,.elementor-widget-call-to-action .elementor-widget-container{overflow:hidden}.elementor-cta{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-transition:.5s;-o-transition:.5s;transition:.5s}.elementor-cta--skin-classic .elementor-cta{-ms-flex-wrap:wrap;flex-wrap:wrap}.elementor-cta--skin-classic .elementor-cta__bg-wrapper{position:relative;min-height:200px;width:100%}.elementor-cta--skin-classic .elementor-cta__content{-webkit-transition:all .4s;-o-transition:all .4s;transition:all .4s;width:100%;background-color:#f7f7f7}.elementor-cta--skin-classic .elementor-cta__content-item,.elementor-cta--skin-classic .elementor-cta__content-item .elementor-icon{color:#55595c;border-color:#55595c;fill:#55595c}.elementor-cta--skin-classic .elementor-cta__button.elementor-button{color:#55595c;border-color:#55595c}.elementor-cta--skin-cover .elementor-cta{display:block}.elementor-cta--skin-cover .elementor-cta__bg-wrapper{position:absolute;top:0;left:0;right:0;bottom:0;-webkit-transition:all .4s;-o-transition:all .4s;transition:all .4s;width:100%}.elementor-cta--skin-cover .elementor-cta__content{min-height:280px}.elementor-cta--skin-cover .elementor-cta__button.elementor-button,.elementor-cta--skin-cover .elementor-cta__content-item,.elementor-cta--skin-cover .elementor-cta__content-item .elementor-icon{color:#fff;border-color:#fff}.elementor-cta--layout-image-above .elementor-cta{-ms-flex-wrap:wrap;flex-wrap:wrap}.elementor-cta--layout-image-above .elementor-cta__bg-wrapper{width:100%}.elementor-cta--layout-image-left .elementor-cta,.elementor-cta--layout-image-right .elementor-cta{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.elementor-cta--layout-image-left .elementor-cta__bg-wrapper,.elementor-cta--layout-image-right .elementor-cta__bg-wrapper{width:auto;min-width:50%}.elementor-cta--layout-image-left .elementor-cta__content,.elementor-cta--layout-image-right .elementor-cta__content{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.elementor-cta--layout-image-left .elementor-cta{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-cta--layout-image-right .elementor-cta{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-cta__bg,.elementor-cta__bg-overlay{position:absolute;top:0;left:0;right:0;bottom:0;-webkit-transition:all .4s;-o-transition:all .4s;transition:all .4s}.elementor-cta__bg-wrapper{z-index:1;overflow:hidden}.elementor-cta__bg{-webkit-background-size:cover;background-size:cover;background-position:50%;z-index:1}.elementor-cta__bg-overlay{z-index:2}.elementor-cta__button.elementor-button{cursor:pointer;-ms-flex-item-align:center;align-self:center;margin-left:auto;margin-right:auto;border:2px solid #fff;background:transparent}.elementor-cta__button.elementor-button:hover{background:transparent;text-decoration:none}.elementor-cta__title{font-size:23px}.elementor-cta__content{z-index:1;overflow:hidden;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-line-pack:center;align-content:center;padding:35px;width:100%}.elementor-cta__content,.elementor-cta__content-item{position:relative;-webkit-transition:.5s;-o-transition:.5s;transition:.5s;color:#fff}.elementor-cta__content-item{width:100%;margin:0}.elementor-cta__content-item:not(:last-child){margin-bottom:15px}.elementor-cta__content-item .elementor-icon{color:#fff}.elementor-cta--valign-top .elementor-cta__content{-ms-flex-line-pack:start;align-content:flex-start;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-cta--valign-middle .elementor-cta__content{-ms-flex-line-pack:center;align-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-cta--valign-bottom .elementor-cta__content{-ms-flex-line-pack:end;align-content:flex-end;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.elementor-cta:hover .elementor-cta__bg-overlay{background-color:rgba(0,0,0,.3)}@media (max-device-width:1024px){.elementor-cta{cursor:pointer}}@media (min-width:-1px){.elementor-cta--widescreen-layout-image-above .elementor-cta{-ms-flex-wrap:wrap;flex-wrap:wrap}.elementor-cta--widescreen-layout-image-above .elementor-cta__bg-wrapper{width:100%}.elementor-cta--widescreen-layout-image-left .elementor-cta,.elementor-cta--widescreen-layout-image-right .elementor-cta{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.elementor-cta--widescreen-layout-image-left .elementor-cta__bg-wrapper,.elementor-cta--widescreen-layout-image-right .elementor-cta__bg-wrapper{width:auto;min-width:50%}.elementor-cta--widescreen-layout-image-left .elementor-cta__content,.elementor-cta--widescreen-layout-image-right .elementor-cta__content{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.elementor-cta--widescreen-layout-image-left .elementor-cta{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-cta--widescreen-layout-image-right .elementor-cta{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}}@media (max-width:-1px){.elementor-cta--laptop-layout-image-above .elementor-cta{-ms-flex-wrap:wrap;flex-wrap:wrap}.elementor-cta--laptop-layout-image-above .elementor-cta__bg-wrapper{width:100%}.elementor-cta--laptop-layout-image-left .elementor-cta,.elementor-cta--laptop-layout-image-right .elementor-cta{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.elementor-cta--laptop-layout-image-left .elementor-cta__bg-wrapper,.elementor-cta--laptop-layout-image-right .elementor-cta__bg-wrapper{width:auto;min-width:50%}.elementor-cta--laptop-layout-image-left .elementor-cta__content,.elementor-cta--laptop-layout-image-right .elementor-cta__content{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.elementor-cta--laptop-layout-image-left .elementor-cta{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-cta--laptop-layout-image-right .elementor-cta{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}}@media (max-width:-1px){.elementor-cta--tablet_extra-layout-image-above .elementor-cta{-ms-flex-wrap:wrap;flex-wrap:wrap}.elementor-cta--tablet_extra-layout-image-above .elementor-cta__bg-wrapper{width:100%}.elementor-cta--tablet_extra-layout-image-left .elementor-cta,.elementor-cta--tablet_extra-layout-image-right .elementor-cta{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.elementor-cta--tablet_extra-layout-image-left .elementor-cta__bg-wrapper,.elementor-cta--tablet_extra-layout-image-right .elementor-cta__bg-wrapper{width:auto;min-width:50%}.elementor-cta--tablet_extra-layout-image-left .elementor-cta__content,.elementor-cta--tablet_extra-layout-image-right .elementor-cta__content{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.elementor-cta--tablet_extra-layout-image-left .elementor-cta{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-cta--tablet_extra-layout-image-right .elementor-cta{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}}@media (max-width:1024px){.elementor-cta--tablet-layout-image-above .elementor-cta{-ms-flex-wrap:wrap;flex-wrap:wrap}.elementor-cta--tablet-layout-image-above .elementor-cta__bg-wrapper{width:100%}.elementor-cta--tablet-layout-image-left .elementor-cta,.elementor-cta--tablet-layout-image-right .elementor-cta{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.elementor-cta--tablet-layout-image-left .elementor-cta__bg-wrapper,.elementor-cta--tablet-layout-image-right .elementor-cta__bg-wrapper{width:auto;min-width:50%}.elementor-cta--tablet-layout-image-left .elementor-cta__content,.elementor-cta--tablet-layout-image-right .elementor-cta__content{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.elementor-cta--tablet-layout-image-left .elementor-cta{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-cta--tablet-layout-image-right .elementor-cta{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}}@media (max-width:-1px){.elementor-cta--mobile_extra-layout-image-above .elementor-cta{-ms-flex-wrap:wrap;flex-wrap:wrap}.elementor-cta--mobile_extra-layout-image-above .elementor-cta__bg-wrapper{width:100%}.elementor-cta--mobile_extra-layout-image-left .elementor-cta,.elementor-cta--mobile_extra-layout-image-right .elementor-cta{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.elementor-cta--mobile_extra-layout-image-left .elementor-cta__bg-wrapper,.elementor-cta--mobile_extra-layout-image-right .elementor-cta__bg-wrapper{width:auto;min-width:50%}.elementor-cta--mobile_extra-layout-image-left .elementor-cta__content,.elementor-cta--mobile_extra-layout-image-right .elementor-cta__content{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.elementor-cta--mobile_extra-layout-image-left .elementor-cta{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-cta--mobile_extra-layout-image-right .elementor-cta{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}}@media (max-width:767px){.elementor-cta--mobile-layout-image-above .elementor-cta{-ms-flex-wrap:wrap;flex-wrap:wrap}.elementor-cta--mobile-layout-image-above .elementor-cta__bg-wrapper{width:100%}.elementor-cta--mobile-layout-image-left .elementor-cta,.elementor-cta--mobile-layout-image-right .elementor-cta{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.elementor-cta--mobile-layout-image-left .elementor-cta__bg-wrapper,.elementor-cta--mobile-layout-image-right .elementor-cta__bg-wrapper{width:auto;min-width:50%}.elementor-cta--mobile-layout-image-left .elementor-cta__content,.elementor-cta--mobile-layout-image-right .elementor-cta__content{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.elementor-cta--mobile-layout-image-left .elementor-cta{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-cta--mobile-layout-image-right .elementor-cta{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}}.elementor-ribbon{position:absolute;z-index:1;top:0;left:0;right:auto;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);width:150px;overflow:hidden;height:150px}.elementor-ribbon-inner{text-align:center;left:0;width:200%;-webkit-transform:translateY(-50%) translateX(0) translateX(35px) rotate(-45deg);-ms-transform:translateY(-50%) translateX(0) translateX(35px) rotate(-45deg);transform:translateY(-50%) translateX(0) translateX(35px) rotate(-45deg);margin-top:35px;font-size:13px;line-height:2;font-weight:800;text-transform:uppercase;background:#000;color:#fff}.elementor-ribbon.elementor-ribbon-left{-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);left:0;right:auto}.elementor-ribbon.elementor-ribbon-right{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);left:auto;right:0}
Warning: Cannot modify header information - headers already sent by (output started at /home1/brighdbt/public_html/premills.com/wp-content/plugins/svg-support/functions/thumbnail-display.php:1) in /home1/brighdbt/public_html/premills.com/wp-includes/feed-rss2.php on line 8
The post a16z generative ai appeared first on premier mills.
]]>Meanwhile, Kristina Dulaney, RN, PMH-C, the founder of Cherished Mom, an organization dedicated to solving maternal mental health challenges, helped to create an AI agent that’s focused on helping new mothers navigate such problems with postpartum mental health assessments and depression screening. The startup was initially focused on creating generative AI chatbots to support clinicians and other healthcare professionals, but has since switched its focus to patients themselves. Its most advanced models take advantage of the latest developments in AI agents, which are a form of AI that can perform more complex tasks while working unsupervised. Despite rapid advancements in AI, creators in open-source ecosystems face significant challenges in monetizing derivative works and securing proper attribution.
Story, the global intellectual property blockchain, has announced its integration with Stability AI’s state-of-the-art models to revolutionize open-source AI development. This collaboration enables creators, developers, and artists to capture the value they contribute to the AI ecosystem by leveraging blockchain technology to ensure proper attribution, tracking, and monetization of creative works generated through AI. Andreessen Horowitz, or a16z, is investing in AI and biotech to lead the way in innovation.
In a statement, Raspberry AI said the funding would be used to accelerate its product development and add top engineering, sales and marketing talent to its team. But with U.S. companies raising and/or spending record sums on new AI infrastructure that many experts have noted depreciate rapidly (due to hardware/chip and software advancements), the question remains which vision of the future will win out in the end to become the dominant AI provider for the world. Or maybe it will always be a multiplicity of models each with a smaller market share? That’s followed by more extensive evaluations and safety assessments by an extensive network of more than 6,000 nurses and 300 doctors, who will confirm that it passes all required safety tests.
Once the AI agent is up and running, the clinicians who created it will be able to claim a share of the revenue it generates from the startup’s customers. Currently the technology is being used by Under Armour, MCM Worldwide, Gruppo Teddy and Li & Fung to create and iterate apparel, footwear and accessories styles. The company’s existing investors Greycroft, Correlation Ventures and MVP Ventures also joined in the round, along with notable angel investors, including Gokul Rajaram and Ken Pilot. Clearly, even as he espouses a commitment to open source AI, Zuck is not convinced that DeepSeek’s approach of optimizing for efficiency while leveraging far fewer GPUs than major labs is the right one for Meta, or for the future of AI.
Story is the world’s intellectual property blockchain, transforming IP into networks that transcend mediums and platforms, unleashing global creativity and liquidity. By integrating Stability AI’s advanced models, Story is taking a significant step toward building a fair and sustainable internet for creators and developers in the age of generative AI. Hippocratic AI said it’s necessary to have clinicians onboard because they have, over the course of their careers, developed deep expertise in their respective fields, as well as the practical insights to help cure specific medical conditions and the clinical workflows involved.
Investing in Raspberry AI.
Posted: Mon, 13 Jan 2025 08:00:00 GMT [source]
Story aims to bridge this gap by combining Stability AI’s cutting-edge technology with blockchain’s ability to secure digital property rights. For example, creators could register unique styles or voices as intellectual property on Story with transparent usage terms. This would enable others to train and fine-tune AI models using this IP, ensuring that all contributors in the creative chain benefit when outputs are monetized.
Holger Mueller of Constellation Research Inc. said Hippocratic AI is bringing two of the leading technology trends to the healthcare industry, namely no-code or low-code software development and AI agents. The launch is a bold step forward in healthcare innovation, giving clinicians the opportunity to participate in the design of AI agents that can address various aspects of patient care. It says clinicians can create an AI agent prototype that specializes in their area of focus in less than 30 minutes, and around three to four hours to develop one that can be tested. Shah said the last nine months since the company’s previous $50 million funding round have seen it make tremendous progress. During that time, it has received its first U.S. patents, fully evaluated and verified the safety of its first AI healthcare agents, and signed contracts with 23 health systems, payers and pharma clients.
For instance, one of its AI agents is specialized in chronic care management, medication checks and post-discharge follow-up regarding specific conditions such as kidney failure and congestive heart failure. The healthcare-focused artificial intelligence startup Hippocratic AI Inc. said today it has closed on a $141 million Series B funding round that brings its total amount raised to more than $278 million. “This round of financing will accelerate the development and deployment of the Hippocratic generative AI-driven super staffing and continue our quest to make healthcare abundance a reality,” he promised. Raspberry AI, the generative AI platform for fashion creatives, has secured 24 million US dollars in Series A funding led by Andreessen Horowitz (a16z). Today, we’re going in-depth on blockchain innovation with Robert Roose, an entrepreneur who’s on a mission to fix today’s broken monetary system. Hippocratic AI’s early customers include Arkos Health Inc., Belong Health Inc., Cincinnati Children’s, Fraser Health Authority (Canada), GuideHealth, Honor Health, Deca Dental Management, LLC, OhioHealth, WellSpan Health and other well-known healthcare systems and hospitals.
By incorporating this wisdom into its AI agents, it’s making them safer and improving patient outcomes, it said. Crucially, any agent created using its platform will undergo extensive safety training by both the creator and Hippocratic AI’s own staff. Every clinician will have access to a dashboard to track their AI agent’s performance and use and receive feedback for further development.
All these indicate the commitment a16z has in shaping the future of technology and healthcare through strategic investments. Both platforms use Stability AI’s models to bring creators’ visions to life and Story’s blockchain technology to enable provenance and attribution throughout the creative process. These real-world applications highlight how creators can safeguard their intellectual property while thriving in a shared creative economy. Raspberry AI offers brands and manufacturing creative teams technology solutions, which can help accelerate each stage of the fashion product development cycle to increase speed to market and profitability while reducing costs. Andreessen Horowitz, or a16z, is one of the leading AI investors and targets only innovative startups. They participated in the round that funded Anysphere on January 14, 2025, with a total sum of $105 million for an AI coding tool known as Cursor, whose valuation has reached $2.5 billion.
In order to ensure its AI agents can do their jobs safely, Hippocratic AI says it only works with licensed clinicians to develop them, taking steps to verify their qualifications and experience first. Once clinicians have built their agents, they’ll be submitted to the startup for an initial round of testing. Through the Hippocratic AI Agent App Store, healthcare organizations and hospitals will be able to access a range of specialized AI agents for different aspects of medical care.
The startup was co-founded by Chief Executive Officer and serial entrepreneur Munjal Shah and a group of physicians, hospital administrators, healthcare professionals and AI researchers from organizations including El Camino Health LLC, Johns Hopkins University, Stanford University, Microsoft Corp., Google and Nvidia Corp. PIP Labs, an initial core contributor to the Story Network, is backed by investors including a16z crypto, Endeavor, and Polychain. Co-founded by a serial entrepreneur with a $440M exit and DeepMind’s youngest PM, PIP Labs boasts a veteran founding executive team with expertise in consumer tech, generative AI, and Web3 infrastructure. The startup has also created other AI agents for tasks like pre- and post-surgery wound care, extreme heat wave preparation, home health checks, diabetes screening and education, and many more besides. The startup said its AI Agent creators include Dr. Vanessa Dorismond MD, MA, MAS, a distinguished obstetrician and gynecologist at El Camino Women’s Medical Group and Teal Health, who helped to create an AI agent that’s focused on cervical cancer check-ins and enhancing patient education. According to the startup, the objective of these AI agents is to try and solve the massive shortage of trained nurses, social workers and nutritionists in the healthcare industry, both in the U.S. and globally.
The same day, a16z also led a Series A investment in Slingshot AI, which has raised a total of $40 million to create a foundation model for psychology. Those investments highlight the commitment of the group to using AI to address important issues and are also focusing on how AI can improve different industries, including healthcare and consumer services. In general, a16z is committed to supporting AI innovations that could have a profound impact on society. We are thrilled to see our models used in Story’s blockchain technology to ensure proper attribution and reward contributors,” said Scott Trowbridge, Vice President of Stability AI. Others include Kacie Spencer, DNP, RN, the chief nursing officer at Adtalem Global Education Inc., who has more than 20 years of experience in emergency nursing and clinical education. Her AI agent is focused on patient education for the proper installation of child car seats.
It participated in an Anysphere round that had the company raising $105 million on January 14, 2025, when it pushed the valuation up to $2.5 billion. Beyond this, it has also released a $500 million Biotech Ecosystem Venture Fund with Eli Lilly to place a focus on health technologies, but with the aspect of innovative applications. On the same day, they led a Series A investment in Slingshot AI, a company that’s developing advanced generative AI technology for mental health. Additionally, a16z invested in Raspberry AI to bring generative AI to the front of fashion design and production. In December 2024, they envisioned a future in which AI was used aggressively in nearly all sectors.
The post a16z generative ai appeared first on premier mills.
]]>The post a16z generative ai appeared first on premier mills.
]]>Meanwhile, Kristina Dulaney, RN, PMH-C, the founder of Cherished Mom, an organization dedicated to solving maternal mental health challenges, helped to create an AI agent that’s focused on helping new mothers navigate such problems with postpartum mental health assessments and depression screening. The startup was initially focused on creating generative AI chatbots to support clinicians and other healthcare professionals, but has since switched its focus to patients themselves. Its most advanced models take advantage of the latest developments in AI agents, which are a form of AI that can perform more complex tasks while working unsupervised. Despite rapid advancements in AI, creators in open-source ecosystems face significant challenges in monetizing derivative works and securing proper attribution.
Story, the global intellectual property blockchain, has announced its integration with Stability AI’s state-of-the-art models to revolutionize open-source AI development. This collaboration enables creators, developers, and artists to capture the value they contribute to the AI ecosystem by leveraging blockchain technology to ensure proper attribution, tracking, and monetization of creative works generated through AI. Andreessen Horowitz, or a16z, is investing in AI and biotech to lead the way in innovation.
In a statement, Raspberry AI said the funding would be used to accelerate its product development and add top engineering, sales and marketing talent to its team. But with U.S. companies raising and/or spending record sums on new AI infrastructure that many experts have noted depreciate rapidly (due to hardware/chip and software advancements), the question remains which vision of the future will win out in the end to become the dominant AI provider for the world. Or maybe it will always be a multiplicity of models each with a smaller market share? That’s followed by more extensive evaluations and safety assessments by an extensive network of more than 6,000 nurses and 300 doctors, who will confirm that it passes all required safety tests.
Once the AI agent is up and running, the clinicians who created it will be able to claim a share of the revenue it generates from the startup’s customers. Currently the technology is being used by Under Armour, MCM Worldwide, Gruppo Teddy and Li & Fung to create and iterate apparel, footwear and accessories styles. The company’s existing investors Greycroft, Correlation Ventures and MVP Ventures also joined in the round, along with notable angel investors, including Gokul Rajaram and Ken Pilot. Clearly, even as he espouses a commitment to open source AI, Zuck is not convinced that DeepSeek’s approach of optimizing for efficiency while leveraging far fewer GPUs than major labs is the right one for Meta, or for the future of AI.
Story is the world’s intellectual property blockchain, transforming IP into networks that transcend mediums and platforms, unleashing global creativity and liquidity. By integrating Stability AI’s advanced models, Story is taking a significant step toward building a fair and sustainable internet for creators and developers in the age of generative AI. Hippocratic AI said it’s necessary to have clinicians onboard because they have, over the course of their careers, developed deep expertise in their respective fields, as well as the practical insights to help cure specific medical conditions and the clinical workflows involved.
Investing in Raspberry AI.
Posted: Mon, 13 Jan 2025 08:00:00 GMT [source]
Story aims to bridge this gap by combining Stability AI’s cutting-edge technology with blockchain’s ability to secure digital property rights. For example, creators could register unique styles or voices as intellectual property on Story with transparent usage terms. This would enable others to train and fine-tune AI models using this IP, ensuring that all contributors in the creative chain benefit when outputs are monetized.
Holger Mueller of Constellation Research Inc. said Hippocratic AI is bringing two of the leading technology trends to the healthcare industry, namely no-code or low-code software development and AI agents. The launch is a bold step forward in healthcare innovation, giving clinicians the opportunity to participate in the design of AI agents that can address various aspects of patient care. It says clinicians can create an AI agent prototype that specializes in their area of focus in less than 30 minutes, and around three to four hours to develop one that can be tested. Shah said the last nine months since the company’s previous $50 million funding round have seen it make tremendous progress. During that time, it has received its first U.S. patents, fully evaluated and verified the safety of its first AI healthcare agents, and signed contracts with 23 health systems, payers and pharma clients.
For instance, one of its AI agents is specialized in chronic care management, medication checks and post-discharge follow-up regarding specific conditions such as kidney failure and congestive heart failure. The healthcare-focused artificial intelligence startup Hippocratic AI Inc. said today it has closed on a $141 million Series B funding round that brings its total amount raised to more than $278 million. “This round of financing will accelerate the development and deployment of the Hippocratic generative AI-driven super staffing and continue our quest to make healthcare abundance a reality,” he promised. Raspberry AI, the generative AI platform for fashion creatives, has secured 24 million US dollars in Series A funding led by Andreessen Horowitz (a16z). Today, we’re going in-depth on blockchain innovation with Robert Roose, an entrepreneur who’s on a mission to fix today’s broken monetary system. Hippocratic AI’s early customers include Arkos Health Inc., Belong Health Inc., Cincinnati Children’s, Fraser Health Authority (Canada), GuideHealth, Honor Health, Deca Dental Management, LLC, OhioHealth, WellSpan Health and other well-known healthcare systems and hospitals.
By incorporating this wisdom into its AI agents, it’s making them safer and improving patient outcomes, it said. Crucially, any agent created using its platform will undergo extensive safety training by both the creator and Hippocratic AI’s own staff. Every clinician will have access to a dashboard to track their AI agent’s performance and use and receive feedback for further development.
All these indicate the commitment a16z has in shaping the future of technology and healthcare through strategic investments. Both platforms use Stability AI’s models to bring creators’ visions to life and Story’s blockchain technology to enable provenance and attribution throughout the creative process. These real-world applications highlight how creators can safeguard their intellectual property while thriving in a shared creative economy. Raspberry AI offers brands and manufacturing creative teams technology solutions, which can help accelerate each stage of the fashion product development cycle to increase speed to market and profitability while reducing costs. Andreessen Horowitz, or a16z, is one of the leading AI investors and targets only innovative startups. They participated in the round that funded Anysphere on January 14, 2025, with a total sum of $105 million for an AI coding tool known as Cursor, whose valuation has reached $2.5 billion.
In order to ensure its AI agents can do their jobs safely, Hippocratic AI says it only works with licensed clinicians to develop them, taking steps to verify their qualifications and experience first. Once clinicians have built their agents, they’ll be submitted to the startup for an initial round of testing. Through the Hippocratic AI Agent App Store, healthcare organizations and hospitals will be able to access a range of specialized AI agents for different aspects of medical care.
The startup was co-founded by Chief Executive Officer and serial entrepreneur Munjal Shah and a group of physicians, hospital administrators, healthcare professionals and AI researchers from organizations including El Camino Health LLC, Johns Hopkins University, Stanford University, Microsoft Corp., Google and Nvidia Corp. PIP Labs, an initial core contributor to the Story Network, is backed by investors including a16z crypto, Endeavor, and Polychain. Co-founded by a serial entrepreneur with a $440M exit and DeepMind’s youngest PM, PIP Labs boasts a veteran founding executive team with expertise in consumer tech, generative AI, and Web3 infrastructure. The startup has also created other AI agents for tasks like pre- and post-surgery wound care, extreme heat wave preparation, home health checks, diabetes screening and education, and many more besides. The startup said its AI Agent creators include Dr. Vanessa Dorismond MD, MA, MAS, a distinguished obstetrician and gynecologist at El Camino Women’s Medical Group and Teal Health, who helped to create an AI agent that’s focused on cervical cancer check-ins and enhancing patient education. According to the startup, the objective of these AI agents is to try and solve the massive shortage of trained nurses, social workers and nutritionists in the healthcare industry, both in the U.S. and globally.
The same day, a16z also led a Series A investment in Slingshot AI, which has raised a total of $40 million to create a foundation model for psychology. Those investments highlight the commitment of the group to using AI to address important issues and are also focusing on how AI can improve different industries, including healthcare and consumer services. In general, a16z is committed to supporting AI innovations that could have a profound impact on society. We are thrilled to see our models used in Story’s blockchain technology to ensure proper attribution and reward contributors,” said Scott Trowbridge, Vice President of Stability AI. Others include Kacie Spencer, DNP, RN, the chief nursing officer at Adtalem Global Education Inc., who has more than 20 years of experience in emergency nursing and clinical education. Her AI agent is focused on patient education for the proper installation of child car seats.
It participated in an Anysphere round that had the company raising $105 million on January 14, 2025, when it pushed the valuation up to $2.5 billion. Beyond this, it has also released a $500 million Biotech Ecosystem Venture Fund with Eli Lilly to place a focus on health technologies, but with the aspect of innovative applications. On the same day, they led a Series A investment in Slingshot AI, a company that’s developing advanced generative AI technology for mental health. Additionally, a16z invested in Raspberry AI to bring generative AI to the front of fashion design and production. In December 2024, they envisioned a future in which AI was used aggressively in nearly all sectors.
The post a16z generative ai appeared first on premier mills.
]]>The post a16z generative ai appeared first on premier mills.
]]>Meanwhile, Kristina Dulaney, RN, PMH-C, the founder of Cherished Mom, an organization dedicated to solving maternal mental health challenges, helped to create an AI agent that’s focused on helping new mothers navigate such problems with postpartum mental health assessments and depression screening. The startup was initially focused on creating generative AI chatbots to support clinicians and other healthcare professionals, but has since switched its focus to patients themselves. Its most advanced models take advantage of the latest developments in AI agents, which are a form of AI that can perform more complex tasks while working unsupervised. Despite rapid advancements in AI, creators in open-source ecosystems face significant challenges in monetizing derivative works and securing proper attribution.
Story, the global intellectual property blockchain, has announced its integration with Stability AI’s state-of-the-art models to revolutionize open-source AI development. This collaboration enables creators, developers, and artists to capture the value they contribute to the AI ecosystem by leveraging blockchain technology to ensure proper attribution, tracking, and monetization of creative works generated through AI. Andreessen Horowitz, or a16z, is investing in AI and biotech to lead the way in innovation.
In a statement, Raspberry AI said the funding would be used to accelerate its product development and add top engineering, sales and marketing talent to its team. But with U.S. companies raising and/or spending record sums on new AI infrastructure that many experts have noted depreciate rapidly (due to hardware/chip and software advancements), the question remains which vision of the future will win out in the end to become the dominant AI provider for the world. Or maybe it will always be a multiplicity of models each with a smaller market share? That’s followed by more extensive evaluations and safety assessments by an extensive network of more than 6,000 nurses and 300 doctors, who will confirm that it passes all required safety tests.
Once the AI agent is up and running, the clinicians who created it will be able to claim a share of the revenue it generates from the startup’s customers. Currently the technology is being used by Under Armour, MCM Worldwide, Gruppo Teddy and Li & Fung to create and iterate apparel, footwear and accessories styles. The company’s existing investors Greycroft, Correlation Ventures and MVP Ventures also joined in the round, along with notable angel investors, including Gokul Rajaram and Ken Pilot. Clearly, even as he espouses a commitment to open source AI, Zuck is not convinced that DeepSeek’s approach of optimizing for efficiency while leveraging far fewer GPUs than major labs is the right one for Meta, or for the future of AI.
Story is the world’s intellectual property blockchain, transforming IP into networks that transcend mediums and platforms, unleashing global creativity and liquidity. By integrating Stability AI’s advanced models, Story is taking a significant step toward building a fair and sustainable internet for creators and developers in the age of generative AI. Hippocratic AI said it’s necessary to have clinicians onboard because they have, over the course of their careers, developed deep expertise in their respective fields, as well as the practical insights to help cure specific medical conditions and the clinical workflows involved.
Investing in Raspberry AI.
Posted: Mon, 13 Jan 2025 08:00:00 GMT [source]
Story aims to bridge this gap by combining Stability AI’s cutting-edge technology with blockchain’s ability to secure digital property rights. For example, creators could register unique styles or voices as intellectual property on Story with transparent usage terms. This would enable others to train and fine-tune AI models using this IP, ensuring that all contributors in the creative chain benefit when outputs are monetized.
Holger Mueller of Constellation Research Inc. said Hippocratic AI is bringing two of the leading technology trends to the healthcare industry, namely no-code or low-code software development and AI agents. The launch is a bold step forward in healthcare innovation, giving clinicians the opportunity to participate in the design of AI agents that can address various aspects of patient care. It says clinicians can create an AI agent prototype that specializes in their area of focus in less than 30 minutes, and around three to four hours to develop one that can be tested. Shah said the last nine months since the company’s previous $50 million funding round have seen it make tremendous progress. During that time, it has received its first U.S. patents, fully evaluated and verified the safety of its first AI healthcare agents, and signed contracts with 23 health systems, payers and pharma clients.
For instance, one of its AI agents is specialized in chronic care management, medication checks and post-discharge follow-up regarding specific conditions such as kidney failure and congestive heart failure. The healthcare-focused artificial intelligence startup Hippocratic AI Inc. said today it has closed on a $141 million Series B funding round that brings its total amount raised to more than $278 million. “This round of financing will accelerate the development and deployment of the Hippocratic generative AI-driven super staffing and continue our quest to make healthcare abundance a reality,” he promised. Raspberry AI, the generative AI platform for fashion creatives, has secured 24 million US dollars in Series A funding led by Andreessen Horowitz (a16z). Today, we’re going in-depth on blockchain innovation with Robert Roose, an entrepreneur who’s on a mission to fix today’s broken monetary system. Hippocratic AI’s early customers include Arkos Health Inc., Belong Health Inc., Cincinnati Children’s, Fraser Health Authority (Canada), GuideHealth, Honor Health, Deca Dental Management, LLC, OhioHealth, WellSpan Health and other well-known healthcare systems and hospitals.
By incorporating this wisdom into its AI agents, it’s making them safer and improving patient outcomes, it said. Crucially, any agent created using its platform will undergo extensive safety training by both the creator and Hippocratic AI’s own staff. Every clinician will have access to a dashboard to track their AI agent’s performance and use and receive feedback for further development.
All these indicate the commitment a16z has in shaping the future of technology and healthcare through strategic investments. Both platforms use Stability AI’s models to bring creators’ visions to life and Story’s blockchain technology to enable provenance and attribution throughout the creative process. These real-world applications highlight how creators can safeguard their intellectual property while thriving in a shared creative economy. Raspberry AI offers brands and manufacturing creative teams technology solutions, which can help accelerate each stage of the fashion product development cycle to increase speed to market and profitability while reducing costs. Andreessen Horowitz, or a16z, is one of the leading AI investors and targets only innovative startups. They participated in the round that funded Anysphere on January 14, 2025, with a total sum of $105 million for an AI coding tool known as Cursor, whose valuation has reached $2.5 billion.
In order to ensure its AI agents can do their jobs safely, Hippocratic AI says it only works with licensed clinicians to develop them, taking steps to verify their qualifications and experience first. Once clinicians have built their agents, they’ll be submitted to the startup for an initial round of testing. Through the Hippocratic AI Agent App Store, healthcare organizations and hospitals will be able to access a range of specialized AI agents for different aspects of medical care.
The startup was co-founded by Chief Executive Officer and serial entrepreneur Munjal Shah and a group of physicians, hospital administrators, healthcare professionals and AI researchers from organizations including El Camino Health LLC, Johns Hopkins University, Stanford University, Microsoft Corp., Google and Nvidia Corp. PIP Labs, an initial core contributor to the Story Network, is backed by investors including a16z crypto, Endeavor, and Polychain. Co-founded by a serial entrepreneur with a $440M exit and DeepMind’s youngest PM, PIP Labs boasts a veteran founding executive team with expertise in consumer tech, generative AI, and Web3 infrastructure. The startup has also created other AI agents for tasks like pre- and post-surgery wound care, extreme heat wave preparation, home health checks, diabetes screening and education, and many more besides. The startup said its AI Agent creators include Dr. Vanessa Dorismond MD, MA, MAS, a distinguished obstetrician and gynecologist at El Camino Women’s Medical Group and Teal Health, who helped to create an AI agent that’s focused on cervical cancer check-ins and enhancing patient education. According to the startup, the objective of these AI agents is to try and solve the massive shortage of trained nurses, social workers and nutritionists in the healthcare industry, both in the U.S. and globally.
The same day, a16z also led a Series A investment in Slingshot AI, which has raised a total of $40 million to create a foundation model for psychology. Those investments highlight the commitment of the group to using AI to address important issues and are also focusing on how AI can improve different industries, including healthcare and consumer services. In general, a16z is committed to supporting AI innovations that could have a profound impact on society. We are thrilled to see our models used in Story’s blockchain technology to ensure proper attribution and reward contributors,” said Scott Trowbridge, Vice President of Stability AI. Others include Kacie Spencer, DNP, RN, the chief nursing officer at Adtalem Global Education Inc., who has more than 20 years of experience in emergency nursing and clinical education. Her AI agent is focused on patient education for the proper installation of child car seats.
It participated in an Anysphere round that had the company raising $105 million on January 14, 2025, when it pushed the valuation up to $2.5 billion. Beyond this, it has also released a $500 million Biotech Ecosystem Venture Fund with Eli Lilly to place a focus on health technologies, but with the aspect of innovative applications. On the same day, they led a Series A investment in Slingshot AI, a company that’s developing advanced generative AI technology for mental health. Additionally, a16z invested in Raspberry AI to bring generative AI to the front of fashion design and production. In December 2024, they envisioned a future in which AI was used aggressively in nearly all sectors.
The post a16z generative ai appeared first on premier mills.
]]>The post a16z generative ai appeared first on premier mills.
]]>Meanwhile, Kristina Dulaney, RN, PMH-C, the founder of Cherished Mom, an organization dedicated to solving maternal mental health challenges, helped to create an AI agent that’s focused on helping new mothers navigate such problems with postpartum mental health assessments and depression screening. The startup was initially focused on creating generative AI chatbots to support clinicians and other healthcare professionals, but has since switched its focus to patients themselves. Its most advanced models take advantage of the latest developments in AI agents, which are a form of AI that can perform more complex tasks while working unsupervised. Despite rapid advancements in AI, creators in open-source ecosystems face significant challenges in monetizing derivative works and securing proper attribution.
Story, the global intellectual property blockchain, has announced its integration with Stability AI’s state-of-the-art models to revolutionize open-source AI development. This collaboration enables creators, developers, and artists to capture the value they contribute to the AI ecosystem by leveraging blockchain technology to ensure proper attribution, tracking, and monetization of creative works generated through AI. Andreessen Horowitz, or a16z, is investing in AI and biotech to lead the way in innovation.
In a statement, Raspberry AI said the funding would be used to accelerate its product development and add top engineering, sales and marketing talent to its team. But with U.S. companies raising and/or spending record sums on new AI infrastructure that many experts have noted depreciate rapidly (due to hardware/chip and software advancements), the question remains which vision of the future will win out in the end to become the dominant AI provider for the world. Or maybe it will always be a multiplicity of models each with a smaller market share? That’s followed by more extensive evaluations and safety assessments by an extensive network of more than 6,000 nurses and 300 doctors, who will confirm that it passes all required safety tests.
Once the AI agent is up and running, the clinicians who created it will be able to claim a share of the revenue it generates from the startup’s customers. Currently the technology is being used by Under Armour, MCM Worldwide, Gruppo Teddy and Li & Fung to create and iterate apparel, footwear and accessories styles. The company’s existing investors Greycroft, Correlation Ventures and MVP Ventures also joined in the round, along with notable angel investors, including Gokul Rajaram and Ken Pilot. Clearly, even as he espouses a commitment to open source AI, Zuck is not convinced that DeepSeek’s approach of optimizing for efficiency while leveraging far fewer GPUs than major labs is the right one for Meta, or for the future of AI.
Story is the world’s intellectual property blockchain, transforming IP into networks that transcend mediums and platforms, unleashing global creativity and liquidity. By integrating Stability AI’s advanced models, Story is taking a significant step toward building a fair and sustainable internet for creators and developers in the age of generative AI. Hippocratic AI said it’s necessary to have clinicians onboard because they have, over the course of their careers, developed deep expertise in their respective fields, as well as the practical insights to help cure specific medical conditions and the clinical workflows involved.
Investing in Raspberry AI.
Posted: Mon, 13 Jan 2025 08:00:00 GMT [source]
Story aims to bridge this gap by combining Stability AI’s cutting-edge technology with blockchain’s ability to secure digital property rights. For example, creators could register unique styles or voices as intellectual property on Story with transparent usage terms. This would enable others to train and fine-tune AI models using this IP, ensuring that all contributors in the creative chain benefit when outputs are monetized.
Holger Mueller of Constellation Research Inc. said Hippocratic AI is bringing two of the leading technology trends to the healthcare industry, namely no-code or low-code software development and AI agents. The launch is a bold step forward in healthcare innovation, giving clinicians the opportunity to participate in the design of AI agents that can address various aspects of patient care. It says clinicians can create an AI agent prototype that specializes in their area of focus in less than 30 minutes, and around three to four hours to develop one that can be tested. Shah said the last nine months since the company’s previous $50 million funding round have seen it make tremendous progress. During that time, it has received its first U.S. patents, fully evaluated and verified the safety of its first AI healthcare agents, and signed contracts with 23 health systems, payers and pharma clients.
For instance, one of its AI agents is specialized in chronic care management, medication checks and post-discharge follow-up regarding specific conditions such as kidney failure and congestive heart failure. The healthcare-focused artificial intelligence startup Hippocratic AI Inc. said today it has closed on a $141 million Series B funding round that brings its total amount raised to more than $278 million. “This round of financing will accelerate the development and deployment of the Hippocratic generative AI-driven super staffing and continue our quest to make healthcare abundance a reality,” he promised. Raspberry AI, the generative AI platform for fashion creatives, has secured 24 million US dollars in Series A funding led by Andreessen Horowitz (a16z). Today, we’re going in-depth on blockchain innovation with Robert Roose, an entrepreneur who’s on a mission to fix today’s broken monetary system. Hippocratic AI’s early customers include Arkos Health Inc., Belong Health Inc., Cincinnati Children’s, Fraser Health Authority (Canada), GuideHealth, Honor Health, Deca Dental Management, LLC, OhioHealth, WellSpan Health and other well-known healthcare systems and hospitals.
By incorporating this wisdom into its AI agents, it’s making them safer and improving patient outcomes, it said. Crucially, any agent created using its platform will undergo extensive safety training by both the creator and Hippocratic AI’s own staff. Every clinician will have access to a dashboard to track their AI agent’s performance and use and receive feedback for further development.
All these indicate the commitment a16z has in shaping the future of technology and healthcare through strategic investments. Both platforms use Stability AI’s models to bring creators’ visions to life and Story’s blockchain technology to enable provenance and attribution throughout the creative process. These real-world applications highlight how creators can safeguard their intellectual property while thriving in a shared creative economy. Raspberry AI offers brands and manufacturing creative teams technology solutions, which can help accelerate each stage of the fashion product development cycle to increase speed to market and profitability while reducing costs. Andreessen Horowitz, or a16z, is one of the leading AI investors and targets only innovative startups. They participated in the round that funded Anysphere on January 14, 2025, with a total sum of $105 million for an AI coding tool known as Cursor, whose valuation has reached $2.5 billion.
In order to ensure its AI agents can do their jobs safely, Hippocratic AI says it only works with licensed clinicians to develop them, taking steps to verify their qualifications and experience first. Once clinicians have built their agents, they’ll be submitted to the startup for an initial round of testing. Through the Hippocratic AI Agent App Store, healthcare organizations and hospitals will be able to access a range of specialized AI agents for different aspects of medical care.
The startup was co-founded by Chief Executive Officer and serial entrepreneur Munjal Shah and a group of physicians, hospital administrators, healthcare professionals and AI researchers from organizations including El Camino Health LLC, Johns Hopkins University, Stanford University, Microsoft Corp., Google and Nvidia Corp. PIP Labs, an initial core contributor to the Story Network, is backed by investors including a16z crypto, Endeavor, and Polychain. Co-founded by a serial entrepreneur with a $440M exit and DeepMind’s youngest PM, PIP Labs boasts a veteran founding executive team with expertise in consumer tech, generative AI, and Web3 infrastructure. The startup has also created other AI agents for tasks like pre- and post-surgery wound care, extreme heat wave preparation, home health checks, diabetes screening and education, and many more besides. The startup said its AI Agent creators include Dr. Vanessa Dorismond MD, MA, MAS, a distinguished obstetrician and gynecologist at El Camino Women’s Medical Group and Teal Health, who helped to create an AI agent that’s focused on cervical cancer check-ins and enhancing patient education. According to the startup, the objective of these AI agents is to try and solve the massive shortage of trained nurses, social workers and nutritionists in the healthcare industry, both in the U.S. and globally.
The same day, a16z also led a Series A investment in Slingshot AI, which has raised a total of $40 million to create a foundation model for psychology. Those investments highlight the commitment of the group to using AI to address important issues and are also focusing on how AI can improve different industries, including healthcare and consumer services. In general, a16z is committed to supporting AI innovations that could have a profound impact on society. We are thrilled to see our models used in Story’s blockchain technology to ensure proper attribution and reward contributors,” said Scott Trowbridge, Vice President of Stability AI. Others include Kacie Spencer, DNP, RN, the chief nursing officer at Adtalem Global Education Inc., who has more than 20 years of experience in emergency nursing and clinical education. Her AI agent is focused on patient education for the proper installation of child car seats.
It participated in an Anysphere round that had the company raising $105 million on January 14, 2025, when it pushed the valuation up to $2.5 billion. Beyond this, it has also released a $500 million Biotech Ecosystem Venture Fund with Eli Lilly to place a focus on health technologies, but with the aspect of innovative applications. On the same day, they led a Series A investment in Slingshot AI, a company that’s developing advanced generative AI technology for mental health. Additionally, a16z invested in Raspberry AI to bring generative AI to the front of fashion design and production. In December 2024, they envisioned a future in which AI was used aggressively in nearly all sectors.
The post a16z generative ai appeared first on premier mills.
]]>The post a16z generative ai appeared first on premier mills.
]]>Meanwhile, Kristina Dulaney, RN, PMH-C, the founder of Cherished Mom, an organization dedicated to solving maternal mental health challenges, helped to create an AI agent that’s focused on helping new mothers navigate such problems with postpartum mental health assessments and depression screening. The startup was initially focused on creating generative AI chatbots to support clinicians and other healthcare professionals, but has since switched its focus to patients themselves. Its most advanced models take advantage of the latest developments in AI agents, which are a form of AI that can perform more complex tasks while working unsupervised. Despite rapid advancements in AI, creators in open-source ecosystems face significant challenges in monetizing derivative works and securing proper attribution.
Story, the global intellectual property blockchain, has announced its integration with Stability AI’s state-of-the-art models to revolutionize open-source AI development. This collaboration enables creators, developers, and artists to capture the value they contribute to the AI ecosystem by leveraging blockchain technology to ensure proper attribution, tracking, and monetization of creative works generated through AI. Andreessen Horowitz, or a16z, is investing in AI and biotech to lead the way in innovation.
In a statement, Raspberry AI said the funding would be used to accelerate its product development and add top engineering, sales and marketing talent to its team. But with U.S. companies raising and/or spending record sums on new AI infrastructure that many experts have noted depreciate rapidly (due to hardware/chip and software advancements), the question remains which vision of the future will win out in the end to become the dominant AI provider for the world. Or maybe it will always be a multiplicity of models each with a smaller market share? That’s followed by more extensive evaluations and safety assessments by an extensive network of more than 6,000 nurses and 300 doctors, who will confirm that it passes all required safety tests.
Once the AI agent is up and running, the clinicians who created it will be able to claim a share of the revenue it generates from the startup’s customers. Currently the technology is being used by Under Armour, MCM Worldwide, Gruppo Teddy and Li & Fung to create and iterate apparel, footwear and accessories styles. The company’s existing investors Greycroft, Correlation Ventures and MVP Ventures also joined in the round, along with notable angel investors, including Gokul Rajaram and Ken Pilot. Clearly, even as he espouses a commitment to open source AI, Zuck is not convinced that DeepSeek’s approach of optimizing for efficiency while leveraging far fewer GPUs than major labs is the right one for Meta, or for the future of AI.
Story is the world’s intellectual property blockchain, transforming IP into networks that transcend mediums and platforms, unleashing global creativity and liquidity. By integrating Stability AI’s advanced models, Story is taking a significant step toward building a fair and sustainable internet for creators and developers in the age of generative AI. Hippocratic AI said it’s necessary to have clinicians onboard because they have, over the course of their careers, developed deep expertise in their respective fields, as well as the practical insights to help cure specific medical conditions and the clinical workflows involved.
Investing in Raspberry AI.
Posted: Mon, 13 Jan 2025 08:00:00 GMT [source]
Story aims to bridge this gap by combining Stability AI’s cutting-edge technology with blockchain’s ability to secure digital property rights. For example, creators could register unique styles or voices as intellectual property on Story with transparent usage terms. This would enable others to train and fine-tune AI models using this IP, ensuring that all contributors in the creative chain benefit when outputs are monetized.
Holger Mueller of Constellation Research Inc. said Hippocratic AI is bringing two of the leading technology trends to the healthcare industry, namely no-code or low-code software development and AI agents. The launch is a bold step forward in healthcare innovation, giving clinicians the opportunity to participate in the design of AI agents that can address various aspects of patient care. It says clinicians can create an AI agent prototype that specializes in their area of focus in less than 30 minutes, and around three to four hours to develop one that can be tested. Shah said the last nine months since the company’s previous $50 million funding round have seen it make tremendous progress. During that time, it has received its first U.S. patents, fully evaluated and verified the safety of its first AI healthcare agents, and signed contracts with 23 health systems, payers and pharma clients.
For instance, one of its AI agents is specialized in chronic care management, medication checks and post-discharge follow-up regarding specific conditions such as kidney failure and congestive heart failure. The healthcare-focused artificial intelligence startup Hippocratic AI Inc. said today it has closed on a $141 million Series B funding round that brings its total amount raised to more than $278 million. “This round of financing will accelerate the development and deployment of the Hippocratic generative AI-driven super staffing and continue our quest to make healthcare abundance a reality,” he promised. Raspberry AI, the generative AI platform for fashion creatives, has secured 24 million US dollars in Series A funding led by Andreessen Horowitz (a16z). Today, we’re going in-depth on blockchain innovation with Robert Roose, an entrepreneur who’s on a mission to fix today’s broken monetary system. Hippocratic AI’s early customers include Arkos Health Inc., Belong Health Inc., Cincinnati Children’s, Fraser Health Authority (Canada), GuideHealth, Honor Health, Deca Dental Management, LLC, OhioHealth, WellSpan Health and other well-known healthcare systems and hospitals.
By incorporating this wisdom into its AI agents, it’s making them safer and improving patient outcomes, it said. Crucially, any agent created using its platform will undergo extensive safety training by both the creator and Hippocratic AI’s own staff. Every clinician will have access to a dashboard to track their AI agent’s performance and use and receive feedback for further development.
All these indicate the commitment a16z has in shaping the future of technology and healthcare through strategic investments. Both platforms use Stability AI’s models to bring creators’ visions to life and Story’s blockchain technology to enable provenance and attribution throughout the creative process. These real-world applications highlight how creators can safeguard their intellectual property while thriving in a shared creative economy. Raspberry AI offers brands and manufacturing creative teams technology solutions, which can help accelerate each stage of the fashion product development cycle to increase speed to market and profitability while reducing costs. Andreessen Horowitz, or a16z, is one of the leading AI investors and targets only innovative startups. They participated in the round that funded Anysphere on January 14, 2025, with a total sum of $105 million for an AI coding tool known as Cursor, whose valuation has reached $2.5 billion.
In order to ensure its AI agents can do their jobs safely, Hippocratic AI says it only works with licensed clinicians to develop them, taking steps to verify their qualifications and experience first. Once clinicians have built their agents, they’ll be submitted to the startup for an initial round of testing. Through the Hippocratic AI Agent App Store, healthcare organizations and hospitals will be able to access a range of specialized AI agents for different aspects of medical care.
The startup was co-founded by Chief Executive Officer and serial entrepreneur Munjal Shah and a group of physicians, hospital administrators, healthcare professionals and AI researchers from organizations including El Camino Health LLC, Johns Hopkins University, Stanford University, Microsoft Corp., Google and Nvidia Corp. PIP Labs, an initial core contributor to the Story Network, is backed by investors including a16z crypto, Endeavor, and Polychain. Co-founded by a serial entrepreneur with a $440M exit and DeepMind’s youngest PM, PIP Labs boasts a veteran founding executive team with expertise in consumer tech, generative AI, and Web3 infrastructure. The startup has also created other AI agents for tasks like pre- and post-surgery wound care, extreme heat wave preparation, home health checks, diabetes screening and education, and many more besides. The startup said its AI Agent creators include Dr. Vanessa Dorismond MD, MA, MAS, a distinguished obstetrician and gynecologist at El Camino Women’s Medical Group and Teal Health, who helped to create an AI agent that’s focused on cervical cancer check-ins and enhancing patient education. According to the startup, the objective of these AI agents is to try and solve the massive shortage of trained nurses, social workers and nutritionists in the healthcare industry, both in the U.S. and globally.
The same day, a16z also led a Series A investment in Slingshot AI, which has raised a total of $40 million to create a foundation model for psychology. Those investments highlight the commitment of the group to using AI to address important issues and are also focusing on how AI can improve different industries, including healthcare and consumer services. In general, a16z is committed to supporting AI innovations that could have a profound impact on society. We are thrilled to see our models used in Story’s blockchain technology to ensure proper attribution and reward contributors,” said Scott Trowbridge, Vice President of Stability AI. Others include Kacie Spencer, DNP, RN, the chief nursing officer at Adtalem Global Education Inc., who has more than 20 years of experience in emergency nursing and clinical education. Her AI agent is focused on patient education for the proper installation of child car seats.
It participated in an Anysphere round that had the company raising $105 million on January 14, 2025, when it pushed the valuation up to $2.5 billion. Beyond this, it has also released a $500 million Biotech Ecosystem Venture Fund with Eli Lilly to place a focus on health technologies, but with the aspect of innovative applications. On the same day, they led a Series A investment in Slingshot AI, a company that’s developing advanced generative AI technology for mental health. Additionally, a16z invested in Raspberry AI to bring generative AI to the front of fashion design and production. In December 2024, they envisioned a future in which AI was used aggressively in nearly all sectors.
The post a16z generative ai appeared first on premier mills.
]]>The post a16z generative ai appeared first on premier mills.
]]>Meanwhile, Kristina Dulaney, RN, PMH-C, the founder of Cherished Mom, an organization dedicated to solving maternal mental health challenges, helped to create an AI agent that’s focused on helping new mothers navigate such problems with postpartum mental health assessments and depression screening. The startup was initially focused on creating generative AI chatbots to support clinicians and other healthcare professionals, but has since switched its focus to patients themselves. Its most advanced models take advantage of the latest developments in AI agents, which are a form of AI that can perform more complex tasks while working unsupervised. Despite rapid advancements in AI, creators in open-source ecosystems face significant challenges in monetizing derivative works and securing proper attribution.
Story, the global intellectual property blockchain, has announced its integration with Stability AI’s state-of-the-art models to revolutionize open-source AI development. This collaboration enables creators, developers, and artists to capture the value they contribute to the AI ecosystem by leveraging blockchain technology to ensure proper attribution, tracking, and monetization of creative works generated through AI. Andreessen Horowitz, or a16z, is investing in AI and biotech to lead the way in innovation.
In a statement, Raspberry AI said the funding would be used to accelerate its product development and add top engineering, sales and marketing talent to its team. But with U.S. companies raising and/or spending record sums on new AI infrastructure that many experts have noted depreciate rapidly (due to hardware/chip and software advancements), the question remains which vision of the future will win out in the end to become the dominant AI provider for the world. Or maybe it will always be a multiplicity of models each with a smaller market share? That’s followed by more extensive evaluations and safety assessments by an extensive network of more than 6,000 nurses and 300 doctors, who will confirm that it passes all required safety tests.
Once the AI agent is up and running, the clinicians who created it will be able to claim a share of the revenue it generates from the startup’s customers. Currently the technology is being used by Under Armour, MCM Worldwide, Gruppo Teddy and Li & Fung to create and iterate apparel, footwear and accessories styles. The company’s existing investors Greycroft, Correlation Ventures and MVP Ventures also joined in the round, along with notable angel investors, including Gokul Rajaram and Ken Pilot. Clearly, even as he espouses a commitment to open source AI, Zuck is not convinced that DeepSeek’s approach of optimizing for efficiency while leveraging far fewer GPUs than major labs is the right one for Meta, or for the future of AI.
Story is the world’s intellectual property blockchain, transforming IP into networks that transcend mediums and platforms, unleashing global creativity and liquidity. By integrating Stability AI’s advanced models, Story is taking a significant step toward building a fair and sustainable internet for creators and developers in the age of generative AI. Hippocratic AI said it’s necessary to have clinicians onboard because they have, over the course of their careers, developed deep expertise in their respective fields, as well as the practical insights to help cure specific medical conditions and the clinical workflows involved.
Investing in Raspberry AI.
Posted: Mon, 13 Jan 2025 08:00:00 GMT [source]
Story aims to bridge this gap by combining Stability AI’s cutting-edge technology with blockchain’s ability to secure digital property rights. For example, creators could register unique styles or voices as intellectual property on Story with transparent usage terms. This would enable others to train and fine-tune AI models using this IP, ensuring that all contributors in the creative chain benefit when outputs are monetized.
Holger Mueller of Constellation Research Inc. said Hippocratic AI is bringing two of the leading technology trends to the healthcare industry, namely no-code or low-code software development and AI agents. The launch is a bold step forward in healthcare innovation, giving clinicians the opportunity to participate in the design of AI agents that can address various aspects of patient care. It says clinicians can create an AI agent prototype that specializes in their area of focus in less than 30 minutes, and around three to four hours to develop one that can be tested. Shah said the last nine months since the company’s previous $50 million funding round have seen it make tremendous progress. During that time, it has received its first U.S. patents, fully evaluated and verified the safety of its first AI healthcare agents, and signed contracts with 23 health systems, payers and pharma clients.
For instance, one of its AI agents is specialized in chronic care management, medication checks and post-discharge follow-up regarding specific conditions such as kidney failure and congestive heart failure. The healthcare-focused artificial intelligence startup Hippocratic AI Inc. said today it has closed on a $141 million Series B funding round that brings its total amount raised to more than $278 million. “This round of financing will accelerate the development and deployment of the Hippocratic generative AI-driven super staffing and continue our quest to make healthcare abundance a reality,” he promised. Raspberry AI, the generative AI platform for fashion creatives, has secured 24 million US dollars in Series A funding led by Andreessen Horowitz (a16z). Today, we’re going in-depth on blockchain innovation with Robert Roose, an entrepreneur who’s on a mission to fix today’s broken monetary system. Hippocratic AI’s early customers include Arkos Health Inc., Belong Health Inc., Cincinnati Children’s, Fraser Health Authority (Canada), GuideHealth, Honor Health, Deca Dental Management, LLC, OhioHealth, WellSpan Health and other well-known healthcare systems and hospitals.
By incorporating this wisdom into its AI agents, it’s making them safer and improving patient outcomes, it said. Crucially, any agent created using its platform will undergo extensive safety training by both the creator and Hippocratic AI’s own staff. Every clinician will have access to a dashboard to track their AI agent’s performance and use and receive feedback for further development.
All these indicate the commitment a16z has in shaping the future of technology and healthcare through strategic investments. Both platforms use Stability AI’s models to bring creators’ visions to life and Story’s blockchain technology to enable provenance and attribution throughout the creative process. These real-world applications highlight how creators can safeguard their intellectual property while thriving in a shared creative economy. Raspberry AI offers brands and manufacturing creative teams technology solutions, which can help accelerate each stage of the fashion product development cycle to increase speed to market and profitability while reducing costs. Andreessen Horowitz, or a16z, is one of the leading AI investors and targets only innovative startups. They participated in the round that funded Anysphere on January 14, 2025, with a total sum of $105 million for an AI coding tool known as Cursor, whose valuation has reached $2.5 billion.
In order to ensure its AI agents can do their jobs safely, Hippocratic AI says it only works with licensed clinicians to develop them, taking steps to verify their qualifications and experience first. Once clinicians have built their agents, they’ll be submitted to the startup for an initial round of testing. Through the Hippocratic AI Agent App Store, healthcare organizations and hospitals will be able to access a range of specialized AI agents for different aspects of medical care.
The startup was co-founded by Chief Executive Officer and serial entrepreneur Munjal Shah and a group of physicians, hospital administrators, healthcare professionals and AI researchers from organizations including El Camino Health LLC, Johns Hopkins University, Stanford University, Microsoft Corp., Google and Nvidia Corp. PIP Labs, an initial core contributor to the Story Network, is backed by investors including a16z crypto, Endeavor, and Polychain. Co-founded by a serial entrepreneur with a $440M exit and DeepMind’s youngest PM, PIP Labs boasts a veteran founding executive team with expertise in consumer tech, generative AI, and Web3 infrastructure. The startup has also created other AI agents for tasks like pre- and post-surgery wound care, extreme heat wave preparation, home health checks, diabetes screening and education, and many more besides. The startup said its AI Agent creators include Dr. Vanessa Dorismond MD, MA, MAS, a distinguished obstetrician and gynecologist at El Camino Women’s Medical Group and Teal Health, who helped to create an AI agent that’s focused on cervical cancer check-ins and enhancing patient education. According to the startup, the objective of these AI agents is to try and solve the massive shortage of trained nurses, social workers and nutritionists in the healthcare industry, both in the U.S. and globally.
The same day, a16z also led a Series A investment in Slingshot AI, which has raised a total of $40 million to create a foundation model for psychology. Those investments highlight the commitment of the group to using AI to address important issues and are also focusing on how AI can improve different industries, including healthcare and consumer services. In general, a16z is committed to supporting AI innovations that could have a profound impact on society. We are thrilled to see our models used in Story’s blockchain technology to ensure proper attribution and reward contributors,” said Scott Trowbridge, Vice President of Stability AI. Others include Kacie Spencer, DNP, RN, the chief nursing officer at Adtalem Global Education Inc., who has more than 20 years of experience in emergency nursing and clinical education. Her AI agent is focused on patient education for the proper installation of child car seats.
It participated in an Anysphere round that had the company raising $105 million on January 14, 2025, when it pushed the valuation up to $2.5 billion. Beyond this, it has also released a $500 million Biotech Ecosystem Venture Fund with Eli Lilly to place a focus on health technologies, but with the aspect of innovative applications. On the same day, they led a Series A investment in Slingshot AI, a company that’s developing advanced generative AI technology for mental health. Additionally, a16z invested in Raspberry AI to bring generative AI to the front of fashion design and production. In December 2024, they envisioned a future in which AI was used aggressively in nearly all sectors.
The post a16z generative ai appeared first on premier mills.
]]>