应用产品
基于Jev的对话记忆,支持查找历史会话和回顾决策及原始来源。macOS平台的OpenAI Codex工作空间,集成AI对话、agent管理、CodeGraph代码浏览、Git、Ghostty终端和Apple Notes。
Jev-powered conversation memory: find past sessions and revisit decisions with original sources. A macOS workspace for OpenAI Codex. Manage AI conversations and agents, explore code with CodeGraph, and work with Git, Ghostty terminals, and Apple Notes in one app.
expect(url).toBe('https://api.typesafe.ai/v1/systemone');desktop/test/autopilot.test.ts:95
链接指向我们抓取当天的那个 commit,行号是准的。
下面是从这个项目源码里原样取出来的 question 组合。
取自 desktop/test/chat-user-input-prompt.test.tsx:10
questions是/否Which scope?
import { experimental_evaluate as evaluate } from 'ai';
const { answers } = await evaluate({
model: 'typesafe-ai/jev',
state,
questions: {
questions: { type: 'boolean', instructions: 'Which scope?' },
},
});取自 desktop/test/codex-chat-user-input.test.ts:7
questions是/否Choose one
import { experimental_evaluate as evaluate } from 'ai';
const { answers } = await evaluate({
model: 'typesafe-ai/jev',
state,
questions: {
questions: { type: 'boolean', instructions: 'Choose one' },
},
});