Skip to content

Instantly share code, notes, and snippets.

View ntruth's full-sized avatar
💭
B

Lee Hom ntruth

💭
B
View GitHub Profile

nof1.ai Alpha Arena 提示词工程逆向分析

逆向工程说明: 本文档基于 nof1.ai Alpha Arena 的公开文档、交易行为模式、API 响应格式和社区讨论,系统性地逆向推导出其 System Prompt 和 User Prompt 的完整结构,欢迎各路大佬戳戳评论,一起来进行这个有趣的实验。

GitHub - nof0 Follow @wquguru

目录

CREATE DEFINER=`root`@`localhost` PROCEDURE `proc_initData`( )
BEGIN
DECLARE
i INT DEFAULT 1;
WHILE
i <= 20000000 DO
INSERT INTO visit_details (inc_id, area_code, patient_code, created_at, updated_at )
VALUES
( i, i, i, NOW(), NOW());