Applications

Jev-X-Sentiment-Analysis

@brainstormity41Pythonupdated 2026-09-19runnable

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

brainstormity/Jev-X-Sentiment-Analysis

Where it calls Jev

from typesafe_sdk import AsyncTypeSafeClient, Choice, Noul, Score

app/services/typesafe_service.py:3

The link points at the commit we read, so the line number still holds.

What it asks Jev

These question sets are lifted from this project's source exactly as written.

from app/services/typesafe_service.py:49

  1. sentiment_spectrumscore

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

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

    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

Run it on your own text

The code
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'] },
  },
});

Other projects in this category