应用产品

Jev-X-Sentiment-Analysis

@brainstormity41Python更新于 2026-09-19可当场跑

基于TypeSafe AI System One模型(Jev)的按需加密市场情报和决策支持终端。

英文原文

An on-demand crypto market intelligence and decision-support terminal powered by TypeSafe AI's System One model (Jev).

brainstormity/Jev-X-Sentiment-Analysis

它在哪儿调用了 Jev

from typesafe_sdk import AsyncTypeSafeClient, Choice, Noul, Score

app/services/typesafe_service.py:3

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

它问 Jev 的问题

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

取自 app/services/typesafe_service.py:49

  1. sentiment_spectrum打分

    Rate the prevailing social mood in `social_stats` and `representative_tweets`.

    • 0Extreme Panic / Capitulation
    • 1Cautious / Bearish
    • 2Neutral / Mixed
    • 3Optimistic / Bullish
    • 4Euphoric / Greedy
  2. catalyst_impact打分

    Rate the significance of any events or breaking news described in `representative_tweets`.

    • 0No news or pure retail noise
    • 1Minor routine update or rumors
    • 2Moderate ecosystem milestone
    • 3Major market-shifting catalyst

用你自己的内容跑一遍

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

const { answers } = await evaluate({
  model: 'typesafe-ai/jev',
  state,
  questions: {
    sentiment_spectrum: { type: 'score', instructions: 'Rate the prevailing social mood in `social_stats` and `representative_tweets`.',
      criteria: ['Extreme Panic / Capitulation', 'Cautious / Bearish', 'Neutral / Mixed', 'Optimistic / Bullish', 'Euphoric / Greedy'] },
    catalyst_impact: { type: 'score', instructions: 'Rate the significance of any events or breaking news described in `representative_tweets`.',
      criteria: ['No news or pure retail noise', 'Minor routine update or rumors', 'Moderate ecosystem milestone', 'Major market-shifting catalyst'] },
  },
});

同类的其他项目