应用产品

jev-trader

@jarrodwatts1.4kTypeScriptMIT更新于 2026-09-17可当场跑

每个 Monad 区块进行一次 AI 交易决策,Jev 在 Kuru MON-USDC 上运行。

英文原文

One AI trade decision every Monad block. Jev on Kuru MON-USDC.

jarrodwatts/jev-trader

它在哪儿调用了 Jev

import { experimental_evaluate } from "ai";

src/model.ts:1

链接指向我们抓取当天的那个 commit,行号是准的。

它问 Jev 的问题

下面是从这个项目源码里原样取出来的 question 组合。

取自 src/model.ts:42

  1. direction选项

    Will MON be higher or lower than the current mid after `horizonBlocks` more blocks?

    • buyBuy MON now: mid more likely to be higher after `horizonBlocks` blocks, by more than the spread.
    • sellSell MON now: mid more likely to be lower after `horizonBlocks` blocks, by more than the spread.

用你自己的内容跑一遍

代码
import { experimental_evaluate as evaluate } from 'ai';

const { answers } = await evaluate({
  model: 'typesafe-ai/jev',
  state,
  questions: {
    direction: { type: 'choice', instructions: 'Will MON be higher or lower than the current mid after `horizonBlocks` more blocks?',
      criteria: { buy: 'Buy MON now: mid more likely to be higher after `horizonBlocks` blocks, by more than the spread.', sell: 'Sell MON now: mid more likely to be lower after `horizonBlocks` blocks, by more than the spread.' } },
  },
});

同类的其他项目