AI News

AI is reshaping the technology landscape, standing as a beacon of innovation with enduring impact. As AI technology continues to evolve, it sparks increasing debate and controversy. However, we cannot deny that the impact of AI development is destined to be profound and far-reaching.

AI News

Artificial Intelligence


Table of Contents

2024/10/04

Canvas

ChatGPT canvas 是UI的更新,并针对一些功能进行了优化,比如代码引入Coding shortcuts :

审查代码:ChatGPT提供内联建议来改进您的代码。

添加日志:插入打印语句以帮助您调试和理解代码。

添加注释:在代码中添加注释以便更容易理解。

修复错误:检测并重写有问题的代码以解决错误。

转换语言:将您的代码转换为JavaScript、TypeScript、Python、Java、C++或PHP。

关于捷径,AI Agent在初期就通过@ 方式设置shortcut。异曲同工。

2024/10/02

OpenAI Realtime API

Realtime API 目前支持文本和音频作为输入和输出,还支持函数调用。优势包括:本地语音转语音,低延迟;自然、可控的声音;同时多模态输出。

用例:

import WebSocket from "ws";

const url = "wss://api.openai.com/v1/realtime?model=gpt-4o-realtime-preview-2024-10-01";
const ws = new WebSocket(url, {
    headers: {
        "Authorization": "Bearer " + process.env.OPENAI_API_KEY,
        "OpenAI-Beta": "realtime=v1",
    },
});

ws.on("open", function open() {
    console.log("Connected to server.");
    ws.send(JSON.stringify({
        type: "response.create",
        response: {
            modalities: ["text"],
            instructions: "Please assist the user.",
        }
    }));
});

ws.on("message", function incoming(message) {
    console.log(JSON.parse(message.toString()));
});

OpenAI又有创始人离巢

2024/9/26

OpenAI又有创始人离巢

Mira、Bob和Barret决定离开OpenAI。

mira is leaving
OpenAI is nothing without its people

Meta发布新产品:Llama3.2 Orion AR Quest 3S VR

AI眼镜

MetaAwakening发布会上,Zuck介绍了包括Llama3.2大模型以及AI眼镜 Orion等产品。

我们预料AI眼镜将是未来重要方向。

Newsletter

Curating the most essential AI news and tools, and delivering the insights you need directly to your inbox.

follow us on X


Free AI Research Guidebook:

AI Agent Complete Guidebook help gear you up人工智能助手指南

Shopping Cart
Scroll to Top