ModelHub XC daa6d8da57 初始化项目,由ModelHub XC社区提供模型
Model: kavin-ravi/qwen3-8b-psychai-merged
Source: Original Platform
2026-06-13 17:15:40 +08:00

license, base_model, tags, pipeline_tag
license base_model tags pipeline_tag
apache-2.0 Qwen/Qwen3-8B
text-generation
conversational
mental-health
psychai
merged
text-generation

PsychAI — Qwen3-8B (LoRA merged)

This is kavin-ravi/qwen3-8b-psychai-lora merged into Qwen/Qwen3-8B, so it can be served by any standard inference provider without needing to load PEFT adapters at runtime.

It's intended for serverless inference (HF Inference Providers / dedicated Inference Endpoints) by the PsychAI Streamlit app.

Intended use

Empathetic, age-appropriate conversational support for teens dealing with anxiety, mood dips, and everyday stressors. Not a substitute for licensed mental-health care. If you or someone you know is in crisis, contact your local emergency services or call/text 988 (US Suicide & Crisis Lifeline).

Quick start

from huggingface_hub import InferenceClient

client = InferenceClient(model="kavin-ravi/qwen3-8b-psychai-merged", token="hf_***")
out = client.chat_completion(
    messages=[
        {"role": "system", "content": "You are PsychAI..."},
        {"role": "user", "content": "I've been feeling anxious lately."},
    ],
    max_tokens=512, temperature=0.7, top_p=0.9,
)
print(out.choices[0].message.content)
Description
Model synced from source: kavin-ravi/qwen3-8b-psychai-merged
Readme 13 MiB
Languages
Jinja 100%