comparison mrjunejune/inference/BUILD @ 261:b401627fc49e

Add JRPG mock flows and interactive previews Add scripted mock SSE commands, custom event forwarding, animated chat turns, full-height message navigation, and a cyberpunk resume dossier. Co-authored-by: Copilot <[email protected]>
author MrJuneJune <mrjunejune@users.noreply.github.com>
date Wed, 05 Aug 2026 20:38:32 -0700
parents 1f9877b637e9
children 056790c4fb0d
comparison
equal deleted inserted replaced
260:1f9877b637e9 261:b401627fc49e
41 name = "copilot_sidecar", 41 name = "copilot_sidecar",
42 srcs = ["copilot_sidecar.py"], 42 srcs = ["copilot_sidecar.py"],
43 args = ["$(rootpath @copilot_cli_linux_x86_64//:copilot)"], 43 args = ["$(rootpath @copilot_cli_linux_x86_64//:copilot)"],
44 data = ["@copilot_cli_linux_x86_64//:copilot"], 44 data = ["@copilot_cli_linux_x86_64//:copilot"],
45 deps = [requirement("github-copilot-sdk")], 45 deps = [requirement("github-copilot-sdk")],
46 visibility = ["//mrjunejune:__pkg__"],
47 )
48
49 py_binary(
50 name = "mock_sidecar",
51 srcs = ["mock_sidecar.py"],
52 data = ["mock_responses.json"],
46 visibility = ["//mrjunejune:__pkg__"], 53 visibility = ["//mrjunejune:__pkg__"],
47 ) 54 )
48 55
49 python_zip_file( 56 python_zip_file(
50 name = "copilot_sidecar_zip", 57 name = "copilot_sidecar_zip",
98 requirement("uvicorn"), 105 requirement("uvicorn"),
99 ], 106 ],
100 ) 107 )
101 108
102 py_test( 109 py_test(
110 name = "mock_sidecar_test",
111 srcs = [
112 "mock_sidecar.py",
113 "mock_sidecar_test.py",
114 ],
115 data = ["mock_responses.json"],
116 main = "mock_sidecar_test.py",
117 )
118
119 py_test(
103 name = "sdk_runtime_test", 120 name = "sdk_runtime_test",
104 srcs = ["sdk_runtime_test.py"], 121 srcs = ["sdk_runtime_test.py"],
105 args = ["$(rootpath @copilot_cli_linux_x86_64//:copilot)"], 122 args = ["$(rootpath @copilot_cli_linux_x86_64//:copilot)"],
106 data = ["@copilot_cli_linux_x86_64//:copilot"], 123 data = ["@copilot_cli_linux_x86_64//:copilot"],
107 deps = [requirement("github-copilot-sdk")], 124 deps = [requirement("github-copilot-sdk")],