cypher-coder / cypher-ai /test_respond.py
DJAKOUA KWANKAM BRAYAN STEVE
Ajout de l'application web/mobile standalone (cypher-chat-app), configuration de l'Espace (cypher-ai) et mise à jour vers Qwen-7B-Instruct
7f3c81c
Raw
History Blame Contribute Delete
304 Bytes
# HF_TOKEN loaded from environment
from app import respond
print("--- Test direct de l'IA ---")
try:
generator = respond("Cherche sur le web : actualités IA d'aujourd'hui.", [])
for chunk in generator:
print(chunk)
except Exception as e:
import traceback
traceback.print_exc()