Home Blog Page 531

OpenAI Unveils “o1” Reasoning Model and $200 ChatGPT Pro Tier

New Tier of ChatGPT with Higher Usage Limits and Advanced Reasoning Model

Introducing ChatGPT Pro

On Thursday, OpenAI announced a new tier of ChatGPT with higher usage limits for $200 a month and the full version of "o1," a so-called reasoning model the company debuted in September. This new tier, called ChatGPT Pro, is designed for researchers, engineers, and individuals who use research-grade intelligence daily.

What’s New in ChatGPT Pro

Unlike o1-preview, o1 can now process images as well as text, similar to GPT-4o. It is reportedly much faster than o1-preview, with a demo question about a Roman emperor taking 14 seconds for an answer, compared to 33 seconds for o1-preview. According to OpenAI, o1 makes major mistakes 34 percent less often than o1-preview, and "thinks" 50 percent faster. The model will also reportedly become even faster once deployment is finished transitioning the GPUs to the new model.

What’s in the ChatGPT Pro Package

The ChatGPT Pro subscription includes:

  • Unlimited access to the full version of o1, a highly advanced reasoning model
  • Access to o1-mini, GPT-4o, and Advanced Voice
  • o1 Pro Mode, a version of o1 that uses more compute to think harder and provide even better answers to the hardest problems
  • Future updates with powerful, compute-intensive productivity features

Who is ChatGPT Pro For?

ChatGPT Pro seems aimed at those who might benefit from higher rate limits and more computational time devoted to coming up with an answer. According to OpenAI, "ChatGPT Pro provides a way for researchers, engineers, and other individuals who use research-grade intelligence daily to accelerate their productivity and be at the cutting edge of advancements in AI."

Conclusion

The new ChatGPT Pro service is designed to provide a more powerful and efficient way for researchers, engineers, and others to use AI-powered tools and models. With its advanced reasoning capabilities and increased computational power, ChatGPT Pro has the potential to accelerate productivity and advance the field of AI.

Frequently Asked Questions

Q: What is the cost of ChatGPT Pro?
A: The cost of ChatGPT Pro is $200 per month.

Q: What is included in the ChatGPT Pro package?
A: The package includes unlimited access to the full version of o1, o1-mini, GPT-4o, and Advanced Voice, as well as o1 Pro Mode, which uses more compute to think harder and provide even better answers to the hardest problems.

Q: Who is ChatGPT Pro for?
A: ChatGPT Pro is designed for researchers, engineers, and other individuals who use research-grade intelligence daily.

Q: Will ChatGPT Pro be faster and more accurate than the standard version of ChatGPT?
A: Yes, ChatGPT Pro is reportedly much faster and more accurate than the standard version of ChatGPT, with major mistakes reduced by 34 percent and "thinking" 50 percent faster.

Spotify Wrapped: AI-Generated Podcast Analyzing Your Listening Habits

0

Spotify Wrapped’s Animated Yearly Recap

A New Twist: AI-Powered Podcast Recap

Spotify Wrapped’s yearly recap of your listening habits—at once beloved and reviled—is back again. But in 2024, the flashy visuals will be accompanied by a brand-new audio add-on crafted with artificial intelligence. Starting today, Spotify users will now get the chance to listen to their annual report as a personalized, AI-powered podcast, in which two synthetic hosts discuss the user’s most-played tracks and favorite artists with enthusiasm.

How it Works

The new podcast recap is powered by Google’s NotebookLM. If you’ve used Google’s AI tool to generate an audio podcast about a topic you’re researching, then the two AI-generated voices in the Wrapped podcast will sound familiar. The voices, which Spotify refers to as "AI hosts," will engage in a brief conversation about you and your 2024 listening patterns.

Personalization and Analysis

The podcast is fully personalized. The two hosts address users by name and speak in the second person. In addition to providing you with hard facts (like your top artist and total number of minutes you spent listening), the hosts will analyze the data Spotify has collected about you. They’ll flatter you—they told me I’m a "tastemaker," and called my music taste "so diverse" and "so unique." They’ll extrapolate details of your lifestyle based on your listening habits.

The Future of Wrapped

This isn’t Spotify’s first time incorporating an AI-powered voice into the Wrapped experience. Last year, the platform’s resident AI DJ, called DJ X, was included as a Wrapped add-on, providing commentary on users’ 2023 listening habits. This year, Spotify expanded this feature to serve Spanish speakers, indicating the company sees a future in AI-generated audio.

Concerns and Criticism

This AI-enhanced version of Wrapped arrives at a time when users are expressing concerns about Big Tech’s surveillance of their behavior and rampant data collection. Spotify in particular has faced criticism for rebranding its precise tracking of user activity as a cozy and sharable holiday gift. Listeners have also been slow to embrace AI-generated podcasts, which typically feature cloying virtual hosts that seem eerie in their attempts to sound human.

Conclusion

Spotify Wrapped’s AI-powered podcast recap is a new and innovative way to engage with your listening habits. While some may be skeptical about the use of AI in this context, it’s clear that Spotify is committed to pushing the boundaries of what’s possible with data analysis and personalized content.

Frequently Asked Questions

Q: Will I be able to share my AI-powered podcast recap?
A: Yes, just like the long-standing visual iteration of Wrapped, the AI podcast will be easily shareable.

Q: Will the AI hosts be available in languages other than English?
A: Currently, the AI hosts will be available in English, but Spotify may expand the feature to other languages in the future.

Q: Will I be able to opt-out of the AI-powered podcast recap?
A: Yes, users will have the option to opt-out of the AI-powered podcast recap and stick with the traditional visual Wrapped experience.

Q: How will my data be used to create the AI-powered podcast recap?
A: Spotify will use the data it has collected about your listening habits to create the personalized podcast recap.

Automating Software Test Case Creation with AI Agents

0

Test Implementation Generation

To streamline this process, the DriveOS team at NVIDIA developed Hephaestus (HEPH), an internal generative AI framework for automatic test generation. HEPH automates design and implementation for various tests, including integration and unit tests. It uses large language models (LLMs) for input analysis and code generation, significantly reducing the time spent on creating test cases.

Procedure

  1. Open a connection to the thermal zone using NvThermmonOpen().
  2. Query the temperature for the thermal zone using NvThermmonGetZoneTemp() multiple times.
  3. Compare temperature values over successive calls.

Expected Result: The temperature values should show a difference of >0 and should vary with the resolution supported by the temperature sensor.

Test Implementation Generation

Based on the test specifications and ICD details, HEPH generates the tests in C.

#include 
#include 
#include "NvThermmonAPI.h"

// Test Case TC_DOSBSP60-REQ-3874_001
// Verify successful temperature query for a supported thermal zone
void TC_DOSBSP60_REQ_3874_001(void) {
    NvThermmonHandle handle;
    zone_temp_t zoneTemp;

    // Step 1: Open a connection to the thermal zone using NvThermmonOpen()
    NvThermmonErrCode status = NvThermmonOpen("CPU-therm", &handle);
    if (status!= NV_THERMMON_ERR_CODE_NO_ERROR) {
        printf("TC_DOSBSP60-REQ-3874_001: NvThermmonOpen failed\n");
        return;
    }

    // Step 2: Query the temperature for the thermal zone using NvThermmonGetZoneTemp()
    status = NvThermmonGetZoneTemp(handle, &zoneTemp);
    if (status!= NV_THERMMON_ERR_CODE_NO_ERROR) {
        printf("TC_DOSBSP60-REQ-3874_001: NvThermmonGetZoneTemp failed\n");
        return;
    }

    // Step 3: Retrieve two consecutive temperature values
    int32_t delta = zoneTemp.temp_2 - zoneTemp.temp_1;
    if (delta > 100) { // Assume 100 is the delta determined by the thermal characteristics of the board
        printf("TC_DOSBSP60-REQ-3874_001: Temperature delta is too large\n");
    } else {
        printf("TC_DOSBSP60-REQ-3874_001: Passed\n");
    }
}

// Test Case TC_DOSBSP60-REQ-3874_002
// Verify accompanying timestamp for temperature queries
void TC_DOSBSP60_REQ_3874_002(void) {
    NvThermmonHandle handle;
    zone_temp_t zoneTemp;

    // Step 1: Open a connection to the thermal zone using NvThermmonOpen()
    NvThermmonErrCode status = NvThermmonOpen("CPU-therm", &handle);
    if (status!= NV_THERMMON_ERR_CODE_NO_ERROR) {
        printf("TC_DOSBSP60-REQ-3874_002: NvThermmonOpen failed\n");
        return;
    }

    // Step 2: Query the temperature for the thermal zone using NvThermmonGetZoneTemp()
    status = NvThermmonGetZoneTemp(handle, &zoneTemp);
    if (status!= NV_THERMMON_ERR_CODE_NO_ERROR) {
        printf("TC_DOSBSP60-REQ-3874_002: NvThermmonGetZoneTemp failed\n");
        return;
    }

    // Step 3: Retrieve two consecutive temperature values along with two corresponding timestamps
    uint64_t deltaTs = zoneTemp.ts_2 - zoneTemp.ts_1;
    if (deltaTs > 1000) { // Assume 1000 microseconds is the maximum allowed delta
        printf("TC_DOSBSP60-REQ-3874_002: Timestamp delta is too large\n");
    } else {
        printf("TC_DOSBSP60-REQ-3874_002: Passed\n");
    }
}

// Test Case TC_DOSBSP60-REQ-3874_003
// Verify temperature variation over successive calls
void TC_DOSBSP60_REQ_3874_003(void) {
    NvThermmonHandle handle;
    zone_temp_t zoneTemp1, zoneTemp2;

    // Step 1: Open a connection to the thermal zone using NvThermmonOpen()
    NvThermmonErrCode status = NvThermmonOpen("CPU-therm", &handle);
    if (status!= NV_THERMMON_ERR_CODE_NO_ERROR) {
        printf("TC_DOSBSP60-REQ-3874_003: NvThermmonOpen failed\n");
        return;
    }

    // Step 2: Query the temperature for the thermal zone using NvThermmonGetZoneTemp() multiple times
    status = NvThermmonGetZoneTemp(handle, &zoneTemp1);
    if (status!= NV_THERMMON_ERR_CODE_NO_ERROR) {
        printf("TC_DOSBSP60-REQ-3874_003: NvThermmonGetZoneTemp (1st call) failed\n");
        return;
    }

    status = NvThermmonGetZoneTemp(handle, &zoneTemp2);
    if (status!= NV_THERMMON_ERR_CODE_NO_ERROR) {
        printf("TC_DOSBSP60-REQ-3874_003: NvThermmonGetZoneTemp (2nd call) failed\n");
        return;
    }

    // Step 3: Compare temperature values over successive calls
    int32_t temperatureDifference = zoneTemp2.temp_1 - zoneTemp1.temp_1;
    if (temperatureDifference <= 0) {
        printf("TC_DOSBSP60-REQ-3874_003: Temperature did not vary as expected\n");
    } else {
        printf("TC_DOSBSP60-REQ-3874_003: Passed\n");
    }
}

Future Enhancements

There are a few core things to focus on when designing a test generation framework:

  • Supporting different test workflows
  • Integrating real-time human feedback

Supporting Different Test Workflows

HEPH is designed to support most test-generation use cases for software teams. Still, there are instances when teams require a custom test framework or an unsupported test creation workflow.

To address these challenges, potential future improvements to HEPH could include a modular design, enabling software teams to define custom modules for non-standard workflows.

Integrating Real-Time Human Feedback

While the latest LLMs perform well in understanding the development context and generating high-quality code, there are cases where generated test sets may require improvement.

Possible future enhancements to HEPH could include the introduction of an interactive mode alongside the current automatic mode. In this interactive mode, you’d interact with the HEPH agent at each step of the test generation process, reviewing results, providing feedback, and refining outputs before proceeding.

Start HEPHing Your Automatic Test Generation

Hephaestus (HEPH) automates test generation in software development by using LLMs to create comprehensive and context-aware tests. This automation reduces manual effort, accelerates development, and improves the quality and reliability of the final product.

Build Your AI Agent Application

For more information about using NVIDIA generative AI technologies and tools to create your own AI agents and applications, see ai.nvidia.com or try out NVIDIA NIM APIs.

Acknowledgments

Thanks to the DriveOS QNX BSP team for piloting HEPH.

Strands

0

Strands

  • by johnthedowe2

    December 5, 2024

  • It’s Teatime!

    by surrealistic_mind

    December 4, 2024

  • Noir Surrealism In Motion

    by Well3eyond

    December 2, 2024

  • Ephemeral Elegance

    by saizoai

    November 26, 2024

  • Pareidolias…

    by EnriqueAB

    November 25, 2024

  • Breaking Barriers in STEM and 3D Printing for Women

    0

    ELEGOO With Her: A Groundbreaking Female Empowerment Initiative

    ELEGOO, a well-known 3D printer manufacturer, has launched a revolutionary female empowerment initiative called ELEGOO With Her. The program aims to enhance the skills and expertise of women in 3D printing, FashionTech, and Wearable Robotics, encouraging them to start their own businesses and contribute to innovation in the industry.

    What is ELEGOO With Her?

    ELEGOO With Her is an industry-first initiative that provides women with the necessary skills, knowledge, and support to succeed in the 3D printing industry. The program offers 3D printing equipment, expert mentorship from leading female professionals, and software support with online courses.

    How to Apply

    The application process for ELEGOO With Her is open until February 5, 2025. To apply, women need to fill out a form detailing their interests and potential 3D printing project ideas.

    What’s Included

    Applicants will receive:

    * 3D printing equipment
    * Expert mentorship from leading female professionals, including Anouk Wipprecht, Batoul al-Rashdan, Brigitte Kock, and Linette Manuel
    * Software support with two months of online courses
    * Opportunity to showcase their work

    Why is This Initiative Needed?

    The STEM industries have a complex gender gap, with women often discouraged from pursuing careers in these fields. ELEGOO With Her aims to address this issue by providing women with the support and resources they need to succeed.

    Personal Experience

    As a woman who has recently entered the 3D printing industry, I understand the importance of this initiative. My own experience with 3D printing communities has shown that women often face gatekeeping and exclusion. ELEGOO With Her provides a much-needed space for women to learn, grow, and connect with each other.

    Conclusion

    ELEGOO With Her is a groundbreaking initiative that has the potential to make a significant impact on the 3D printing industry. By providing women with the skills, knowledge, and support they need to succeed, ELEGOO is promoting gender equality and inclusivity. I urge all women interested in 3D printing to apply for this program and be a part of this innovative initiative.

    Frequently Asked Questions

    Q: Who is eligible to apply for ELEGOO With Her?
    A: Women of all ages and backgrounds are eligible to apply.

    Q: What kind of support does ELEGOO With Her offer?
    A: The program offers 3D printing equipment, expert mentorship, software support, and opportunities to showcase work.

    Q: How do I apply for ELEGOO With Her?
    A: Applications are open until February 5, 2025. Women can apply by filling out a form detailing their interests and potential 3D printing project ideas.

    Q: Is ELEGOO With Her only for beginners?
    A: No, the program is open to women of all skill levels. Whether you’re a beginner or an experienced 3D printing enthusiast, you can apply and benefit from the program.

    Q: Can I apply as a team?
    A: No, the program is open to individual women only.

    Q: What happens after I apply?
    A: After applying, ELEGOO will review applications and select participants for the program. Participants will be notified and provided with more information about the program and its requirements.

Exotec expands pharmaceutical sector portfolio through partnerships with Hygie31 and Hartmann – Robotics & Automation News

0

Exotec, a provider of warehouse automation and robotics solutions, has agreed partnerships with two new organisations in the pharmaceutical sector: Hygie31 and Hartmann Group. Both companies will adopt Exotec’s Skypod robotic system to automate warehouse processes and increase efficiency.

Hygie31, a major player in the healthcare industry has chosen Exotec to transform its pharmacy Dhygietal logistics platform, with the Skypod robots implemented at the company’s La Veuve warehouse.

The Exotec installation covers 1,500 sq m and comprises 38 Skypod robots, moving autonomously in all directions and up to 11 metres in height.

The installation will be instrumental to Hygie31’s ongoing growth, with the company aiming to increase productivity sixfold over the next three years, while tripling the number of product references from 23,000 to 70,000.

The system was designed to be deliberately oversized for this reason, and will be integral in the development and rollout of Hygie31’s HygieStore supply tool. This aims to give pharmacies across France access to a wider range of products, with shorter delivery times.

Hervé Jouves, chairman of Hygie31, says: “With the addition of this new automated logistics platform, Hygie 31 group has acquired a modern tool, which is unique to the pharmacy market, providing a competitive advantage for its digital business, local pharmacy groups and pharmacy Lafayette brand.

“From a social point of view, we are also preserving the working conditions of Dhygietal’s employees, as Exotec’s robots will take over repetitive and arduous tasks, enabling them to concentrate on value-added tasks.”

Hartmann Group is a leading European provider of professional medical and care products, and associated services. It has taken on Exotec’s Skypod system in order to double its storage density and increase the speed of order processing at its site in the Auvergne-Rhône-Alpes region.

The new installation will also improve working conditions at the site, support employees in the warehouse, increase performance output, shorten delivery times, and expand volumes of express deliveries. Hartmann expects the project to be completed and operational by early 2025.

Emmanuel Denoues, director of operations at Hartmann France, says: “This collaboration with Exotec is a major milestone for Hartmann France, enabling us to continue our growth in the French market.

“With this investment in our site, we are committed to providing a wider range of services and even better performance for our pharmacist partners.“

Thomas Genestar, general manager for western Europe at Exotec, says: “We are proud to support both Hygie31 and Hartmann France in their ongoing growth, and to demonstrate the effectiveness of our Skypod system in serving two prominent players in healthcare, a hugely competitive industry.

“The system offers significant benefits to both customers in terms of storage, traceability, and order preparation, helping transform efficiency and service quality. We look forward to helping raise Hygie31 and Hartmann to new levels of success over the coming months and years.”

Print Friendly, PDF & Email

12 Days of ‘ship-mas

0

Happy Holidays from OpenAI

A "Shipmas" of New Features and Products Coming Your Way

Happy holidays from OpenAI. The AI startup is planning a "shipmas" period of new features, products, and demos for the next 12 days, starting on December 5th. The announcements will include OpenAI’s long-awaited text-to-video AI tool Sora and a new reasoning model, sources familiar with OpenAI’s plans tell The Verge.

What to Expect

According to OpenAI CEO Sam Altman, the company plans to launch or demo something every day for 12 days straight. While details are scarce, here’s a glimpse into what’s coming:

A New Text-to-Video AI Tool: Sora

Sora, the long-awaited text-to-video AI tool, is finally arriving. This technology has the potential to revolutionize the way we create and consume media.

A New Reasoning Model

OpenAI is also planning to unveil a new reasoning model, which will further advance the company’s capabilities in natural language processing and AI.

Getting Ready for the "Shipmas" Period

OpenAI’s "shipmas" period is set to kick off on December 5th and will last for 12 days. During this time, the company will be launching or demoing new features and products every day. Here’s a rough outline of what to expect:

Day 1-3: New AI Tools and Technologies

The first three days of the "shipmas" period will see the introduction of new AI tools and technologies, including Sora and the new reasoning model.

Day 4-6: Product Launches

Days 4-6 will be focused on product launches, with new and innovative AI-powered products making their debut.

Day 7-12: Demos and Showcases

The final six days of the "shipmas" period will feature demos and showcases of the new products and technologies, giving the public a glimpse into the future of AI.

Frequently Asked Questions

Q: What is OpenAI’s "shipmas" period?
A: OpenAI’s "shipmas" period is a 12-day period of new features, products, and demos starting on December 5th.

Q: What can I expect during the "shipmas" period?
A: You can expect to see new AI tools, technologies, products, and demos every day for 12 days straight.

Q: What is Sora?
A: Sora is a new text-to-video AI tool from OpenAI that has the potential to revolutionize the way we create and consume media.

Q: What is the new reasoning model?
A: The new reasoning model is a new AI technology from OpenAI that will further advance the company’s capabilities in natural language processing and AI.

Teatime AI-ARTS

0

The Subversive World of Tea Drinking

A Symbol of Style and Social Belonging

The celebrated pleasure of tea drinking, as a symbol of style and social belonging, is deconstructed by the incorporation of absurd and chaotic elements. This newly created world links the conscious realms of rational everyday life with the irrational world of dreams. The interplay of conventional symbols and surreal distortions creates new boundaries between reality and fantasy. In this way, the everyday ritual of tea drinking becomes a reflection on the different and often contradictory aspects of daily life, which oscillates between order and chaos.

The Surreal Tea Party

The images that follow depict a world where the traditional tea party is turned upside down. Cups and saucers are replaced with strange and fantastical objects, and the elegant setting is invaded by the absurd and the irrational. This world is a reflection of the contradictions and paradoxes that we encounter in our daily lives, where the rational and the irrational coexist.

The Absurd and the Irrational

The images of tea cups with multiple handles, tea infusers shaped like animals, and teapots with faces, blur the lines between reality and fantasy. The use of bright colors and bold lines creates a sense of playfulness and whimsy, while the juxtaposition of the mundane with the surreal creates a sense of disorientation.

Conclusion

The subversive world of tea drinking is a reflection of the tensions and contradictions that we experience in our daily lives. It is a world where the rational and the irrational coexist, where the familiar and the strange are intertwined. By reimagining the traditional tea party, we can gain a new perspective on the world around us, and see the beauty in the absurd and the irrational.

Frequently Asked Questions

Q: What is the purpose of this exhibit?
A: The purpose of this exhibit is to challenge our perceptions and to reflect on the tensions and contradictions that we experience in our daily lives.

Q: What is the significance of tea drinking in this context?
A: Tea drinking is a symbol of style and social belonging, and by subverting this ritual, we can gain a new perspective on the world around us.

Q: What inspired this exhibit?
A: The exhibit was inspired by the desire to challenge the status quo and to push the boundaries of what is considered acceptable in art and design.

Q: How do you hope viewers will react to this exhibit?
A: We hope that viewers will be challenged and inspired by the exhibit, and that it will encourage them to think differently about the world around them.

High-Yield Savings Account: The Surprisingly Boring Wealth-Builder

Stay Informed with Free Updates

Silicon Valley’s Next Big Thing: Boring AI

Silicon Valley visionaries dream of making mega-money out of cool, futuristic products that thrill consumers, such as the metaverse, self-driving cars or health-monitoring apps. The duller reality is that most venture capitalists generate the best returns from investing in boring stuff sold to other businesses.

The Rise of SaaS

Over the past two decades, Software-as-a-Service has emerged as one of the most lucrative fields for VC investment, generating 337 unicorns, or tech start-ups valued at more than $1bn. But typical SaaS businesses, such as customer relationship management systems, payments processing platforms, and collaborative design tools, rarely quicken the consumer’s pulse. Investors love them all the same: they are capital-light and speedily scalable and can generate torrents of revenue from dependable, and often price-insensitive, corporate licenses.

The Future of AI

That may well be the case with generative artificial intelligence, too. For the moment, consumers are still dazzled by the seemingly magical ability of foundation models to generate reams of plausible text, video, and music and to clone voices and images. The big AI companies are also trumpeting the value of consumer-facing personal digital agents that are supposedly going to make all our lives easier.

AI Agents: The Next Big Thing?

"Agentic" is going to be the word of next year, OpenAI’s chief financial officer, Sarah Friar, recently told the FT. "It could be a researcher, a helpful assistant for everyday people, working moms like me. In 2025, we will see the first very successful agents deployed that help people in their day-to-day," she said.

Boring, But Lovable

While the big AI companies, like OpenAI, Google, Amazon, and Meta, are developing general-purpose agents that can be used by anyone, a small army of start-ups is working on more specialized AI agents for business. At present, generative AI systems are mostly seen as co-pilots that augment human employees, helping them write better code, for example. Soon, AI agents may become autonomous autopilots to replace business teams and functions altogether.

The Y Combinator Effect

In a recent discussion, the partners at Y Combinator said the Silicon Valley incubator had been deluged with mind-blowing applications from start-ups looking to apply AI agents to fields that include recruitment, onboarding, digital marketing, customer support, quality assurance, debt collection, medical billing, and searching and bidding for government contracts. Their advice was: find the most boring, repetitive administrative work you can automate it. Their conclusion was that vertical AI agents could well become the new SaaS. Expect more than 300 AI agent unicorns to be created.

Challenges Ahead

Two factors may slow the rate of adoption, however. First, if AI agents really are capable of replacing entire teams and functions then it seems unlikely that line managers will adopt them in a hurry. Managerial suicide is not a strategy taught at most business schools. Ruthless chief executives, who understand the technology, might impose brutality on their underlings in pursuit of greater efficiency. Or, more likely, new company structures will evolve as start-ups seek to exploit AI agents to the maximum. Some founders are already talking about creating zero-employee autonomous companies. Their Christmas parties may be a bit of a drag, though.

The Multi-Agent Ecosystem

The second frustrating factor may be concerns about what happens when agents increasingly interact with other agents and humans are out of the loop. What does this multi-agent ecosystem look like and how does it work in practice? How can anyone ensure trust and enforce accountability?

Conclusion

The future of AI agents is exciting, but also daunting. As AI becomes more pervasive, it’s crucial to ensure that it’s used responsibly and ethically. The potential benefits are significant, but so are the risks. It’s up to us to get it right.

FAQs

Q: What is the potential impact of AI agents on the job market?
A: AI agents have the potential to replace certain jobs, but they may also create new ones. The key is to upskill and reskill the workforce to take advantage of the opportunities presented by AI.

Q: How can we ensure trust and accountability in multi-agent systems?
A: We need to design AI agents that are transparent, explainable, and accountable. This will require significant advances in areas like explainable AI and human-AI collaboration.

Q: What is the future of work in an AI-driven world?
A: The future of work will be shaped by AI, but it’s not a zero-sum game. While some jobs may be replaced, others will be created. The key is to focus on human skills like creativity, empathy, and problem-solving, which will always be in demand.

Indiana Jones and the Crystal of the Ancients

GeForce NOW Wraps Up a Sleigh-Full of Gaming Gifts

This month, GeForce NOW is stuffing members’ cloud gaming stockings with new titles and fresh offers to keep holiday gaming spirits merry and bright.

Indiana Jones and the Great Circle

Adventure calls and whip-cracking action awaits in the highly anticipated Indiana Jones and the Great Circle, streaming in the cloud today during the Advanced Access period for those who have preordered the Premium Edition from Steam or the Microsoft Store.

The title can only be played with RTX ON — GeForce NOW is offering gamers without high-performance hardware the ability to play it with 25% off Ultimate and Performance Day Passes. It’s like finding that extra-special gift hidden behind the tree.

New Membership Offer

This GFN Thursday also brings a new limited-time offer: 50% off the first month of new Ultimate or Performance memberships — a gift that can keep on giving.

Gaming for Everyone

Whether looking to try out GeForce NOW or buckle in for long-term cloud gaming, new members can choose between the Day Pass sale or the new membership offer. There’s a perfect gaming gift for everyone this holiday season.

13 New Titles in December

GFN Thursday also brings 13 new titles in December, with four available this week to get the festivities going.

Path of Exile 2

Path of Exile 2 is the highly anticipated sequel to the popular free-to-play action role-playing game from Grinding Gear Games. The game will be available for members to stream Friday, Dec. 6, in early access with a wealth of content to experience.

Conclusion

In conclusion, GeForce NOW has a jam-packed holiday season lined up, with new titles and offers to keep gamers engaged and entertained. Whether you’re a long-time gamer or just discovering the joy of cloud gaming, GeForce NOW has something for everyone.

FAQs

Q: What is GeForce NOW?
A: GeForce NOW is a cloud gaming platform that allows users to stream high-performance games on various devices, without the need for dedicated gaming hardware.

Q: What are the benefits of GeForce NOW membership?
A: GeForce NOW membership provides access to a vast library of games, including premium titles, early access games, and classic games, as well as exclusive content and perks.

Q: Can I play Indiana Jones and the Great Circle with GeForce NOW?
A: Yes, Indiana Jones and the Great Circle is available to stream on GeForce NOW, with Advanced Access during the preorder period.

Q: What are the pricing options for GeForce NOW?
A: GeForce NOW offers various pricing options, including Day Pass, Ultimate Membership, and Performance Membership.

Q: What devices can I use with GeForce NOW?
A: GeForce NOW is compatible with a variety of devices, including PCs, laptops, NVIDIA Shield TVs, and Chromebooks.