/*! elementor-pro - v3.26.0 - 17-12-2024 */ (()=>{"use strict";class Screenshot extends elementorModules.ViewModule{getDefaultSettings(){return{empty_content_headline:"Empty Content.",crop:{width:1200,height:1500},excluded_external_css_urls:["https://kit-pro.fontawesome.com"],external_images_urls:["https://i.ytimg.com"],timeout:15e3,render_timeout:5e3,timerLabel:null,timer_label:`${ElementorScreenshotConfig.post_id} - timer`,image_placeholder:"data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=",isDebug:elementorCommonConfig.isElementorDebug,isDebugSvg:!1,...ElementorScreenshotConfig}}getDefaultElements(){const e=jQuery(ElementorScreenshotConfig.selector),t=e.find(".elementor-section-wrap > .elementor-section, .elementor > .elementor-section");return{$elementor:e,$sections:t,$firstSection:t.first(),$notElementorElements:elementorCommon.elements.$body.find("> *:not(style, link)").not(e),$head:jQuery("head")}}onInit(){return super.onInit(),this.log("Screenshot init","time"),this.timeoutTimer=setTimeout(this.screenshotFailed.bind(this),this.getSettings("timeout")),this.captureScreenshot()}captureScreenshot(){return this.elements.$elementor.length||(elementorCommon.helpers.consoleWarn("Screenshots: The content of this page is empty, the module will create a fake conent just for this screenshot."),this.createFakeContent()),this.removeUnnecessaryElements(),this.handleIFrames(),this.removeFirstSectionMargin(),this.handleLinks(),this.loadExternalCss(),this.loadExternalImages(),Promise.resolve().then(this.createImage.bind(this)).then(this.createImageElement.bind(this)).then(this.cropCanvas.bind(this)).then(this.save.bind(this)).then(this.screenshotSucceed.bind(this)).catch(this.screenshotFailed.bind(this))}createFakeContent(){this.elements.$elementor=jQuery("
").css({height:this.getSettings("crop.height"),width:this.getSettings("crop.width"),display:"flex",alignItems:"center",justifyContent:"center"}),this.elements.$elementor.append(jQuery("

").css({fontSize:"85px"}).html(this.getSettings("empty_content_headline"))),document.body.prepend(this.elements.$elementor)}loadExternalCss(){const e=[this.getSettings("home_url"),...this.getSettings("excluded_external_css_urls")].map((e=>`[href^="${e}"]`)).join(", ");jQuery("link").not(e).each(((e,t)=>{const s=jQuery(t),n=s.clone();n.attr("href",this.getScreenshotProxyUrl(s.attr("href"))),this.elements.$head.append(n),s.remove()}))}loadExternalImages(){const e=this.getSettings("external_images_urls").map((e=>`img[src^="${e}"]`)).join(", ");jQuery(e).each(((e,t)=>{const s=jQuery(t);s.attr("src",this.getScreenshotProxyUrl(s.attr("src")))}))}handleIFrames(){this.elements.$elementor.find("iframe").each(((e,t)=>{const s=jQuery(t),n=jQuery("
",{css:{background:"gray",width:s.width(),height:s.height()}});s.before(n),s.remove()}))}removeUnnecessaryElements(){let e=0;this.elements.$sections.filter(((t,s)=>{let n=!1;return e>=this.getSettings("crop.height")&&(n=!0),e+=jQuery(s).outerHeight(),n})).each(((e,t)=>{t.remove()})),this.elements.$notElementorElements.remove()}handleLinks(){elementorCommon.elements.$body.find("a").attr("href","/")}removeFirstSectionMargin(){this.elements.$firstSection.css({marginTop:0})}createImage(){const e=new Promise((e=>{window.addEventListener("load",(()=>{e()}))})),t=new Promise((e=>{setTimeout((()=>{e()}),this.getSettings("render_timeout"))}));return Promise.race([e,t]).then((()=>{if(this.log("Start creating screenshot."),this.getSettings("isDebugSvg"))return domtoimage.toSvg(document.body,{imagePlaceholder:this.getSettings("image_placeholder")}).then((e=>this.download(e))),Promise.reject("Debug SVG.");return/^((?!chrome|android).)*safari/i.test(window.userAgent)?(this.log('Creating screenshot with "html2canvas"'),html2canvas(document.body).then((e=>e.toDataURL("image/png")))):(this.log('Creating screenshot with "dom-to-image"'),domtoimage.toPng(document.body,{imagePlaceholder:this.getSettings("image_placeholder")}))}))}download(e){const t=jQuery("",{href:e,download:"debugSvg.svg",html:"Download SVG"});elementorCommon.elements.$body.append(t),t.trigger("click")}createImageElement(e){const t=new Image;return t.src=e,new Promise((e=>{t.onload=()=>e(t)}))}cropCanvas(e){const t=this.getSettings("crop.width"),s=this.getSettings("crop.height"),n=document.createElement("canvas"),i=n.getContext("2d"),o=t/e.width;return n.width=t,n.height=s>e.height?e.height:s,i.drawImage(e,0,0,e.width,e.height,0,0,e.width*o,e.height*o),Promise.resolve(n)}save(e){return new Promise(((t,s)=>{elementorCommon.ajax.addRequest("screenshot_save",{data:{post_id:this.getSettings("post_id"),screenshot:e.toDataURL("image/png")},success:e=>{this.log(`Screenshot created: ${encodeURI(e)}`),t(e)},error:()=>{this.log("Failed to create screenshot."),s()}})}))}markAsFailed(){return new Promise(((e,t)=>{elementorCommon.ajax.addRequest("screenshot_failed",{data:{post_id:this.getSettings("post_id")},success:()=>{this.log("Marked as failed."),e()},error:()=>{this.log("Failed to mark this screenshot as failed."),t()}})}))}getScreenshotProxyUrl(e){return`${this.getSettings("home_url")}?screenshot_proxy&nonce=${this.getSettings("nonce")}&href=${e}`}screenshotSucceed(e){this.screenshotDone(!0,e)}screenshotFailed(e){this.log(e,null),this.markAsFailed().then((()=>this.screenshotDone(!1)))}screenshotDone(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;clearTimeout(this.timeoutTimer),this.timeoutTimer=null,window.parent.postMessage({name:"capture-screenshot-done",success:e,id:this.getSettings("post_id"),imageUrl:t},"*"),this.log(`Screenshot ${e?"Succeed":"Failed"}.`,"timeEnd")}log(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"timeLog";this.getSettings("isDebug")&&(console.log("string"==typeof e?`${this.getSettings("post_id")} - ${e}`:e),t&&console[t](this.getSettings("timer_label")))}}jQuery((()=>{new Screenshot}))})(); Accounting Automation 'Agent': AI Startup Basis Raises $34 Million

AI Startup Basis Raises $34 Million for Accounting Automation ‘Agent’

Artificial intelligence startup Basis said it has obtained $34m in a Series A funding round. Of this funding, the most notable is set to further its state-of-the-art AI ‘Accounting AutomationAgent’, a product on a mission to revolutionize how tasks in the accounting field are executed. With the global push toward automation, Basis’ efforts represent a monumental shift in how accounting professionals approach their work. The introduction of autonomous AI agents reshapes industries, and Basis is at the forefront of this transformation.

Prominent Investors Supporting Basis

The success of the funding round highlights the confidence investors have in Basis’ vision. Leading the round was Khosla Ventures, a renowned name known for backing transformative technological innova, was leading the roundtions. Other key participants included industry stalwarts like NFDG, the AI-focused fund established by former GitHub CEO Nat Friedman and ex-Apple executive Daniel Gross. Additional investors included OpenAI board members Larry Summers and Adam D’Angelo and Google’s chief scientist, Jeff Dean, who is a prominent figure in artificial intelligence.

This is quite an impressive list of investors which shows faith in Basis and the Accounting Automation ‘Agent’. The funds will be used to increase the size of operations, invest in more advanced AI technology. And address the rapidly increasing demand for intelligent automation in accounting firms around the world.

Autonomous AI Agents and Their Role in Accounting

Basis has found its place in such a rapidly growing area of study of autonomous AI agents. Systems stimulated by artificial intelligence behaving autonomously and delivering their actions. These agents are an essential component of the Accounting Automation ‘Agent’. Automating routine accounting processes and allowing professionals to focus on more strategic responsibilities.

Experts like OpenAI CFO Sarah Friar have emphasized the transformative power of autonomous agents. Predicting their dominance in the artificial intelligence landscape shortly. Basis’ tools are also consistent with this prediction that Basis also provides tools for improving accountants’ efficiency. This case demonstrates not only the efficiency of AI and the potential developments in the automation of accounting.

Product Features and Their Impact

The Accounting Automation ‘Agent’ is specifically designed to cater to the unique needs of accounting firms. Its features are aimed at automating essential yet repetitive tasks. Such as recording financial transactions and verifying data accuracy. By integrating seamlessly with popular ledger systems like Intuit’s QuickBooks and Xero, Basis’ product ensures compatibility and ease of use.

What sets the Accounting Automation ‘Agent’ apart is its ability to function like a junior accountant, handling routine tasks efficiently. It also helps to decrease the amount of work which is done by human workers such as accountants. But also helps to decrease mistakes, increase compliance, and make the overall information more reliable. Integration with leading ledgers also ensures that firms leveraging on the technology will not have to change their working systems.

Real-World Benefits for Large Firms

The benefits of the Accounting Automation ‘Agent’ are already evident in its adoption by large accounting firms like Wiss, which employs over 450 accountants. Wiss has reported a significant 30% reduction in time spent on routine workflows since implementing Basis’ technology.

AI-powered accounting tools
Source: unite.ai

The Accounting Automation ‘Agent’ demonstrates how regular and low value-added administrative processes can be eliminated and resources can then be better utilized. Real-time reactivity can serve as an opportunity to optimize the accountant’s work for examining the AI’s results, improving the identified tactics, and enriching the knowledge for clients. The result is an improved and faster way of accounting and makes the Basis a necessary tool for companies seeking to be top performer among their competitor.

Addressing the Accountant Shortage Crisis

The absence of human resources is considered one of the apparent issues common to the accounting industry of business. Currently, the Bureau of Labour Statistics shows there are more than 3 million people employed in accounting but the number of students writing the CPA exam has reduced from 2016 to 2021 by 33%. As a result of retiring baby boomers and the youth seeking other careers. Others have contributed to this decline, leaving a big vacuum. Earlier, such a scarcity compensated by outsourcing to such countries as India. That provide access to qualified personnel to oversee accounting. That said, this approach not sustainable in the long run. 

As a medium-long-term solution, the predictions show that Basis’ Accounting Automation ‘Agent’ is a realistic way of achieving the objective by removing many of the repetitive manual tasks involved. According to Keith Rabois, the managing director of Khosla Ventures, Basis must pursue this problem aggressively, as the company is helping firms work better. The Accounting Automation ‘Agent’ allows firms to realize operational quality with values of accuracy. And efficiency that would not compromised by the lack of administrative labor.

Transforming the Future of Accounting

The introduction of the Accounting Automation ‘Agent’ by Basis marks a significant step forward in the evolution of accounting. Through the use of artificial intelligence Basis has developed a solution that can deal with financial processes with efficiency and elasticity. This innovation is not only changing the accounting practice, but it is also solving some of the big problems like shortage of workforce and enhanced workload.

Pushed by the rising popularity of autonomy. The use of AI-related instruments is projected to increase significantly. Such adopting firms will be able to reap improved productivity in their production processes, less operational cost, and better decision-making processes. Basis is uniquely positioned to drive this change with solutions that look at the business needs and future trends in the industry.

Conclusion

The basis is a well-recognized accounting firm that has recently unveiled an innovative AI solution called the Accounting Automation ‘Agent’.  With solid financial support and support from key investors, the company will be able to stimulate progress and solve the main problems that hamper work, such as shortages and inefficiency of labor. Its product is envisaged to work like a junior accountant among professionals not only does it perform most of the repetitive tasks. But it also releases the human resources to perform more significant tasks.

As the demand for automation grows, Basis’ transformative technology is setting new benchmarks in accounting. The company’s efforts symbolize a new era where artificial intelligence plays a central role in shaping industries, making Basis a trailblazer in the field of accounting automation.

FAQs

What is Basis’ Accounting Automation ‘Agent’?

It is an AI-powered tool designed to automate accounting processes, reducing manual workloads.

How much funding did Basis raise?

Basis successfully secured $34 million in its Series A funding round.

How does the Accounting Automation ‘Agent’ benefit accounting firms?

It automates repetitive tasks, allowing accountants to focus on strategic roles.

Who were the key investors in Basis’ funding round?

Investors included Khosla Ventures, OpenAI board members, and Google’s Jeff Dean.

What challenges does the Accounting Automation ‘Agent’ address?

It tackles labor shortages and enhances efficiency in the accounting industry.

Leave a Comment