应用产品
基于TypeSafe AI System One模型(Jev)的按需加密市场情报和决策支持终端。
An on-demand crypto market intelligence and decision-support terminal powered by TypeSafe AI's System One model (Jev).
from typesafe_sdk import AsyncTypeSafeClient, Choice, Noul, Scoreapp/services/typesafe_service.py:3
链接指向我们抓取当天的那个 commit,行号是准的。
下面是从这个项目源码里原样取出来的 question 组合。
取自 app/services/typesafe_service.py:49
sentiment_spectrum打分Rate the prevailing social mood in `social_stats` and `representative_tweets`.
0 — Extreme Panic / Capitulation1 — Cautious / Bearish2 — Neutral / Mixed3 — Optimistic / Bullish4 — Euphoric / Greedycatalyst_impact打分Rate the significance of any events or breaking news described in `representative_tweets`.
0 — No news or pure retail noise1 — Minor routine update or rumors2 — Moderate ecosystem milestone3 — Major market-shifting catalystimport { 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'] },
},
});