내부 네트워크에서 api 접근 가능하도록 ip 수정

This commit is contained in:
김민구
2026-07-08 05:45:41 +09:00
parent 64f3408d4e
commit 6b9a072126
4 changed files with 15 additions and 4 deletions
+1 -1
View File
@@ -64,7 +64,7 @@ public class BattleManager : MonoBehaviour
Debug.Log($"[Battle] 스킬 프롬프트 전송 시도: \"{skillPrompt}\"");
// 1. FastAPI 서버의 generate-skill API 호출 (플레이어 레벨 파라미터에는 Generation 세대값 전달)
string url = "http://127.0.0.1:8000/api/game/generate-skill";
string url = "http://192.168.1.7:8000/api/game/generate-skill";
int playerLevel = (player != null) ? player.Generation : 1;
SkillCreateRequest requestData = new SkillCreateRequest