조회:
list_threads(query, limit)
제목/preview 기준으로 스레드 검색. thread id를 찾을 때 사용.read_thread(threadId, turnLimit, includeOutputs)
특정 스레드의 최근 상태와 턴 요약 읽기.
생성/전달:
list_projects()
새 스레드를 만들 수 있는 프로젝트 목록 조회.create_thread(projectId, prompt, target)
조회:
list_threads(query, limit)read_thread(threadId, turnLimit, includeOutputs)생성/전달:
list_projects()create_thread(projectId, prompt, target)| @REM torch 2.9.1 cu130 cp312 | |
| uv pip install https://download.pytorch.org/whl/cu130/torch-2.9.1%2Bcu130-cp312-cp312-win_amd64.whl#sha256=cd3232a562ad2a2699d48130255e1b24c07dfe694a40dcd24fad683c752de121 | |
| @REM torchvision 0.25.0 | |
| uv pip install https://download-r2.pytorch.org/whl/cu130/torchvision-0.24.1%2Bcu130-cp312-cp312-win_amd64.whl#sha256=d31ceaded0d9b737471fa680ccd9e1acb6d5f0f70f03ef3a8d786a99c79da7cf | |
| @REM flash attn 3 | |
| uv pip install https://download.pytorch.org/whl/cu129/flash_attn_3-3.0.0-cp39-abi3-win_amd64.whl |
acidnet 대화 추출본에서 반복되는 내부 shorthand와 프로젝트 특유의 표현을 맥락 기준으로 풀어쓴 참고 사전이다. 사전식 번역이 아니라 acidnet 내부 용법에 맞춘 뜻이다.
| 용어 | 의미 | 사용례 |
|---|---|---|
smoke baseline |
큰 런 전에 먼저 붙여 보는 소규모 검증용 기준 구성. “최종 후보가 될 수 있는 경로인지”를 빠르게 확인하는 단계다. | 현재 smoke baseline이 실제 월드 UI에 붙은 상태다. |
gate / gate를 통과하다 |
다음 단계로 올려도 되는 최소 품질 기준을 통과했다는 뜻. 학습 성공과는 별개로 승격 가능성을 본다. | 대화 품질 기준으로는 이미 gate를 통과한 구성 |
| #!/usr/bin/env python3 | |
| import secrets | |
| import string | |
| import hashlib | |
| import time | |
| def generate_api_key(prefix="sk-"): | |
| """안전한 32자 API 키 생성 (OpenAI 스타일)""" | |
| # 랜덤 문자열 (대소문자 + 숫자 + 일부 특수문자) | |
| chars = string.ascii_letters + string.digits + "-_" |
| #include <Arduino.h> | |
| #include <NimBLEDevice.h> | |
| #include <U8g2lib.h> | |
| #include "driver/i2s.h" | |
| // #define DEBUG // Comment out this line to disable debug output | |
| // Debug printing macros | |
| #ifdef DEBUG | |
| #define DEBUG_PRINT(x) Serial.print(x) |
| #include <Arduino.h> | |
| #include <NimBLEDevice.h> | |
| #include <U8g2lib.h> | |
| // BLE MIDI 서비스 고유 UUID | |
| static NimBLEUUID midiServiceUUID("03B80E5A-EDE8-4B33-A751-6CE34EC4C700"); | |
| // BLE MIDI characteristic UUID - used for both TX (device to central) and RX (central to device) | |
| static NimBLEUUID midiCharacteristicUUID("7772E5DB-3868-4112-A1A9-F2669D106BF3"); | |
| // 스캔 후 찾은 장치 포인터 |
| #include <Arduino.h> | |
| #include <NimBLEDevice.h> | |
| #include <U8g2lib.h> | |
| // BLE MIDI 서비스 고유 UUID | |
| static BLEUUID midiServiceUUID("03B80E5A-EDE8-4B33-A751-6CE34EC4C700"); | |
| // 스캔 후 찾은 장치 포인터 | |
| BLEAdvertisedDevice* myDevice = nullptr; | |
| bool connected = false; |
uv venv venv --python 3.11
venv\Scripts\activate
uv pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu124
uv pip install --no-deps trl peft accelerate bitsandbytes
uv pip install -U xformers --index-url https://download.pytorch.org/whl/cu124
uv pip install --upgrade --no-cache-dir git+https://github.com/unslothai/unsloth.git
uv pip install unsloth-zoo
uv pip install -U triton-windows
Below is a complete, production‑ready blueprint for a browser‑based MMORPG that generates its world progressively (chunk‑by‑chunk) as players explore.
It includes: